* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: transparent;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.wrap {
  width: 100%;
  background: #fff;
}

.bar {
  min-height: 58px;
  background: #ff6a00;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f7f7 0%, #fff 100%);
  padding: 28px;
}

.card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -120px;
  top: -130px;
  border-radius: 50%;
  background: #fff1e8;
  pointer-events: none;
}

.copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.highlight-card {
  display: grid;
  grid-template-columns: minmax(220px, 38%) 1fr;
  min-height: 230px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
}

.highlight-image-wrap {
  min-height: 230px;
  background: #ececec;
}

.highlight-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.highlight-content {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 11px;
  padding: 5px 10px;
  background: #ff6a00;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .45px;
}

.highlight-content h1 {
  margin: 0 0 10px;
  font-size: 29px;
  line-height: 1.12;
  font-weight: 800;
}

.highlight-content p {
  margin: 0;
  max-width: 760px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.empty-title {
  font-size: 20px;
  font-weight: 800;
}

.empty-sub {
  margin-top: 6px;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 700px) {
  .bar {
    padding: 11px 16px;
    font-size: 18px;
  }

  .card {
    padding: 16px;
  }

  .highlight-card {
    grid-template-columns: 1fr;
  }

  .highlight-image-wrap,
  .highlight-image {
    min-height: 190px;
    height: 220px;
  }

  .highlight-content {
    padding: 20px;
  }

  .highlight-content h1 {
    font-size: 24px;
  }

  .highlight-content p {
    font-size: 15px;
  }
}
