.special-beach-category-page {
  --special-category-line: #dce9f8;
  --special-category-ink: #102f68;
  --special-category-muted: #5b7398;
}

.special-category-hero {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 1rem 1rem;
  border-bottom: 1px solid var(--special-category-line);
  background: radial-gradient(circle at 22% 35%, #eaf7ff 0, transparent 25rem), linear-gradient(105deg, #fbfdff 0%, #eef8ff 50%, #f9fcff 100%);
}

.special-category-hero__inner {
  display: grid;
  width: min(100%, var(--site-layout-max-width, 76rem));
  min-height: 15rem;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .85fr);
  align-items: stretch;
  gap: 1.5rem;
}

.special-category-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.special-category-breadcrumb {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .55rem;
  color: var(--special-category-muted);
  font-size: .72rem;
  font-weight: 700;
}

.special-category-breadcrumb a { color: inherit; text-decoration: none; }
.special-category-breadcrumb a:hover { color: var(--site-primary); }

.special-category-hero__badge {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: .4rem;
  margin-bottom: .65rem;
  padding: 0 .7rem;
  border: 1px solid color-mix(in srgb, var(--site-primary) 28%, #d9e7f7);
  border-radius: 999px;
  background: #fff;
  color: var(--site-primary);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.special-category-hero__badge :is(svg, i[data-lucide]),
.special-category-hero__count :is(svg, i[data-lucide]) {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  color: var(--site-primary);
}

.special-category-hero h1 {
  max-width: 44rem;
  margin: 0;
  color: var(--special-category-ink);
  font-size: clamp(1.65rem, 3.4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.special-category-hero p {
  max-width: 42rem;
  margin: .8rem 0 0;
  color: var(--special-category-muted);
  font-size: clamp(.82rem, 1.4vw, 1rem);
  font-weight: 650;
  line-height: 1.65;
}

.special-category-hero__count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .75rem;
  color: var(--special-category-muted);
  font-size: .72rem;
  font-weight: 800;
}

.special-category-feature {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--special-category-line);
  border-radius: .75rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--site-primary) 15%, #d9efff), #dfefff);
  color: #fff;
  box-shadow: 0 7px 22px rgb(26 74 130 / .1);
  text-decoration: none;
}

.special-category-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.special-category-feature::after {
  position: absolute;
  inset: 45% 0 0;
  content: '';
  background: linear-gradient(transparent, rgb(5 25 59 / .82));
}

.special-category-feature:hover img { transform: scale(1.035); }

.special-category-feature__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem;
}

.special-category-feature strong { font-size: .95rem; font-weight: 850; }
.special-category-feature small { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 750; }
.special-category-feature small :is(svg, i[data-lucide]) { width: .9rem; height: .9rem; flex: 0 0 .9rem; }

.special-beach-category-content {
  width: min(calc(100% - 2rem), var(--site-layout-max-width, 76rem));
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  .special-category-hero__inner { grid-template-columns: 1fr; }
  .special-category-feature { min-height: 12rem; }
}

@media (max-width: 700px) {
  .special-category-hero__copy { align-items: center; text-align: center; }
  .special-category-breadcrumb { justify-content: center; }
  .special-category-hero__count { justify-content: center; }
  .special-category-hero__inner { min-height: 0; }
  .special-category-feature { min-height: 11rem; }
}

.dark .special-category-hero {
  border-color: #29415d;
  background: radial-gradient(circle at 22% 35%, rgb(20 73 106 / .48) 0, transparent 25rem), linear-gradient(105deg, #0e1c2f 0%, #112a42 50%, #0c1b2c 100%);
}
.dark .special-category-hero h1 { color: #e7f1ff; }
.dark .special-category-hero p,
.dark .special-category-breadcrumb,
.dark .special-category-hero__count { color: #a7bad0; }
.dark .special-category-hero__badge { border-color: #29415d; background: #142a43; }
