.shared-highlight-section {
  position: relative;
  padding: clamp(56px, 6vw, 90px) 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 250, 239, 0.10), transparent 20%),
    radial-gradient(circle at 82% 78%, rgba(212, 167, 94, 0.12), transparent 24%),
    linear-gradient(135deg, #6b3f20 0%, #8a5a32 48%, #4a2c18 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
  height: 700px;
}

.shared-highlight-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 246, 226, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(47, 25, 12, 0.06) 0%, rgba(47, 25, 12, 0.14) 100%);
}

.shared-highlight-section[style*="background-image"]::before {
  background:
    radial-gradient(circle at center, rgba(255, 246, 226, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(47, 25, 12, 0.08) 0%, rgba(47, 25, 12, 0.18) 100%);
}

.shared-highlight-section .container {
  position: relative;
  z-index: 2;
}

.home-highlight-inner {
  min-height: 300px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(26px, 5vw, 72px);
  text-align: left;
}

.home-highlight-media,
.home-highlight-stat-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  flex: 0 0 auto;
}

.home-highlight-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.home-highlight-figure::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: min(220px, 42vw);
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
  filter: blur(16px);
  transform: translateX(-50%);
  z-index: 0;
}

.home-highlight-figure img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(100%, 520px);
  width: auto;
  max-height: 320px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

.home-stat-card {
  width: fit-content;
  min-width: 196px;
  max-width: 250px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #8a5a32 0%, #5b351d 100%);
  border: 1px solid rgba(255, 238, 204, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.home-stat-card--inline {
  margin: 0;
}

.home-stat-number {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 800;
  line-height: 1;
}

.home-stat-number span {
  color: #ffe6a7;
}

.home-stat-label {
  max-width: 160px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.90);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 1.55;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .shared-highlight-section {
    padding: 48px 0;
  }

  .home-highlight-inner {
    min-height: 220px;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }

  .home-highlight-stat-wrap {
    justify-content: center;
  }

  .home-highlight-media,
  .home-highlight-stat-wrap {
    flex: 1 1 0;
    min-width: 0;
  }

  .home-highlight-figure img {
    max-width: min(100%, 170px);
    max-height: 190px;
  }

  .home-highlight-figure::after {
    width: min(150px, 38vw);
    height: 26px;
  }

  .home-stat-card {
    min-width: 0;
    max-width: 190px;
    width: 100%;
    padding: 16px 14px;
  }

  .home-stat-number {
    font-size: clamp(34px, 11vw, 48px);
  }

  .home-stat-label {
    font-size: 10px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .home-highlight-inner {
    gap: 10px;
  }

  .home-highlight-figure img {
    max-width: min(100%, 150px);
  }

  .home-stat-card {
    padding: 14px 10px;
  }
}
