/* Estilos de los artículos del blog.
   Deliberadamente independientes del bundle de React: así las páginas del
   blog son HTML estático puro, se indexan sin ejecutar JavaScript y no se
   rompen si cambia el build del sitio.
   Paleta idéntica a la del sitio principal. */

:root {
  --ink: #1c2f4d;
  --inksoft: #223662;
  --bordeaux: #650e25;
  --apricot: #ffca75;
  --sky: #b9e3f7;
  --cream: #fff4dc;
  --cream-dark: #f0e2c1;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

html[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
}

/* ── Barra superior ─────────────────────────────────────── */
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.05;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand small { font-size: inherit; font-weight: inherit; }

/* Menú del sitio dentro del blog: desde un artículo se puede volver a
   cualquier sección de la portada sin pasar por el logo. Sin JavaScript:
   en pantallas estrechas la fila se desplaza en horizontal. */
.menu {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu a {
  color: rgba(255, 244, 220, 0.85);
  text-decoration: none;
  white-space: nowrap;
  transition: color .18s ease;
}

.menu a:hover { color: var(--cream); }
.menu a.on { color: var(--apricot); }

/* Desplegable de servicios. Se abre al pasar el cursor y también al recibir
   el foco, así funciona con teclado sin necesidad de JavaScript. */
.has-sub { position: relative; }

.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-inline-start: 0.35rem;
  border: 0.28em solid transparent;
  border-top-color: currentColor;
  transform: translateY(0.15em);
}

.sub {
  position: absolute;
  top: calc(100% + 0.9rem);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  min-width: 17rem;
  padding: 0.5rem 0;
  background: #0f1b2e;
  border: 1px solid rgba(255, 244, 220, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease;
  z-index: 40;
}

/* Puente invisible para que el cursor pueda bajar sin que se cierre */
.has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  inset-inline: 0;
  height: 0.9rem;
}

.has-sub:hover .sub,
.has-sub:focus-within .sub { opacity: 1; visibility: visible; }

.sub a {
  display: block;
  padding: 0.7rem 1.3rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 244, 220, 0.8);
  border-bottom: 1px solid rgba(255, 244, 220, 0.08);
  white-space: normal;
}

.sub a:last-child { border-bottom: 0; }
.sub a:hover { color: var(--cream); background: rgba(255, 244, 220, 0.06); }

@media (max-width: 64rem) {
  .bar { flex-wrap: wrap; }
  .menu {
    order: 3;
    width: 100%;
    flex: none;
    justify-content: flex-start;
    gap: 1.4rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }
  .menu::-webkit-scrollbar { display: none; }
  /* La fila se desplaza en horizontal y recortaría el desplegable, así que
     en móvil el enlace lleva directamente al índice de servicios. */
  .sub { display: none; }
  .has-sub > a::after { display: none; }
}

.langs {
  display: flex;
  gap: 0.15rem;
  padding: 2px;
  border: 1px solid rgba(255, 244, 220, 0.25);
  border-radius: 999px;
}

.langs a {
  display: block;
  padding: 0.35rem;
  border-radius: 999px;
  line-height: 0;
  opacity: 0.45;
  transition: opacity .18s ease, background .18s ease;
}

.langs a:hover { opacity: 1; }
.langs a.on { opacity: 1; background: rgba(255, 244, 220, 0.15); }

.langs svg {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
}

/* ── Artículo ───────────────────────────────────────────── */
main { padding: 3rem 1.5rem 4rem; }
article { max-width: 46rem; margin: 0 auto; }

.kicker {
  margin: 0 0 0.9rem;
  color: var(--bordeaux);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 1.2rem;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 { font-family: "IBM Plex Sans Arabic", system-ui, sans-serif; }

.lede {
  margin: 0 0 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(28, 47, 77, 0.78);
}

h2 {
  margin: 2.8rem 0 1rem;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
}

h3 { margin: 0 0 0.5rem; font-size: 1.15rem; font-weight: 600; }

/* Texto justificado. La separación silábica automática queda desactivada
   a propósito: insertaría guiones al final de línea. */
article p,
article li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: none;
  -webkit-hyphens: none;
}

