main {
  padding-bottom: var(--space-32);
}
.hero__subtitle {
  max-width: 40rem;
}
.home-section-header {
  max-width: 44rem;
}
.home-section-image img {
  border-radius: 24px;
}
.home-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}
.home-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  margin-right: 0.5rem;
  background: radial-gradient(circle at 30% 30%, #ffede1 0, #fbd3c6 40%, #d62828 100%);
  color: #fffaf3;
  font-size: 0.9rem;
  box-shadow: 0 0 0 2px #fffaf3, 0 4px 10px rgba(0, 0, 0, 0.2);
}
.home-list li {
  display: flex;
  align-items: flex-start;
}
.home-list li span + span,
.home-list li .home-list-text {
  flex: 1;
}
.home-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.home-card .btn {
  margin-top: auto;
}
.home-mini-heading {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-4);
}
.home-newsletter {
  height: 100%;
}
.home-newsletter-form {
  margin-top: var(--space-8);
}
.home-form-card {
  box-shadow: var(--shadow-medium);
}
.home-booking-form {
  margin-top: var(--space-8);
}
.home-menu-grid {
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero__subtitle {
    max-width: 100%;
  }
  .home-card {
    height: auto;
  }
}
