/* ============================================
   BLOCK 6 — DISEÑO Y NAVEGACIÓN
   Layout: 2-col text-only (text + quote-block)
   ============================================ */

.home_block_6 {
  padding: 9rem var(--main-padding);
  background: var(--bg-paper);
}

.home_block_6_inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.home_block_6_header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2.6rem;
  border-bottom: 1.5px solid var(--ink);
  max-width: 1100px;
}

.home_block_6_title {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.home_block_6_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.home_block_6_col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.home_block_6_col > .text-m {
  color: var(--ink-soft);
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 1.32rem;
  line-height: 1.6;
}

.home_block_6_label {
  font-family: "Geist", inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-top: 0.4rem;
}

/* ===== quote block ===== */
.home_block_6_quote_block {
  position: relative;
  padding: 2.4rem 2rem 2.4rem 4rem;
  background: var(--bg-paper-soft);
  border: 1.5px solid var(--ink);
}

.home_block_6_quote_block::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 1.6rem;
  width: 3px;
  background: var(--accent);
}

.quote_index {
  display: inline-block;
  font-family: "Crimson Pro", serif;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}

.quote_text {
  font-family: "Crimson Pro", serif;
  font-weight: 500;
  font-size: 1.85rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.quote_text > em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.home_block_6_close {
  color: var(--ink-soft);
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.28rem;
  line-height: 1.55;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_6 {
    padding: 12rem var(--main-padding);
  }

  .home_block_6_header {
    padding-bottom: 3rem;
  }

  .home_block_6_grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .home_block_6_col > .text-m {
    font-size: 2.5rem;
    line-height: 1.5;
  }

  .home_block_6_label {
    font-size: 1.9rem;
  }

  .home_block_6_quote_block {
    padding: 3rem 2.4rem 3rem 5rem;
  }

  .home_block_6_quote_block::before {
    left: 2rem;
    width: 5px;
  }

  .quote_index {
    font-size: 1.9rem;
  }

  .quote_text {
    font-size: 3.4rem;
  }

  .home_block_6_close {
    font-size: 2.5rem;
    padding-top: 2rem;
  }
}