p { margin: 0 0 1.15rem; }
strong { font-weight: 600; }

ul, ol { margin: 0 0 1.4rem; padding-inline-start: 1.4rem; }
li { margin-bottom: 0.7rem; }

/* En pantallas estrechas el justificado abre huecos feos entre palabras */
@media (max-width: 34rem) {
  article p,
  article li { text-align: start; }
}

/* ── Índice del artículo ────────────────────────────────── */
.toc {
  margin: 0 0 2.8rem;
  padding: 1.5rem 1.8rem;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
}

.toc-meta {
  margin: 0 0 1rem !important;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bordeaux);
  text-align: start !important;
}

.toc h2 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
}

html[dir="rtl"] .toc h2 { font-family: "IBM Plex Sans Arabic", system-ui, sans-serif; }

.toc ol { margin: 0; padding-inline-start: 1.2rem; }

.toc li {
  margin-bottom: 0.45rem;
  text-align: start !important;
  font-size: 0.94rem;
}

.toc a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; }
.toc a:hover { color: var(--bordeaux); border-bottom-color: var(--bordeaux); }

/* Los títulos se separan un poco más al saltar desde el índice */
h2[id], h3[id] { scroll-margin-top: 5rem; }

/* ── Tarjetas de las tres vías ──────────────────────────── */
.card {
  margin: 0 0 1rem;
  padding: 1.5rem 1.6rem;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  border-inline-start: 4px solid var(--bordeaux);
}

.card p:last-child { margin-bottom: 0; }

.who {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bordeaux);
}

/* ── Aviso legal ────────────────────────────────────────── */
.note {
  margin: 2.5rem 0;
  padding: 1.3rem 1.5rem;
  background: var(--sky);
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.note p { margin: 0; }

/* ── Imagen de portada del artículo ─────────────────────── */
figure.cover {
  margin: 0 0 2.5rem;
}

figure.cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  background: var(--cream);
}

figure.cover figcaption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(28, 47, 77, 0.5);
}

/* ── Llamada a la acción intermedia ─────────────────────── */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 2.8rem 0;
  padding: 1.5rem 1.7rem;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-inline-start: 4px solid #25d366;
  border-radius: 14px;
}

.cta-inline p {
  margin: 0;
  max-width: 30rem;
  font-size: 0.97rem;
  line-height: 1.55;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.8rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  transition: background .18s ease;
}

.btn-wa:hover { background: #1da851; }
.btn-wa svg { width: 19px; height: 19px; fill: currentColor; }

/* ── Llamada a la acción ────────────────────────────────── */
.cta {
  margin: 3rem 0 2rem;
  padding: 2.2rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  text-align: center;
}

.cta h2 { margin: 0 0 0.6rem; color: var(--cream); font-size: 1.4rem; }
.cta p { color: rgba(255, 244, 220, 0.75); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.6rem;
  padding: 0.85rem 1.9rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background .18s ease;
}

.btn:hover { background: #1da851; }
.btn svg { width: 20px; height: 20px; fill: currentColor; }

/* Tabla de datos dentro del artículo */
.tabla { width: 100%; margin: 1.5rem 0 2rem; border-collapse: collapse; font-size: 0.93rem; }
.tabla th, .tabla td { padding: 0.7rem 0.9rem; text-align: start; border-bottom: 1px solid var(--cream-dark); }
.tabla th { background: #fffaf0; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bordeaux); }
.tabla tr:last-child td { border-bottom: none; }

/* ── Índice del blog ────────────────────────────────────── */

/* Artículo destacado: imagen a un lado, panel oscuro al otro */
.featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin: 2.5rem 0 3.5rem;
  background: var(--ink);
  border-radius: 18px;
  overflow: hidden;
  color: var(--cream);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.featured:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(28, 47, 77, .16); }

.featured img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 21rem;
  object-fit: cover;
}

.featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.6rem 2.4rem;
}

