/* =====================================================
   TOURIST LESSONS
   ===================================================== */

#tourists {
  background: transparent;
}

/* Section spacing */
#tourists .section-container {
  padding-top: 6.5rem; /* STRUCTURE OPTION A: stronger section start */
  padding-bottom: 7rem;
}

/* =====================================================
   SECTION HEADER (STRUCTURE OPTION A)
   ===================================================== */

/* Wraps the title + subtitle visually, without HTML changes */
.tourist-header {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.tourist-section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem; /* slightly stronger anchor */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.tourist-section-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* =====================================================
   INTRO COPY
   ===================================================== */

.tourist-intro {
  max-width: 760px;
  margin: 0 auto 3rem; /* STRUCTURE OPTION A: centered intro block */
  text-align: center; /* NEW: centers the whole intro as one unit */
}

.tourist-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  max-width: 620px;
  margin: 0 auto 1.25rem; /* NEW: centers title block */
}

.tourist-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-dark);
  margin: 0 auto 1.25rem;
  max-width: 720px;
}

.tourist-support {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* Divider to break blog flow */
.tourist-divider {
  width: 64px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 999px;
  margin: 2.75rem auto 3.25rem; /* STRUCTURE OPTION A: centered divider */
  opacity: 0.6;
}

/* =====================================================
   MAIN CARD
   ===================================================== */

.tourist-card {
  max-width: 880px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;

  background: linear-gradient(
    135deg,
    #f6fbf8 0%,
    #ffffff 60%,
    #eefaf4 100%
  );

  border-radius: 2.4rem;
  padding: 2.75rem 3.25rem;

  box-shadow:
    0 26px 50px rgba(15, 23, 42, 0.12),
    0 8px 22px rgba(24, 166, 106, 0.14);

  transition: box-shadow 0.25s ease;
}

.tourist-card:hover {
  box-shadow:
    0 34px 70px rgba(15, 23, 42, 0.14),
    0 12px 30px rgba(24, 166, 106, 0.18);
}

/* Image column */
.tourist-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.8rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Content column */
.tourist-card-content {
  text-align: left;
}

.tourist-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.tourist-card-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.tourist-card-content ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--color-text);
}

.tourist-card-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* =====================================================
   OUTRO COPY
   ===================================================== */

.tourist-outro {
  max-width: 640px;
  margin: 3.75rem auto 0; /* STRUCTURE OPTION A: clear closing block */
  text-align: center;
}

.tourist-outro h4 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.tourist-outro p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {
  .tourist-section-title {
    font-size: 2.2rem;
  }

  .tourist-card {
    grid-template-columns: 1fr;
    padding: 2.75rem 2.25rem;
    gap: 2.25rem;
    text-align: center;
  }

  .tourist-card-content {
    text-align: center;
  }

  .tourist-card-content ul li {
    text-align: left;
  }

  .tourist-title {
    font-size: 1.8rem;
  }

  .tourist-lead {
    font-size: 1.05rem;
  }

  .tourist-support {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tourist-section-title {
    font-size: 1.9rem;
  }

  .tourist-card {
    padding: 2.25rem 1.6rem;
    border-radius: 2rem;
  }

  .tourist-card-image img {
    height: 220px;
  }

  .tourist-title {
    font-size: 1.55rem;
  }
}