* { box-sizing: border-box; }

:root{
  --blue: #0b3a67;       /* azul principal */
  --blue2:#0a2f54;       /* azul más profundo */
  --yellow:#f1c40f;      /* hover amarillo */
  --text:#0f172a;
  --muted:#475569;
  --border:#e5e7eb;
  --soft:#f3f4f6;
  --shadow: 0 10px 25px rgba(2, 10, 30, 0.12);
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: var(--text);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ========= HEADER ========= */
.header {
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand { display: flex; flex-direction: column; gap: 2px; }

.brand-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 22px;
}

.brand-sub {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}

/* Menú (desktop) */
.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.08s ease;
}

.menu a:hover {
  background: var(--yellow);
  color: var(--blue);
}

.menu a.cta {
  border: 1px solid rgba(255,255,255,0.35);
}

.menu a:active {
  transform: translateY(1px);
}

/* Hamburguesa (oculta en desktop) */
.hamburger{
  display: none;
  width: 44px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  padding: 10px;
}

.hamburger span{
  display:block;
  height: 2px;
  background:#fff;
  margin: 6px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* animación a X */
.hamburger.is-open span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ========= HERO ========= */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========= MAIN ========= */
.main { padding: 30px 0 60px; }

.section-title {
  margin: 0 0 18px;
  font-size: 22px;
  color: var(--blue);
  font-weight: 900;
}

/* ========= CARDS (coordinadores) ========= */
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 10, 30, 0.06);
}

.card-imgwrap {
  width: 100%;
  aspect-ratio: 964 / 1600;
  background: var(--soft);
  overflow: hidden;
}

.card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body{
  padding: 12px 12px 14px;
  border-top: 1px solid var(--border);
}

.card-name{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 900;
  color: #0b1f36;
}

.card-role{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}

/* Placeholder de 5ª tarjeta */
.card--placeholder{
  opacity: 0.75;
}

.placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #eef2ff, #f3f4f6);
}

.placeholder-text{
  font-weight: 900;
  color: rgba(11, 58, 103, 0.75);
  letter-spacing: .3px;
}

/* ========= BLOQUE OFICIAL ========= */
.notice{
  margin-top: 26px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 8px solid var(--blue);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}

.notice-badge{
  display:inline-block;
  background: rgba(241, 196, 15, 0.22);
  color: #8a6d00;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(241,196,15,0.35);
}

.notice-title{
  margin: 12px 0 10px;
  font-size: 18px;
  color: var(--blue);
  font-weight: 1000;
  letter-spacing: .2px;
}

.notice-text{
  margin: 0;
  color: #1f2a3a;
  line-height: 1.6;
  font-size: 14px;
}