.featured-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.badge {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--apricot);
  border-radius: 999px;
  color: var(--apricot);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-date { font-size: 0.82rem; color: rgba(255, 244, 220, .6); }

.featured h2 {
  margin: 0 0 0.9rem;
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.2;
}

.featured p {
  margin: 0;
  color: rgba(255, 244, 220, .72);
  font-size: 0.98rem;
  text-align: start;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  color: var(--apricot);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.read-more .circle {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--apricot);
  border-radius: 50%;
  font-size: 1rem;
}

html[dir="rtl"] .read-more .circle { transform: scaleX(-1); }

@media (max-width: 48rem) {
  .featured { grid-template-columns: 1fr; }
  .featured img { min-height: 13rem; }
  .featured-body { padding: 1.8rem 1.6rem; }
}

/* Rejilla de artículos */
.list {
  display: grid;
  gap: 2rem 1.6rem;
  margin-top: 0;
}

@media (min-width: 48rem) {
  .list { grid-template-columns: repeat(3, 1fr); }
}

.entry {
  display: block;
  color: inherit;
  text-decoration: none;
}

.entry .thumb {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  background: var(--cream);
  transition: transform .2s ease;
}

.entry:hover .thumb { transform: translateY(-3px); }

.entry-body { padding: 1.1rem 0 0; }

.entry-body h2 {
  margin: 0.5rem 0 0.5rem;
  font-size: 1.22rem;
  line-height: 1.25;
}

.entry-body p {
  margin: 0;
  color: rgba(28, 47, 77, .62);
  font-size: 0.93rem;
  line-height: 1.6;
  text-align: start;
}

.meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.meta .tag { color: var(--bordeaux); }
.meta .time { color: rgba(28, 47, 77, .38); font-weight: 500; letter-spacing: 0.04em; }

.soon {
  margin-top: 3rem;
  padding: 1.3rem 1.6rem;
  border: 1px dashed var(--cream-dark);
  border-radius: 14px;
  font-size: 0.92rem;
  color: rgba(28, 47, 77, .6);
}

.soon p { margin: 0; text-align: start; }

/* El índice del blog usa un contenedor más ancho que los artículos */
.blog-index { max-width: 68rem; }

/* ── Imagen de portada del artículo ─────────────────────── */
figure.cover {
  margin: 0 0 2.5rem;
}

figure.cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  background: var(--cream);
}

figure.cover figcaption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: rgba(28, 47, 77, 0.5);
}

/* ── Llamada a la acción intermedia ─────────────────────── */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin: 2.8rem 0;
  padding: 1.5rem 1.7rem;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-inline-start: 4px solid #25d366;
  border-radius: 14px;
}

.cta-inline p {
  margin: 0;
  max-width: 30rem;
  font-size: 0.97rem;
  line-height: 1.55;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.8rem 1.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  transition: background .18s ease;
}

