@import url("./style.css?v=20260801-nav1");

.hero-section .hero-media {
  aspect-ratio: 4 / 3;
  min-height: 280px;
  overflow: hidden;
}

.hero-section .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-section .badge {
  background: rgba(28, 18, 13, 0.7);
}

.highlight-card {
  padding: 0;
  overflow: hidden;
  align-content: start;
}

.highlight-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card__body {
  padding: 0 1rem 1.1rem;
}

.highlight-card--link {
  cursor: pointer;
}

.highlight-card--link:hover,
.highlight-card--link:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent-2);
}

.highlight-card__link-label {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero-kicker {
  display: grid;
  gap: 0.4rem;
}

.hero-details {
  margin-top: 1rem;
  align-items: center;
}

.location-link:hover,
.location-link:focus-visible {
  border-color: var(--accent-2);
  color: var(--text);
}

.photo-strip {
  margin-top: 0.25rem;
}

.home-features {
  min-width: 0;
}

.image-carousel {
  padding: 0;
  width: 100%;
  align-self: start;
  overflow: hidden;
}

.image-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.image-carousel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-carousel__control {
  position: absolute;
  top: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(18, 12, 9, 0.78);
  color: var(--text);
  font-size: 1.45rem;
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
}

.image-carousel__control:hover,
.image-carousel__control:focus-visible {
  background: var(--accent);
  color: #1c1009;
}

.image-carousel__control--previous {
  left: 0.75rem;
}

.image-carousel__control--next {
  right: 0.75rem;
}

.image-carousel__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(18, 12, 9, 0.8);
  color: var(--text);
  font-size: 0.82rem;
}

@media (max-width: 719px) {
  .hero-section .hero-media {
    aspect-ratio: 16 / 11;
  }

  .highlight-card__image {
    aspect-ratio: 16 / 9;
  }

  .hero-details {
    display: grid;
    grid-template-columns: 1fr;
  }

  .image-carousel__viewport {
    aspect-ratio: 16 / 11;
  }
}
