.themed-hero {
  margin-top: var(--space-8);
}

.themed-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.themed-hero-text h1 {
  max-width: 28rem;
}

.themed-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.themed-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-hero-links a {
  color: var(--gray-100);
}

.themed-hero-media {
  justify-self: stretch;
}

.themed-hero-image {
  border-radius: var(--radius-xl);
  min-height: 260px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-medium);
}

.themed-hero-image--seasonal {
  background-image: url("/assets/images/seasonal-themed-event.webp");
}

.themed-section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.themed-section-header-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.themed-intro-grid {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.themed-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.themed-feature-grid {
  gap: var(--space-6);
}

.themed-feature-grid--reverse {
  direction: rtl;
}

.themed-feature-grid--reverse > * {
  direction: ltr;
}

.themed-feature-grid--align-center {
  align-items: center;
}

.themed-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--color-bg-elevated);
  box-shadow: var(--shadow-soft);
}

.themed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-card-grid {
  gap: var(--space-6);
}

.themed-mini-card .card-body p:last-child {
  margin-bottom: 0;
}

.themed-aside-card {
  height: 100%;
}

.themed-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.themed-inline-links a {
  color: var(--gray-100);
}

.themed-seasonal-card {
  margin-top: var(--space-4);
}

.themed-cta-section {
  padding-bottom: var(--space-16);
}

.themed-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: center;
}

.themed-cta-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.themed-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 900px) {
  .themed-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .themed-hero-media {
    order: -1;
  }

  .themed-cta-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .themed-hero {
    margin-top: var(--space-6);
  }

  .themed-hero-text h1 {
    font-size: var(--font-size-3xl);
  }

  .themed-section-header {
    margin-bottom: var(--space-4);
  }

  .themed-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