.btn-wa:hover { background: #1da851; }
.btn-wa svg { width: 19px; height: 19px; fill: currentColor; }

/* ── Llamada a la acción ────────────────────────────────── */
.cta {
  margin: 3rem 0 2rem;
  padding: 2.2rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  text-align: center;
}

.cta h2 { margin: 0 0 0.6rem; color: var(--cream); font-size: 1.4rem; }
.cta p { color: rgba(255, 244, 220, 0.75); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.6rem;
  padding: 0.85rem 1.9rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background .18s ease;
}

.btn:hover { background: #1da851; }
.btn svg { width: 20px; height: 20px; fill: currentColor; }

/* Tabla de datos dentro del artículo */
.tabla { width: 100%; margin: 1.5rem 0 2rem; border-collapse: collapse; font-size: 0.93rem; }
.tabla th, .tabla td { padding: 0.7rem 0.9rem; text-align: start; border-bottom: 1px solid var(--cream-dark); }
.tabla th { background: #fffaf0; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--bordeaux); }
.tabla tr:last-child td { border-bottom: none; }

/* ── Índice del blog ────────────────────────────────────── */
.list { display: grid; gap: 1rem; margin-top: 2.5rem; }

.entry {
  display: block;
  overflow: hidden;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.entry:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(28, 47, 77, .09); }

.entry .thumb {
  display: block;
  width: 100%;
  /* height:auto es imprescindible: sin él, el atributo height="900" del HTML
     actúa como altura CSS y la miniatura sale altísima. */
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--cream);
}

.entry-body { padding: 1.5rem 1.7rem; }
.entry-body h2 { margin: 0.7rem 0 0.5rem; font-size: 1.3rem; }
.entry-body p { margin: 0; color: rgba(28, 47, 77, .7); font-size: 0.95rem; text-align: start; }

/* En pantallas anchas las tarjetas van de dos en dos */
@media (min-width: 52rem) {
  .list { grid-template-columns: 1fr 1fr; }
}

.meta {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta .tag {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(101, 14, 37, .09);
  color: var(--bordeaux);
}

.meta .time { color: rgba(28, 47, 77, .4); }

.soon {
  margin-top: 2rem;
  padding: 1.3rem 1.6rem;
  border: 1px dashed var(--cream-dark);
  border-radius: 14px;
  font-size: 0.92rem;
  color: rgba(28, 47, 77, .6);
}

.soon p { margin: 0; }

.updated {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(28, 47, 77, 0.5);
}

/* ── Pie ────────────────────────────────────────────────── */
.foot {
  padding: 1.8rem 1.5rem 2.2rem;
  background: var(--bordeaux);
  color: rgba(255, 244, 220, 0.85);
  text-align: center;
}

.foot p { margin: 0; font-size: 0.9rem; }
.foot a { color: var(--apricot); font-weight: 600; }
.foot .small {
  max-width: 34rem;
  margin: 0.6rem auto 0;
  font-size: 0.74rem;
  line-height: 1.55;
  color: rgba(255, 244, 220, 0.55);
}

/* ═══ Páginas de servicio ═══════════════════════════════════
   Mismo armazón que los artículos: cabecera, tipografía y pie
   se comparten. Aquí solo lo propio de estas páginas.        */

.migas {
  margin: 0 0 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(28, 47, 77, 0.45);
}

.migas a { color: var(--bordeaux); text-decoration: none; }
.migas a:hover { text-decoration: underline; }

/* Caja de precio del servicio */
.precio {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem 1.1rem;
  margin: 0 0 2.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--ink);
  border-radius: 14px;
  color: var(--cream);
}

.precio .cifra {
  font-family: "Lora", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--apricot);
  line-height: 1;
}

.precio .unidad { font-size: 0.85rem; color: rgba(255, 244, 220, 0.6); }
.precio .detalle {
  flex: 1 1 14rem;
  margin: 0 !important;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 244, 220, 0.8);
  text-align: start !important;
}

/* Lista de lo que incluye el servicio */
.incluye {
  margin: 0 0 2rem;
  padding: 1.4rem 1.6rem;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
}

.incluye h2 { margin: 0 0 0.9rem; font-size: 1.15rem; }
.incluye ul { margin: 0; padding: 0; list-style: none; }

.incluye li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-inline-start: 1.6rem;
  text-align: start !important;
  font-size: 0.95rem;
}

.incluye li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--bordeaux);
}

.incluye li:last-child { margin-bottom: 0; }

/* ── Índice de servicios ────────────────────────────────── */
.servicios-index { max-width: 68rem; }

.areas {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.5rem;
}

@media (min-width: 42rem) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 66rem) { .areas { grid-template-columns: repeat(3, 1fr); } }

.area {
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.6rem;
  background: #fffaf0;
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.area:hover {
  transform: translateY(-3px);
  border-color: rgba(101, 14, 37, 0.35);
  box-shadow: 0 16px 34px rgba(28, 47, 77, 0.12);
}

.area .num {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
}

.area h2 {
  margin: 0.8rem 0 0.5rem;
  font-size: 1.12rem;
  line-height: 1.3;
}

.area p {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(28, 47, 77, 0.66);
  text-align: start !important;
}

.area .mas {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bordeaux);
}
