/** Shopify CDN: Minification failed

Line 1078:0 Unexpected "}"

**/
/* ============================================================
   ARMO.UY — Blog Hero
   Pegar en: Online Store > Themes > Edit code >
             Assets > base.css  ← NO
             Online Store > Customize > Theme settings >
             Custom CSS  ← SÍ (customer CSS)
   ============================================================ */

/* ── Variables de sección (sobreescriben las del schema) ── */
.blog-hero {
  background-color: var(--hero-bg, #f5f3ef);
  color: var(--hero-text, #1a1a1a);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

/* ── Contenedor principal: 2 columnas ── */
.blog-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 420px;
}

/* ─────────────────────────────────────────
   COLUMNA IZQUIERDA — Texto
───────────────────────────────────────── */
.blog-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 2rem;
}

/* Eyebrow */
.blog-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-accent, #4D52DE);
  background-color: rgba(77, 82, 222, 0.10);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  width: fit-content;
}

/* Título */
.blog-hero__title {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight, 700);
  font-style: var(--font-heading-style, normal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--hero-text, #1a1a1a);
}

/* Subtítulo */
.blog-hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
  max-width: 40ch;
}

/* CTA */
.blog-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--hero-accent, #4D52DE);
  color: #ffffff;
  font-family: var(--font-body-family);
  font-size: 0.9rem;
  font-weight: var(--font-body-bold-weight, 600);
  letter-spacing: 0.02em;
  border-radius: var(--buttons-radius, 6px);
  text-decoration: none;
  width: fit-content;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.blog-hero__cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.blog-hero__cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.blog-hero__cta:hover::after {
  transform: translateX(3px);
}

/* ─────────────────────────────────────────
   COLUMNA DERECHA — Imágenes
───────────────────────────────────────── */
.blog-hero__images {
  position: relative;
  height: 420px;
}

/* Imagen principal */
.blog-hero__image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.blog-hero__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hero__image-main--placeholder {
  background-color: rgba(77, 82, 222, 0.08);
}

.blog-hero__image-main--placeholder .placeholder-svg {
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

/* Imagen flotante (superpuesta, esquina inferior izquierda) */
.blog-hero__image-float {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: 42%;
  aspect-ratio: 1 / 1.1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border: 4px solid var(--hero-bg, #f5f3ef);
  z-index: 2;
}

.blog-hero__image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Punto decorativo de acento */
.blog-hero__accent-dot {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--hero-accent, #4D52DE);
  opacity: 0.15;
  z-index: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE — Tablet (< 990px)
───────────────────────────────────────── */
@media screen and (max-width: 989px) {
  .blog-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }

  .blog-hero__text {
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .blog-hero__subtitle {
    max-width: 56ch;
  }

  .blog-hero__images {
    height: 320px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ─────────────────────────────────────────
   RESPONSIVE — Móvil (< 749px)
───────────────────────────────────────── */
@media screen and (max-width: 749px) {
  .blog-hero {
    padding: 3rem 0 2rem;
  }

  .blog-hero__images {
    height: 260px;
  }

  .blog-hero__image-float {
    width: 38%;
    bottom: -1rem;
    border-width: 3px;
  }

  .blog-hero__accent-dot {
    width: 56px;
    height: 56px;
  }
}
/* ============================================================
   ARMO.UY — Blog Sections CSS Completo
   Pegar en: Online Store > Customize > Theme settings >
             Custom CSS (NO en base.css)
   
   Cubre:
   · blog-featured (hero + carrusel horizontal)
   · blog-cta-banner
   · blog-grid (3 cols desktop, 1 col mobile)
   · blog-newsletter
   · paginación + filtro + promo cards
   ============================================================ */


/* ╔══════════════════════════════════════════════════════════╗
   ║  BLOG FEATURED — featured grande + carrusel              ║
   ╚══════════════════════════════════════════════════════════╝ */

.blog-featured {
  background-color: var(--bf-bg, #ffffff);
  color: var(--bf-text, #1a1a1a);
  padding: 4rem 0 2.5rem;
}

.blog-featured__heading {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight, 700);
  font-style: var(--font-heading-style, normal);
  letter-spacing: -0.01em;
  margin: 0 0 2.5rem;
}

/* ── Hero featured (artículo grande) ── */
.blog-featured__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.blog-featured__hero-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background-color: rgba(77, 82, 222, 0.06);
}

.blog-featured__hero-image img,
.blog-featured__hero-image .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-featured__hero-image:hover img {
  transform: scale(1.03);
}

.blog-featured__hero-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 1rem;
}

.blog-featured__hero-title {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight, 700);
  font-style: var(--font-heading-style, normal);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.blog-featured__hero-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-featured__hero-title a:hover {
  color: var(--bf-accent, #4D52DE);
}

.blog-featured__hero-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
}

.blog-featured__hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--bf-accent, #4D52DE);
  color: #ffffff;
  font-family: var(--font-body-family);
  font-size: 0.875rem;
  font-weight: var(--font-body-bold-weight, 600);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--buttons-radius, 6px);
  width: fit-content;
  margin-top: 0.5rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.blog-featured__hero-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.blog-featured__hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.blog-featured__hero-cta:hover::after {
  transform: translateX(3px);
}

/* ── Tag pill ── */
.blog-featured__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bf-accent, #4D52DE);
  background-color: rgba(77, 82, 222, 0.10);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  width: fit-content;
}

.blog-featured__tag--small {
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
}

/* ── Carrusel ── */
.blog-featured__carousel-wrap {
  position: relative;
}

.blog-featured__carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0 2rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: none;
}

.blog-featured__carousel::-webkit-scrollbar {
  display: none;
}

.blog-featured__card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-featured__card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(77, 82, 222, 0.06);
}

