/* =========================================
   OMMVISHOP – GUIDES INDEX
   Mobile first  --  assets/css/editorial/guides-index.css
========================================= */

/* -----------------------------------------
   1- BASE
----------------------------------------- */
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-index-page {
  padding-bottom: 2.5rem;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
/*.om-guides-hero__inner,*/
.om-guides-section .ast-container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

/* -----------------------------------------
   2- SECCIONES GENERALES
----------------------------------------- */
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-section {
  padding: 1.8rem 0;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-section__heading--center {
  margin-left: auto;
  margin-right: auto;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-section__intro {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
}

/* -----------------------------------------
   3- CARRUSEL BASE
----------------------------------------- */
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-carousel {
  position: relative;
  margin-top: 1.35rem;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-carousel__viewport {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-top: 0.2rem;
  padding-bottom: 0.4rem;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-carousel__viewport::-webkit-scrollbar {
  display: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-carousel__viewport.is-dragging {
  cursor: grabbing;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 82%);
  gap: 18px;
  align-items: stretch;
  padding: 0.45rem 0.1rem 1rem;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-carousel__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-carousel__arrow:hover {
  background: rgba(15, 98, 254, 0.95);
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__arrow:disabled {
  opacity: 0.35;
  cursor: default;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__arrow--prev {
  left: -18px;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__arrow--next {
  right: -18px;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__arrow span {
  font-size: 1.7rem;
  line-height: 1;
  display: inline-block;
  transform: translateY(-1px);
}

/* -- DOTS CARRUSEL - ARTÍCULOS ÚTILES -- */
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.55rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
  opacity: 0.9;
  padding: 0;
  border: 0;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel__dot.is-active {
  background: #2563eb;
  transform: scale(1.15);
  opacity: 1;
}

/* -----------------------------------------
   4- TARJETAS BASE – GUÍAS
----------------------------------------- */
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.2rem 1rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-card__title {
  color: #0f172a;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-card__title a {
  color: inherit;
  text-decoration: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-card__title a:hover {
  color: #0f62fe;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-card__footer {
  margin-top: auto;
}
/**** ✅ AUDIT: viva en Guias  ****/ 
.om-guides-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  background: transparent;
  border: 0;
  color: #0f62fe;
  line-height: 1.2;
  text-decoration: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-card__button:hover {
  color: #0b4ed1;
  opacity: 1;
  transform: none;
}

/* -----------------------------------------
   5- SECCION - GUÍAS MAESTRAS - PILLARS
----------------------------------------- */
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--pillars {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 2.5rem;
  padding-bottom: 2.7rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--pillars .ast-container {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar {
  position: relative;
  min-height: 430px;
  border: 1px solid #c9d1da;
  border-radius: 15px;
  overflow: hidden;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2.2px;
  background: linear-gradient(90deg, #ef4444 0%, #0f62fe 55%, #22c55e 100%);
  opacity: 0.95;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef4fb 0%, #e2ebf5 100%);
  border: 1px solid #d6e0eb;
  color: #0f172a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__title {
  margin: 0 0 0.9rem; 
  font-size: clamp(1.35rem, 4.2vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  max-width: 14ch;
  min-height: 2.3em;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__button {
  min-height: 30px;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 08px 08px rgba(15, 98, 254, 0.22);
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-card--pillar:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow:
    0 18px 36px rgba(15, 23, 42, 0.08),
    0 34px 72px rgba(15, 23, 42, 0.08);
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-card--pillar:hover .om-guides-card__title a {
  color: #0f62fe;
}

/* -- REORDEN PREMIUM – TARJETAS GUÍAS MAESTRAS -- */
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar {
  padding: 0;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.5rem 0.9rem 0.95rem;
  gap: 0;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
  margin-top: 0.25rem;
  margin-bottom: 0.9rem;
  margin-left: -0.9rem;
  margin-right: -0.9rem;
  border: 0;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__text {
  margin: 0;
  color: #475569;
  font-size: 0.97rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: auto;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-card--pillar .om-guides-card__footer {
  margin-top: auto;
  padding-top: 1.2rem;
}

/* -- MÓVIL – GUÍAS MAESTRAS EXPANDIBLES -- */
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-pillars {
  position: relative;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-pillars__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-pillars__actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-pillars__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border: 1px solid #2563eb;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-pillars__toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
  opacity: 0.98;
  color: #ffffff;
}

/* =========================================
   6- SECCION TOPICS (CLUSTERS)
========================================= */
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-topics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 16px;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-topic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 96px;
  padding: 16px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-topic-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, #ef4444 0%, #2563eb 55%, #22c55e 100%);
  opacity: 0.95;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-topic-card:hover {
  border-color: #94a3b8;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-topic-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0f172a;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--topics {
  background: #f8fafc;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* -----------------------------------------
   7- SECCION POST - ARTÍCULOS ÚTILES
----------------------------------------- */
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #eef2f7;
  padding-top: 2.2rem;
  padding-bottom: 2.5rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .om-guides-section__heading {
  margin-bottom: 1.35rem;
  text-align: center;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .om-guides-section__title {
  font-size: clamp(1.7rem, 5.2vw, 2.3rem);
  line-height: 1.08;
  margin: 0 0 0.55rem;
  margin-bottom: 0.6rem;
  font-weight: 800;
  color: #0f172a;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .om-guides-section__intro {
  max-width: 720px;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel--posts {
  position: relative;
  margin-top: 1.25rem;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-carousel--posts .om-guides-carousel__viewport::-webkit-scrollbar {
  display: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-carousel--posts .om-guides-carousel__viewport.is-dragging {
  cursor: grabbing;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel--posts .om-guides-carousel__track {
  padding: 0.35rem 0.1rem 0.8rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-carousel--posts .om-guides-carousel__arrow {
  display: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-section--posts .post-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.07),
    0 28px 60px rgba(15, 23, 42, 0.07);
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-section--posts .post-card__image-wrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid #eef2f7;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-section--posts .post-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__header {
  margin-bottom: 0.75rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__title {
  margin: 0;
  font-size: clamp(1.15rem, 3.8vw, 1.38rem);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__title a {
  color: #0f172a;
  text-decoration: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-section--posts .post-card__title a:hover {
  color: #0f62fe;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__footer {
  margin-top: auto;
  padding: 0 1rem 1rem;
  border-top: 1px solid #eef2f7;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__meta {
  font-size: 0.82rem;
  color: #64748b;
  padding-top: 0.45rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__read-more,
.om-guides-section--posts .post-card__read-more.astra-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: auto;
  min-width: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: #0f62fe !important;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-section--posts .post-card__read-more:hover,
.om-guides-section--posts .post-card__read-more.astra-button:hover {
  color: #0b4ed1 !important;
  opacity: 1;
  transform: none;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__read-more::after,
.om-guides-section--posts .post-card__read-more.astra-button::after {
  content: "→";
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.18s ease;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-section--posts .post-card__read-more:hover::after,
.om-guides-section--posts .post-card__read-more.astra-button:hover::after {
  transform: translateX(2px);
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #ced4db;
  border-radius: 15px;
  min-height: 100%;
  overflow: hidden;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.15rem 1rem 0.75rem;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 6.8em;
}
/**** ✅ AUDIT: viva en Guias  ****/
.om-guides-section--posts .post-card__excerpt p {
  margin: 0;
  color: #475569;
  font-size: 0.97rem;
  line-height: 1.72;
}

/* =========================================
   8- RESPONSIVE
========================================= */
    /* -- Mobile específico -- */
@media (max-width: 767px) {
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-carousel--desktop {
    display: none;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-pillars__list {
    position: relative;
    max-height: 1780px;
    overflow: hidden;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-pillars__list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 78%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.18s ease;
  }
/* ❌ AUDIT: NO usada en Guias */
  .om-guides-pillars__list.is-expanded {
    max-height: none;
  }
/* ❌ AUDIT: NO usada en Guias */
  .om-guides-pillars__list.is-expanded::after {
    opacity: 0;
  }
}

    /* -- Tablet -- */ 
/**** ✅ AUDIT: viva en Guias  ****/
@media (min-width: 768px) {
  .om-guides-index-page {
    padding-bottom: 3rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-card {
    padding: 1.4rem 1.25rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-card--pillar {
    min-height: 450px;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-carousel__track {
    grid-auto-columns: minmax(300px, calc((100% - 24px) / 2));
    gap: 24px;
    padding: 0.4rem 0.15rem 0.6rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--posts {
    padding-top: 2.7rem;
    padding-bottom: 2.9rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-carousel--posts {
    margin-top: 1.35rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-carousel--posts .om-guides-carousel__track {
    padding: 0.4rem 0.15rem 0.9rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-carousel--posts .om-guides-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--posts .post-card__content {
    padding: 1.2rem 1.1rem 0.85rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--posts .post-card__footer {
    padding: 0 1.1rem 1.1rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-cta {
    padding-top: 1.8rem;
    padding-bottom: 3.6rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-cta__actions {
    justify-content: flex-end;
  }
  .om-guides-pillars {
    display: none;
  }
  /**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--topics .ast-container {
    display: block;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--topics .om-guides-section__heading {
    text-align: center;
    margin-bottom: 1.5rem;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--topics .om-guides-topics-grid {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--topics .om-guides-topic-card {
    width: 180px;
    min-height: 110px;
    padding: 18px 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--topics .om-guides-topic-name {
    display: block;
    width: 100%;
    line-height: 1.3;
  }
  .om-guides-carousel__dots {
    display: none;
  }
}

    /* -- Desktop ancho -- */
@media (min-width: 1100px) {
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .ast-container,
  .om-guides-section--posts .ast-container {
    display: block;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .om-guides-section__heading,
  .om-guides-section--posts .om-guides-section__heading {
    max-width: 820px;
    margin: 0 auto 1.4rem;
    text-align: center;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .om-guides-section__intro,
  .om-guides-section--posts .om-guides-section__intro {
    margin-left: auto;
    margin-right: auto;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .om-guides-carousel,
  .om-guides-section--posts .om-guides-carousel--posts {
    width: calc(100% - 96px);
    max-width: 1180px;
    margin: 0 auto;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .om-guides-carousel__track,
  .om-guides-section--posts .om-guides-carousel--posts .om-guides-carousel__track {
    grid-auto-columns: minmax(320px, calc((100% - 48px) / 3));
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .om-guides-carousel__arrow--prev,
  .om-guides-section--posts .om-guides-carousel--posts .om-guides-carousel__arrow--prev {
    left: -56px;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-section--pillars .om-guides-carousel__arrow--next,
  .om-guides-section--posts .om-guides-carousel--posts .om-guides-carousel__arrow--next {
    right: -56px;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-card--pillar {
    min-height: 470px;
  }
/**** ✅ AUDIT: viva en Guias  ****/
  .om-guides-card--pillar .om-guides-card__title {
    font-size: 1.7rem;
  }
  .om-guides-card--pillar .om-guides-card__body {
    padding: 1.3rem 1.3rem 1.3rem;
  }
}

/* -----------------------------------------
   9- LEGACY - GRID BASE
----------------------------------------- */
/* ❌ AUDIT: NO usada en Guias */
.om-guides-grid {
  display: grid;
  gap: 18px;
}
/* ❌ AUDIT: NO usada en Guias */
.om-guides-grid--posts {
  grid-template-columns: 1fr;
}

@media (max-width: 767px) {
  .om-guides-card--pillar .om-guides-card__media,
  .om-guides-section--posts .post-card__image-wrapper {
    aspect-ratio: 1 / 1;
  }

  .om-guides-card--pillar .om-guides-card__media img,
  .om-guides-section--posts .post-card__image-wrapper img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
