/*
 * Turismo slide — card shell, hero, Airbnb embed, carousel overrides.
 * Breakpoints: mobile-first (base → min-width 640px → min-width 1024px).
 * Article includes .landing-slide-main so slide-main-card.css applies unchanged.
 */

/* ----- Card shell + hero (same values as landing.css; higher specificity) ----- */
.landing-slide-tourism.landing-single-card {
  width: 100%;
  max-width: var(--landing-width-sm);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.landing-slide-tourism.landing-card-glass {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.landing-slide-tourism.landing-single-card > * {
  position: relative;
  z-index: 1;
}

.landing-slide-tourism.landing-card-glass.card {
  background: linear-gradient(
    to bottom,
    rgba(72 72 72 / 0.1) 0%,
    rgba(73 73 73 / 0.2) 100%
  );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.01);
  box-shadow: none;
}

.landing-slide-tourism .hero-title {
  margin: 0;
  margin-top: 1.5rem;
  font-size: clamp(var(--font-size-2xl), 5vw, var(--font-size-4xl));
  line-height: var(--line-height-tight);
  color: var(--color-neutral-200);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: var(--letter-spacing-tight);
}

.landing-slide-tourism .hero-title-line {
  color: var(--color-primary-600);
}

.landing-slide-tourism .hero-title-primary {
  background: linear-gradient(
    135deg,
    var(--color-neutral-200) 0%,
    var(--color-neutral-50) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Teaser cards: embed caption, stacked sections, CTA (inherits lists/tags from slide-main-card.css) */
.landing-slide-tourism .teaser-embed-heading {
  margin: 0 auto;
  width: 100%;
  max-width: min(320px, 100%);
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-neutral-300);
  text-align: center;
}

.landing-slide-tourism .teaser-point-card--embed {
  gap: 0.65rem;
}

.landing-slide-tourism .teaser-point-card--embed .teaser-point-card-tags {
  margin-top: 0.15rem;
}

.landing-slide-tourism .teaser-point-card--tourism-stack {
  gap: 0;
  align-items: stretch;
}

.landing-slide-tourism .teaser-tourism-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.landing-slide-tourism .teaser-tourism-section-divider {
  width: 100%;
  max-width: 14rem;
  height: 1px;
  margin: 0.25rem auto;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.landing-slide-tourism .teaser-point-card-cta {
  margin-top: 0.15rem;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary-400);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.landing-slide-tourism .teaser-point-card-cta:hover {
  color: var(--color-primary-300);
}

.landing-slide-tourism .teaser-point-card-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

/* Airbnb embed (tourism-only; point cards use .landing-slide-main rules) */
.landing-slide-tourism .teaser-point-card:has(.teaser-airbnb-shell) {
  overflow: visible;
}

.landing-slide-tourism .teaser-airbnb-shell {
  width: min(320px, 100%);
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  border: none;
  box-shadow: none;
  background: transparent;
}

.landing-slide-tourism .teaser-airbnb-shell .airbnb-embed-frame {
  width: min(320px, 100%);
  height: 200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
}

.landing-slide-tourism .teaser-airbnb-shell .airbnb-embed-frame iframe {
  margin: 0 !important;
  display: block;
}

.landing-slide-tourism .teaser-airbnb-shell .airbnb-embed-frame > a {
  display: block;
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.45;
  color: var(--color-primary-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-slide-tourism .teaser-airbnb-shell .airbnb-embed-frame > a[rel="nofollow"] {
  color: var(--color-neutral-300);
  font-weight: var(--font-weight-light);
}

@media (min-width: 640px) {
  .landing-slide-tourism.landing-single-card {
    padding: 3.5rem 2.5rem;
    max-width: var(--landing-width-md);
  }

  /* Two point cards: same row, match heights with main slide grid rules */
  .landing-slide-tourism .teaser-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .landing-slide-tourism.landing-single-card {
    padding: 4rem 3rem;
    max-width: var(--landing-width-lg);
  }

  .landing-slide-tourism .hero-title {
    flex-direction: row;
    justify-content: center;
    font-size: clamp(var(--font-size-4xl), 4vw, var(--font-size-5xl));
  }
}

.landing-slide-tourism .landing-slide-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(
    135deg,
    var(--color-primary-500) 0%,
    var(--color-primary-600) 100%
  );
  color: #fff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  transition: opacity 0.15s ease;
}

.landing-slide-tourism .landing-slide-page-link:hover {
  opacity: 0.9;
}

.landing-slide-tourism .landing-slide-page-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

/* Carousel (index): width only — horizontal padding comes from landing.css .landing-carousel .landing-single-card */
.landing-carousel .landing-slide-tourism.landing-single-card {
  max-width: 100%;
  width: 100%;
}

.landing-carousel .landing-slide-tourism.landing-card-glass {
  transform: none;
}