.notice-sign{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.notice-line{
  height: 1px;
  background: rgba(11,58,103,0.20);
}

.notice-meta{
  font-size: 12px;
  color: rgba(15, 23, 42, 0.80);
}

/* ========= ANCHORS (no visibles) ========= */
.anchor{
  height: 1px;
  margin: 0;
  padding: 0;
}

/* ========= FOOTER ========= */
.footer{
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color: #fff;
  margin-top: 50px;
}

.footer-top{
  padding: 44px 0 30px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.footer-logo{
  font-weight: 1000;
  letter-spacing: .6px;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-text{
  margin: 0 0 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  font-size: 14px;
}

.footer-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-title{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.footer-links{
  display:grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer-links a{
  color: rgba(255,255,255,0.90);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s ease, color .2s ease, transform .08s ease;
}

.footer-links a:hover{
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-1px);
}

.footer-contact p{
  margin: 0 0 8px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}

.footer-contact span{
  color: rgba(255,255,255,0.70);
  font-weight: 800;
}

.footer-chip{
  margin-top: 14px;
  display:inline-block;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  font-weight: 800;
  font-size: 13px;
}

/* Botones footer */
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight: 1000;
  border-radius: 12px;
  padding: 11px 14px;
  transition: transform .08s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary{
  background: var(--yellow);
  color: var(--blue);
  border: 1px solid rgba(0,0,0,0.05);
}

.btn-primary:hover{ transform: translateY(-1px); background: #ffd966; }

.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0;
  background: rgba(0,0,0,0.10);
}

.footer-bottom-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.footer-mini{
  opacity: 0.85;
}

/* ========= RESPONSIVE ========= */

/* laptops pequeños */
@media (max-width: 1100px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

/* tablets */
@media (max-width: 820px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr; }
}

/* móvil */
@media (max-width: 720px) {

  .hamburger{ display: inline-block; }

  /* convertimos el menú a dropdown */
  .menu{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .menu.is-open{
    display: flex;
  }

  .menu a{
    padding: 12px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .menu a.cta{
    border-color: rgba(255,255,255,0.22);
  }

  .header-inner{
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-img{
    max-height: 60vh;
    object-fit: cover;
  }

  .footer-bottom-inner{
    flex-direction: column;
    text-align: center;
  }
}

/* ultra pequeño */
@media (max-width: 420px) {
  .cards { grid-template-columns: 1fr; }
}
/* ====== HISTORIA: CONTENIDO BONITO + RESPONSIVO ====== */

.hero--page .hero-img{
  width: 100%;
  height: auto;
  display: block;
}

/* Tarjeta de contenido */
.content-card{
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.page-title{
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  color: #0b3a67;
  font-weight: 900;
}

.content-h2{
  margin: 18px 0 10px;
  font-size: 18px;
  color: #0b3a67;
  font-weight: 900;
}

.content-h3{
  margin: 16px 0 10px;
  font-size: 16px;
  color: #0b3a67;
  font-weight: 900;
}

.content-card p{
  margin: 0 0 12px;
  line-height: 1.65;
  color: #0f172a;
}

/* Pilares */
.pillars{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 14px 0 8px;
}

.pillar{
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  background: #f8fafc;
}

.pillar h4{
  margin: 0 0 8px;
  font-size: 14px;
  color: #0b3a67;
  font-weight: 900;
}

.pillar p{
  margin: 0;
  font-size: 14px;
}

.content-hr{
  border: 0;
  height: 1px;
  background: #e5e7eb;
  margin: 18px 0 14px;
}

.signature{
  margin: 0;
  color: #0f172a;
}

/* ====== FOOTER IMPACTANTE ====== */
.footer{
  background: #0b3a67;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-container{
  padding: 26px 0 18px;
  color: rgba(255,255,255,0.9);
}

.footer-brand{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.footer-title{
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 18px;
  color: #ffffff;
}

.footer-sub{
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-links a{
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background-color .2s ease, color .2s ease, transform .15s ease;
}

.footer-links a:hover{
  background: #f1c40f;
  color: #0b3a67;
  transform: translateY(-1px);
}

.footer-cta{
  border: 1px solid rgba(255,255,255,0.35) !important;
}

.footer-bottom{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
}

.footer-mini{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.45);
}

.footer-mini:hover{
  color: #ffffff;
}

.footer-dot{ opacity: 0.8; }

/* ====== MENU HAMBURGUESA RESPONSIVO (sin frameworks) ====== */
.hamburger{
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}

.hamburger span{
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
}

.menu a.active{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Móvil: el menú se colapsa */
@media (max-width: 768px){
  .hamburger{ display: inline-flex; }

  .header-inner{
    flex-direction: row;
    align-items: center;
  }

  .menu{
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px 0 4px;
  }

  .menu.is-open{
    display: flex;
  }

  .menu a{
    width: 100%;
    border-radius: 10px;
    padding: 12px;
  }

  .pillars{
    grid-template-columns: 1fr;
  }

  .content-card{
    padding: 18px;
  }

  .footer-links{
    gap: 8px;
  }
}
/* ====== DESPENSAS: ESTILO EDITORIAL PREMIUM ====== */
.content-card--editorial{
  position: relative;
  overflow: hidden;
}

.kicker{
  display: inline-block;
  background: rgba(11, 58, 103, 0.08);
  color: #0b3a67;
  border: 1px solid rgba(11, 58, 103, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
}

.lead{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
  font-weight: 700;
}

/* Cita grande elegante */
.pull-quote{
  margin: 12px 0 18px;
  padding: 14px 16px;
  border-left: 5px solid #f1c40f;
  background: linear-gradient(90deg, rgba(241,196,15,0.18), rgba(241,196,15,0.04));
  border-radius: 12px;
}

.pull-quote p{
  margin: 0;
  font-weight: 800;
  color: #0b3a67;
  line-height: 1.45;
}

/* Franja de impacto */
.impact-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 10px;
}

.impact-item{
  background: #0b3a67;
  color: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}

.impact-title{
  font-weight: 900;
  letter-spacing: .3px;
  margin-bottom: 6px;
}

.impact-text{
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-size: 13px;
}

/* Pasos */
.steps{
  display: grid;
  gap: 10px;
  margin: 12px 0 6px;
}

.step{
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
}

.step-num{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #0b3a67;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h4{
  margin: 0 0 6px;
  color: #0b3a67;
  font-weight: 900;
}

.step p{
  margin: 0;
}

/* CTA BOX */
.cta-box{
  margin: 16px 0 10px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(11,58,103,0.2);
  background: linear-gradient(180deg, rgba(11,58,103,0.06), rgba(255,255,255,0.0));
}

.cta-box h3{
  margin: 0 0 8px;
  color: #0b3a67;
  font-weight: 900;
}

.cta-button{
  display: inline-block;
  margin-top: 10px;
  background: #0b3a67;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background-color .2s ease, color .2s ease, transform .15s ease;
}

.cta-button:hover{
  background: #f1c40f;
  color: #0b3a67;
  transform: translateY(-1px);
}

/* Citas/testimonios */
.quotes{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.quotes blockquote{
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.04);
  line-height: 1.6;
}

.quotes blockquote span{
  display: block;
  margin-top: 8px;
  color: #0b3a67;
  font-weight: 800;
}

.signature--big{
  margin-top: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .impact-strip{ grid-template-columns: 1fr; }
}
/* HERO / ENCABEZADO CONTROLADO (banner recortado) */
.page-hero{
  width: 100%;
  height: clamp(260px, 32vw, 420px); /* ajusta el tamaño del banner */
  overflow: hidden;
}

.page-hero-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;        /* recorta elegante */
  object-position: center;  /* mueve el foco si lo necesitas */
}
.page-hero{
  width: 100%;
  max-height: 520px;  /* límite */
  overflow: hidden;
}

.page-hero-img{
  width: 100%;
  height: auto;       /* muestra toda la proporción */
  display: block;
}
/* ====== ABRIGO: HERO ====== */
.hero.hero--page{
  position: relative;
  width: 100%;
  height: 360px;              /* control del alto del encabezado */
  overflow: hidden;
}

@media (min-width: 900px){
  .hero.hero--page{ height: 420px; }
}

.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* clave para que no se deforme */
  object-position: center;    /* si se “muerde”, cambia a 'top' */
  display: block;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0));
}

.hero-title{
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .2px;
}

.hero-subtitle{
  margin: 8px 0 0;
  color: rgba(255,255,255,.92);
  max-width: 900px;
}

/* ====== ABRIGO: BLOQUE PRINCIPAL ====== */
.page{ padding: 38px 0; }

.card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;
}

.abrigo-block{ padding: 22px; }

.abrigo-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

@media (min-width: 980px){
  .abrigo-grid{
    grid-template-columns: 360px 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
  }

  .abrigo-figure--top{ grid-column: 1; grid-row: 1; }
  .abrigo-text{ grid-column: 2; grid-row: 1 / span 2; }
  .abrigo-figure--bottom{ grid-column: 1; grid-row: 2; }
}

.abrigo-figure{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fafafa;
}

.abrigo-img{
  width: 100%;
  height: 260px;              /* evita “gigantes” */
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 980px){
  .abrigo-img{ height: 280px; }
}

.abrigo-figure figcaption{
  font-size: 12px;
  padding: 10px 12px;
  color: rgba(0,0,0,.62);
}

.abrigo-text h2{
  margin: 0 0 10px;
  font-size: 30px;
}

.abrigo-text h3{
  margin: 18px 0 8px;
  font-size: 18px;
}

.abrigo-text h4{
  margin: 14px 0 6px;
  font-size: 15px;
  opacity: .92;
}

.abrigo-text p{
  margin: 10px 0;
  line-height: 1.65;
}

.abrigo-text .lead{
  font-size: 16px;
  opacity: .92;
}

.abrigo-text ul{
  margin: 10px 0 0 18px;
  line-height: 1.7;
}

.callout{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
}

.contact{
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.quote{
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(0,0,0,.22);
  background: rgba(0,0,0,.03);
  border-radius: 10px;
  font-style: italic;
}
/* ==========================
   ATENCIÓN - HERO VIDEO
   ========================== */

.hero-video {
  margin-top: 0;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 520px;              /* Ajusta aquí si lo quieres más alto/menos alto */
  overflow: hidden;
  background: #0b2e4a;
}

.hero-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* LLENA el contenedor sin deformarse */
  object-position: center;    /* centra el encuadre */
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05) 45%,
    rgba(0,0,0,0.25)
  );
  pointer-events: none;
}

/* Botón de audio */
.hero-audio-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero-audio-btn:hover {
  background: rgba(0,0,0,0.5);
}

.hero-audio-text {
  font-weight: 700;
  font-size: 14px;
}

.hero-audio-icon {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-video-wrap { height: 380px; }
  .hero-audio-btn { right: 12px; bottom: 12px; }
}

@media (max-width: 560px) {
  .hero-video-wrap { height: 280px; }
}

/* ==========================
   ATENCIÓN - ESTILO FORMAL
   ========================== */

.content-card--formal .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0b2e4a;
  background: rgba(11,46,74,0.08);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.content-card--formal h1 {
  line-height: 1.15;
}

.content-card--formal blockquote {
  margin: 14px 0 14px;
  padding: 14px 16px;
  border-left: 4px solid rgba(11,46,74,0.45);
  background: rgba(11,46,74,0.06);
  border-radius: 10px;
}

.content-rule {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 26px 0;
}

.formal-list {
  margin: 10px 0 14px;
  padding-left: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.signature {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.85);
}
