/* ============================================
   BLOCK 3 — LICENCIA Y SEGURIDAD
   Layout: full-width header + split text-left + table-right + side-thumb
   ============================================ */

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

.home_block_3_inner {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

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

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

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

/* ===== LEFT — text ===== */
.home_block_3_text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

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

.home_block_3_pillquote {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.8rem 1.8rem 1.8rem 2rem;
  background: var(--bg-paper);
  border: 1.5px solid var(--ink);
  border-left: 4px solid var(--accent);
  margin-top: 1rem;
}

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

.pillquote_text {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.32rem;
  color: var(--ink);
  line-height: 1.45;
}

.home_block_3_cta {
  margin-top: 1rem;
}

/* ===== RIGHT — table + side-thumb ===== */
.home_block_3_table_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.home_block_3_side_meta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.home_block_3_side_thumb {
  position: relative;
  padding: 1rem;
  background: var(--bg-paper);
  border: 1.5px solid var(--ink);
}

.home_block_3_side_thumb > img {
  width: 100%;
  height: auto;
  display: block;
}

.home_block_3_side_caption {
  font-family: "Geist", inherit;
  font-size: 0.86rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  padding-left: 0.2rem;
}

.home_block_3_side_caption > em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
  margin-right: 0.4rem;
}

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

  .home_block_3_header {
    padding-bottom: 3rem;
  }

  .home_block_3_grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

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

  .home_block_3_pillquote {
    padding: 2.6rem 2.4rem;
    border-left-width: 6px;
  }

  .pillquote_label {
    font-size: 1.7rem;
  }

  .pillquote_text {
    font-size: 2.6rem;
  }

  .home_block_3_side_caption {
    font-size: 1.9rem;
  }
}