.blog-featured__card-image img,
.blog-featured__card-image .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-featured__card-image:hover img {
  transform: scale(1.04);
}

.blog-featured__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-featured__card-title {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight, 700);
  font-style: var(--font-heading-style, normal);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.blog-featured__card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-featured__card-title a:hover {
  color: var(--bf-accent, #4D52DE);
}

.blog-featured__card-excerpt {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
}

.blog-featured__card-cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bf-text, #1a1a1a);
  border-bottom: 2px solid var(--bf-accent, #4D52DE);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}

.blog-featured__card-cta:hover {
  color: var(--bf-accent, #4D52DE);
}

/* ── Flechas de navegación ── */
.blog-featured__nav {
  position: absolute;
  top: calc(50% - 2rem);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.12);
  color: var(--bf-text, #1a1a1a);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.blog-featured__nav:hover {
  background-color: var(--bf-accent, #4D52DE);
  color: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.blog-featured__nav--prev {
  left: -1.25rem;
}

.blog-featured__nav--next {
  right: -1.25rem;
}

.blog-featured__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured__placeholder .placeholder-svg {
  opacity: 0.3;
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  BLOG CTA BANNER                                          ║
   ╚══════════════════════════════════════════════════════════╝ */

.blog-cta {
  background-color: var(--cta-bg, #4D52DE);
  color: var(--cta-text, #ffffff);
  padding: 2.5rem 0;
}

.blog-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-cta__text {
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
  flex: 1;
  min-width: 280px;
}

.blog-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background-color: var(--cta-btn-bg, #ffffff);
  color: var(--cta-btn-text, #4D52DE);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.blog-cta__button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  BLOG GRID — filtro + grilla + paginación                ║
   ╚══════════════════════════════════════════════════════════╝ */

.blog-grid {
  background-color: var(--bg-bg, #ffffff);
  color: var(--bg-text, #1a1a1a);
  padding: 3.5rem 0 4rem;
}

/* ── Filtro ── */
.blog-grid__filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.blog-grid__filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.60);
}

.blog-grid__filter-select {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 6px;
  background-color: transparent;
  color: var(--bg-text, #1a1a1a);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  min-width: 160px;
}

.blog-grid__filter-select:focus {
  outline: 2px solid var(--bg-accent, #4D52DE);
  outline-offset: 2px;
}

/* ── Grilla ── */
.blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  align-items: start;
}

/* ── Card de artículo ── */
.blog-grid__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-grid__card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background-color: rgba(77, 82, 222, 0.06);
}

.blog-grid__card-image img,
.blog-grid__card-image .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-grid__card-image:hover img {
  transform: scale(1.04);
}

.blog-grid__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-grid__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-accent, #4D52DE);
  background-color: rgba(77, 82, 222, 0.10);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 0.25rem;
}

.blog-grid__card-title {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight, 700);
  font-style: var(--font-heading-style, normal);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
}

.blog-grid__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-grid__card-title a:hover {
  color: var(--bg-accent, #4D52DE);
}

.blog-grid__date {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.55);
  margin: 0;
}

.blog-grid__excerpt {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.70);
  margin: 0.25rem 0 0;
}

.blog-grid__cta {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-text, #1a1a1a);
  border-bottom: 2px solid var(--bg-accent, #4D52DE);
  padding-bottom: 2px;
  width: fit-content;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.blog-grid__cta:hover {
  color: var(--bg-accent, #4D52DE);
}

/* ── Promo card intercalada ── */
.blog-grid__card--promo {
  background-color: var(--promo-bg, #f5f3ef);
  color: var(--promo-text, #1a1a1a);
  border-radius: 12px;
  padding: 1.5rem;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.blog-grid__card-image--promo {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background-color: transparent;
}

.blog-grid__card-body--promo {
  align-items: center;
  text-align: center;
}

.blog-grid__cta--promo {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  background-color: var(--bg-accent, #4D52DE);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
}

.blog-grid__cta--promo:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* ── Paginación ── */
.blog-grid__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.blog-grid__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bg-text, #1a1a1a);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-grid__page:hover {
  background-color: rgba(77, 82, 222, 0.10);
  color: var(--bg-accent, #4D52DE);
}

.blog-grid__page--current {
  background-color: var(--bg-accent, #4D52DE);
  color: #ffffff;
  font-weight: 600;
}

.blog-grid__page--dots {
  color: rgba(26, 26, 26, 0.40);
  cursor: default;
}

.blog-grid__page--arrow {
  font-weight: 600;
  padding: 0 0.75rem;
}

/* ── Estado vacío ── */
.blog-grid__empty {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(26, 26, 26, 0.60);
  padding: 3rem 0;
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  BLOG NEWSLETTER                                          ║
   ╚══════════════════════════════════════════════════════════╝ */

.blog-newsletter {
  background-color: var(--nl-bg, #f5f3ef);
  color: var(--nl-text, #1a1a1a);
  padding: 3rem 0;
}

.blog-newsletter__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.blog-newsletter__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-newsletter__title {
  font-family: var(--font-heading-family);
  font-weight: var(--font-heading-weight, 700);
  font-style: var(--font-heading-style, normal);
  letter-spacing: -0.01em;
  margin: 0;
}

.blog-newsletter__subtitle {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
}

.blog-newsletter__form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
}

.blog-newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 6px;
  background-color: #ffffff;
  color: var(--nl-text, #1a1a1a);
}

.blog-newsletter__input:focus {
  outline: 2px solid var(--nl-accent, #4D52DE);
  outline-offset: 1px;
  border-color: transparent;
}

.blog-newsletter__button {
  padding: 0.85rem 1.5rem;
  background-color: var(--nl-accent, #4D52DE);
  color: #ffffff;
  font-family: var(--font-body-family);
  font-size: 0.875rem;
  font-weight: var(--font-body-bold-weight, 600);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--buttons-radius, 6px);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.blog-newsletter__button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.blog-newsletter__success,
.blog-newsletter__error {
  flex-basis: 100%;
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
}

.blog-newsletter__success {
  color: #00644E;
}

.blog-newsletter__error {
  color: #FA3433;
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  RESPONSIVE — Tablet (< 990px)                            ║
   ╚══════════════════════════════════════════════════════════╝ */

@media screen and (max-width: 989px) {

  /* Featured: hero apilado */
  .blog-featured__hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .blog-featured__hero-body {
    padding-right: 0;
  }

  /* Carrusel: 2 cards visibles */
  .blog-featured__card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }

  /* Flechas: posición más cercana */
  .blog-featured__nav--prev { left: -0.5rem; }
  .blog-featured__nav--next { right: -0.5rem; }

  /* Grid: 2 columnas */
  .blog-grid__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    align-items: start;
  }

  /* Newsletter: stack */
  .blog-newsletter__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ╔══════════════════════════════════════════════════════════╗
   ║  RESPONSIVE — Móvil (< 749px)                             ║
   ╚══════════════════════════════════════════════════════════╝ */

@media screen and (max-width: 749px) {

  /* ── Featured ── */
  .blog-featured {
    padding: 2.5rem 0 1.5rem;
  }

  .blog-featured__heading {
    margin-bottom: 1.5rem;
  }

  .blog-featured__hero {
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .blog-featured__hero-body {
    gap: 0.75rem;
  }

  /* Carrusel: 1.2 cards visibles para insinuar scroll */
  .blog-featured__card {
    flex: 0 0 80%;
  }

  /* Ocultar flechas en móvil — usar swipe */
  .blog-featured__nav {
    display: none;
  }

  .blog-featured__carousel {
    padding-bottom: 1rem;
    gap: 1rem;
  }

  /* ── CTA Banner ── */
  .blog-cta {
    padding: 2rem 0;
  }

  .blog-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .blog-cta__button {
    width: 100%;
  }

  /* ── Grid: 1 columna ── */
  .blog-grid {
    padding: 2.5rem 0 3rem;
  }

  .blog-grid__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .blog-grid__filter {
    margin-bottom: 1.75rem;
  }

  .blog-grid__filter-select {
    flex: 1;
  }

  /* Paginación: más compacta */
  .blog-grid__pagination {
    gap: 0.15rem;
    margin-top: 2.5rem;
  }

  .blog-grid__page {
    min-width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }

  .blog-grid__page--arrow {
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }

  /* ── Newsletter ── */
  .blog-newsletter {
    padding: 2.5rem 0;
  }

  .blog-newsletter__form {
    flex-direction: column;
  }

  .blog-newsletter__input,
  .blog-newsletter__button {
    width: 100%;
  }
}



  .blog-grid__date {
    color: #888;
  }
  .blog-grid__filter-label {
    color: #777;
  }
  .blog-featured__hero-image,
  .blog-featured__card-image,
  .blog-grid__card-image {
    background-color: rgba(77, 82, 222, 0.06);
  }
}

/* ============================================================
   ARMO.UY — Tamaños de texto controlados desde el editor
   Cada variable viene del schema de su sección.
   ============================================================ */

/* ── Hero ── */
.blog-hero__title        { font-size: var(--hero-title-size, 40px); }
.blog-hero__subtitle     { font-size: var(--hero-subtitle-size, 16px); }
.blog-hero__eyebrow      { font-size: var(--hero-eyebrow-size, 12px); }
.blog-hero__cta          { font-size: var(--hero-cta-size, 14px); }

/* ── Featured ── */
.blog-featured__heading       { font-size: var(--bf-heading-size, 28px); }
.blog-featured__hero-title    { font-size: var(--bf-hero-title-size, 36px); }
.blog-featured__hero-excerpt  { font-size: var(--bf-hero-excerpt-size, 16px); }
.blog-featured__card-title    { font-size: var(--bf-card-title-size, 18px); }
.blog-featured__card-excerpt  { font-size: var(--bf-card-excerpt-size, 14px); }

/* ── Grid ── */
.blog-grid__card-title  { font-size: var(--bg-card-title-size, 18px); }
.blog-grid__excerpt     { font-size: var(--bg-card-excerpt-size, 14px); }
.blog-grid__date        { font-size: var(--bg-card-date-size, 12px); }

/* ── CTA Banner ── */
.blog-cta__text    { font-size: var(--cta-text-size, 17px); }
.blog-cta__button  { font-size: var(--cta-btn-size, 14px); }

/* ── Newsletter ── */
.blog-newsletter__title    { font-size: var(--nl-title-size, 26px); }
.blog-newsletter__subtitle { font-size: var(--nl-subtitle-size, 15px); }
