 .home-hero {
  padding-top: var(--space-16);
}

.home-hero__layout {
  align-items: center;
  gap: var(--space-8);
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.home-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-hero__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.home-hero__note {
  font-size: var(--font-size-sm);
}

.home-hero__media {
  display: flex;
}

.home-hero__card {
  width: 100%;
}

.home-hero__image {
  border-radius: var(--radius-lg);
}

.home-concept__layout {
  gap: var(--space-8);
  align-items: flex-start;
}

.home-concept__highlights {
  display: flex;
}

.home-concept__card {
  width: 100%;
}

.home-concept__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.home-section-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-events__grid {
  margin-top: var(--space-2);
}

.home-events__card {
  display: flex;
  flex-direction: column;
}

.home-events__image {
  border-radius: var(--radius-md);
}

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

.home-experience__layout {
  gap: var(--space-8);
}

.home-experience__block {
  margin-top: var(--space-4);
}

.home-experience__side {
  display: flex;
  flex-direction: column;
}

.home-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-steps__cta {
  margin-top: var(--space-2);
}

.home-offers {
  margin-top: var(--space-4);
}

.home-calendar__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: flex-start;
}

.home-calendar__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.home-calendar__image {
  border-radius: var(--radius-lg);
}

.home-calendar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-calendar__item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}

.home-testimonials__grid {
  margin-top: var(--space-4);
}

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

.home-faq__layout {
  gap: var(--space-8);
  align-items: flex-start;
}

.home-faq__links {
  display: flex;
}

.home-faq__card {
  width: 100%;
}

.home-link {
  font-size: var(--font-size-sm);
  color: var(--gray-100);
}

.home-link:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .home-hero {
    padding-top: var(--space-12);
  }

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

  .home-section-header {
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .home-hero__layout {
    align-items: stretch;
  }
}
