/**
 * Blog nuevo (index, category, show).
 */

/* ========== blog-new/index ========== */
/* ===== BLOG NUEVO ===== */
body {
    background: #fff;
    font-family: 'Lato', sans-serif;
    margin: 0 !important;
}
html {
    background: #fff !important;
}

/* HERO aligned to /website */
.oyo-plans-hero.oyo-plans-hero--blog {
    position: relative;
    width: 100%;
    background-color: #2366AE;
    background-image: none;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0;
}
.oyo-plans-hero-vector.oyo-plans-hero-vector--blog {
    position: absolute;
    left: 15%;
    top: -74%;
    width: 87%;
    height: 198%;
    pointer-events: none;
    user-select: none;
    opacity: 0.2;
}
.oyo-plans-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.oyo-plans-hero-label {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: #fff;
    margin-bottom: 8px;
}
.oyo-plans-hero-title {
    font-family: 'Lato';
    font-weight: 900;
    font-size: 36px;
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 16px;
}
.oyo-plans-hero--blog .oyo-plans-hero-subtitle {
    font-family: 'Lato';
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    line-height: normal;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 4px;
}
.oyo-plans-hero--blog .oyo-plans-hero-subtitle:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .oyo-plans-hero.oyo-plans-hero--blog { padding: 56px 0; }
    .oyo-plans-hero-vector.oyo-plans-hero-vector--blog {
        left: 50%;
        top: -74%;
        width: 118%;
        height: 198%;
        transform: translateX(-50%);
    }
    .oyo-plans-hero-label { font-size: 24px; line-height: normal; }
    .oyo-plans-hero-title {
        font-size: 36px;
        line-height: 1;
        max-width: 900px;
        margin-bottom: 16px;
    }
    .oyo-plans-hero--blog .oyo-plans-hero-subtitle {
        font-size: 18px;
        line-height: normal;
        max-width: 900px;
    }
}
@media (min-width: 992px) {
    .oyo-plans-hero-title {
        font-size: 64px;
    }
    .oyo-plans-hero--blog .oyo-plans-hero-subtitle {
        font-size: 24px;
    }
    .oyo-plans-hero-vector.oyo-plans-hero-vector--blog {
        left: 17%;
        top: -79%;
        width: 89.5%;
        height: 206%;
    }
}

/* CATEGORIES BAR */
.bny-cats,
.oyo-blog-topics {
    background: #4CB69B;
    padding: 40px 16px 38px;
}
.bny-cats__label,
.oyo-blog-topics__title {
    text-align: center;
    font-family: 'Lato';
    font-style: normal;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 28px;
}
.bny-cats__list,
.oyo-blog-topics__list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 16px;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}
.bny-cat-pill,
.oyo-blog-topic-pill {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 24px;
    gap: 10px;
    background: #fff;
    border: 1px solid #46A7DE;
    color: #000;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    white-space: nowrap;
    box-shadow: none;
}
.bny-cat-pill:hover,
.oyo-blog-topic-pill:hover {
    background: #fdfefe;
    border-color: #46A7DE;
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(70, 167, 222, 0.12);
}

/* SECCIONES */
.bny-section,
.oyo-blog-section { padding: 46px 0 38px; }
.bny-section--gray,
.oyo-blog-section--gray { background: #EFEFEF; }
.bny-section-title,
.oyo-blog-section__title {
    font-family: 'Lato';
    font-style: normal;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #243258;
    margin-bottom: 22px;
}

/* CARD GRANDE — categorías (gradiente de fondo + overlay absoluto) */
.bny-card-lg,
.oyo-blog-card-lg {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 14px rgba(19, 44, 79, 0.08);
    min-height: 228px;
    transition: box-shadow .15s ease, transform .15s ease;
}
.bny-card-lg:hover,
.oyo-blog-card-lg:hover {
    box-shadow: 0 10px 24px rgba(19, 44, 79, 0.12);
    transform: translateY(-1px);
    text-decoration: none;
}
.bny-card-lg__img,
.oyo-blog-card-lg__img {
    width: 100%;
    height: 142px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.bny-card-lg__body,
.oyo-blog-card-lg__body {
    padding: 9px 12px 10px;
    background: #fff;
    flex: 1;
    min-height: 86px;
}
.bny-card-lg__title,
.oyo-blog-card-lg__title {
    font-family: 'Lato';
    font-style: normal;
    font-size: 15px;
    font-weight: 700;
    color: #243258;
    line-height: 1.18;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bny-card-lg__meta,
.oyo-blog-card-lg__meta {
    font-family: 'Lato';
    font-style: normal;
    font-size: 11px;
    color: #909aaa;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bny-card-lg__excerpt,
.oyo-blog-card-lg__excerpt {
    font-family: 'Lato';
    font-style: normal;
    font-size: 11px;
    color: #5f6b7d;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CARD DESTACADA — foto arriba + bloque teal sólido abajo */
.bny-card-featured,
.oyo-blog-card-featured {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    height: 466px;
    background: #d8e1ea;
    box-shadow: 0 8px 24px rgba(19, 44, 79, 0.08);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.bny-card-featured:hover,
.oyo-blog-card-featured:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(19, 44, 79, 0.14);
    filter: saturate(1.03);
}
.bny-card-featured:hover .bny-card-featured__title,
.oyo-blog-card-featured:hover .oyo-blog-card-featured__title {
    text-decoration: none;
}
.bny-card-featured__photo,
.oyo-blog-card-featured__photo {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d7dde8;
    min-height: 0;
    position: relative;
    overflow: hidden;
}
.bny-card-featured__photo > img,
.oyo-blog-card-featured__photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.bny-card-featured__body,
.oyo-blog-card-featured__body {
    background: linear-gradient(180deg, #2F97A3 0%, #2F8FC2 100%);
    padding: 13px 20px 18px;
    flex-shrink: 0;
}
.bny-card-featured__title,
.oyo-blog-card-featured__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.14;
    margin-bottom: 7px;
}
.bny-card-featured__meta,
.oyo-blog-card-featured__meta {
    font-size: 11px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 8px;
}
.bny-card-featured__excerpt,
.oyo-blog-card-featured__excerpt {
    font-size: 12px;
    color: rgba(255,255,255,0.95);
    line-height: 1.42;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* mini-thumbnails coloreados */
.bny-thumb,
.oyo-blog-thumb { flex-shrink: 0; border-radius: 8px; }
.bny-thumb--a,
.oyo-blog-thumb--a { background: linear-gradient(135deg, #3CBFB4, #1A5276); }
.bny-thumb--b,
.oyo-blog-thumb--b { background: linear-gradient(135deg, #5B4FC3, #1A3A6B); }
.bny-thumb--c,
.oyo-blog-thumb--c { background: linear-gradient(135deg, #2a7fbc, #0E3060); }
.bny-thumb--e,
.oyo-blog-thumb--e { background: linear-gradient(135deg, #c44a30, #7a1a40); }

/* CARD PEQUEÑA HORIZONTAL (img izq + texto der) */
.bny-card-sm,
.oyo-blog-card-horizontal {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(19, 44, 79, 0.08);
    padding: 10px 12px;
    text-decoration: none;
    transition: box-shadow .15s, transform .15s;
    min-height: 104px;
}
.bny-card-sm:hover,
.oyo-blog-card-horizontal:hover {
    box-shadow: 0 10px 24px rgba(19, 44, 79, 0.12);
    transform: translateY(-1px);
    text-decoration: none;
}
.bny-card-sm:hover .bny-card-sm__title,
.oyo-blog-card-horizontal:hover .oyo-blog-card-horizontal__title {
    color: #46A7DE;
    text-decoration: none;
}
.bny-card-lg:hover .bny-card-lg__title,
.oyo-blog-card-lg:hover .oyo-blog-card-lg__title,
.bny-card-vert:hover .bny-card-vert__title,
.oyo-blog-card-vertical:hover .oyo-blog-card-vertical__title {
    color: #46A7DE;
    text-decoration: none;
}
.bny-grid-recent a:hover,
.bny-grid-recent a:focus,
.oyo-blog-recent-grid a:hover,
.oyo-blog-recent-grid a:focus {
    text-decoration: none;
}
.bny-card-sm__img,
.oyo-blog-card-horizontal__img {
    width: 112px; height: 80px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    background: linear-gradient(135deg, #b8d5df, #87a8c0);
}
.bny-card-sm__body,
.oyo-blog-card-horizontal__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bny-card-sm__title,
.oyo-blog-card-horizontal__title {
    font-family: 'Lato';
    font-style: normal;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    line-height: 1.18;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bny-card-sm__meta,
.oyo-blog-card-horizontal__meta {
    font-family: 'Lato';
    font-style: normal;
    font-size: 11px;
    color: #6F6F6F;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* GRID: 1 grande + lista vertical (artículos recientes) */
.bny-grid-recent,
.oyo-blog-recent-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 20px;
    align-items: start;
}
.bny-list-vert,
.oyo-blog-recent-list { display: flex; flex-direction: column; gap: 14px; }

/* GRID: 1 grande + 2x2 (secciones de categoría) */
.bny-grid-cat,
.oyo-blog-category-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}
.bny-grid-2x2,
.oyo-blog-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(104px, 1fr);
    gap: 16px 14px;
}
.bny-grid-cat .bny-card-sm,
.oyo-blog-category-grid .oyo-blog-card-horizontal {
    min-height: 104px;
}
.bny-card-lg--sm,
.oyo-blog-card-lg--sm {
    height: 238px;
    min-height: 238px;
}
.bny-card-lg--sm .bny-card-lg__img,
.oyo-blog-card-lg--sm .oyo-blog-card-lg__img {
    height: 124px;
    aspect-ratio: auto;
}
.bny-card-lg--sm .bny-card-lg__body,
.oyo-blog-card-lg--sm .oyo-blog-card-lg__body {
    min-height: 0;
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.bny-card-lg--sm .bny-card-lg__title,
.oyo-blog-card-lg--sm .oyo-blog-card-lg__title {
    line-height: 1.22;
    margin-bottom: 6px;
    min-height: calc(1.22em * 2);
    -webkit-line-clamp: 2;
}
.bny-card-lg--sm .bny-card-lg__meta,
.oyo-blog-card-lg--sm .oyo-blog-card-lg__meta {
    margin-bottom: 5px;
    -webkit-line-clamp: 1;
}
.bny-card-lg--sm .bny-card-lg__excerpt,
.oyo-blog-card-lg--sm .oyo-blog-card-lg__excerpt {
    line-height: 1.32;
    -webkit-line-clamp: 1;
}

/* GRID: Lo más leído (3 columnas verticales) */
.bny-grid-3,
.oyo-blog-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Card vertical (img arriba + texto abajo) */
.bny-card-vert,
.oyo-blog-card-vertical {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(19, 44, 79, 0.08);
    transition: box-shadow .15s;
    background: #fff;
}
.bny-card-vert:hover,
.oyo-blog-card-vertical:hover { box-shadow: 0 8px 22px rgba(0,0,0,0.12); text-decoration: none; }
.bny-card-vert__img,
.oyo-blog-card-vertical__img {
    width: 100%; height: 148px;
    display: block;
    object-fit: cover;
}
.bny-card-vert__img[aria-hidden="true"],
.oyo-blog-card-vertical__img[aria-hidden="true"],
div.bny-card-vert__img,
div.oyo-blog-card-vertical__img {
    background: #d7dde8;
}
.bny-card-vert__body,
.oyo-blog-card-vertical__body { padding: 12px 14px 14px; }
.bny-card-vert__title,
.oyo-blog-card-vertical__title {
    font-family: 'Lato';
    font-style: normal;
    font-size: 15px;
    font-weight: 700;
    color: #243258;
    line-height: 1.18;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bny-card-vert__meta,
.oyo-blog-card-vertical__meta {
    font-family: 'Lato';
    font-style: normal;
    font-size: 12px;
    color: #909aaa;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* BOTÓN VER MÁS */
.bny-ver-mas,
.oyo-blog-more { text-align: center; margin-top: 50px; }
.bny-btn-more,
.oyo-blog-more__btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    min-width: 112px;
    min-height: 40px;
    background: #243258;
    border-radius: 8px;
    font-family: 'Lato';
    font-style: normal;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color .15s ease;
}
.bny-btn-more:hover,
.oyo-blog-more__btn:hover { background: #1d2846; color: #FFFFFF; text-decoration: none; }

/* CTA + Footer shared with /website */
.oyo-plans-cta {
    background: #243258;
}
.oyo-plans-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
}
.oyo-plans-cta-title {
    font-family: 'Lato';
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 auto 16px;
    max-width: 805px;
}
.oyo-plans-cta-subtitle {
    font-family: 'Lato';
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    max-width: 1024px;
    margin: 0 auto 40px;
    line-height: 1.5;
}
.oyo-plans-cta-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.oyo-plans-cta .oyo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    height: 40px;
    padding: 8px 24px;
    border-radius: 8px;
    font-family: 'Lato';
    font-size: 18px;
    line-height: normal;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.oyo-plans-cta .oyo-btn-primary {
    background: #4CB69B;
    color: #fff;
}
.oyo-plans-cta .oyo-btn-primary:hover { background: #6BE0C2; color: #fff; text-decoration: none; }
.oyo-plans-cta .oyo-btn-outline {
    background: #fff;
    color: #333333;
    border: 1px solid #46A7DE;
    gap: 8px;
}
.oyo-plans-cta .oyo-btn-outline:hover {
    background: #41A088;
    color: #fff;
    border-color: #41A088;
    text-decoration: none;
}
.oyo-plans-cta .oyo-btn-wa-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 350px;
}
.oyo-plans-cta .oyo-btn-wa-label {
    display: inline-block;
    font-family: 'Lato';
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}
.oyo-plans-cta .oyo-btn-wa-label:hover { color: #fff; }
.oyo-plans-cta .oyo-btn-wa-circle {
    background-color: #25D366;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

/* CTA dentro del artículo (detalle), encima de Compartir */
.oyo-plans-cta--post {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
}
.oyo-plans-cta--post .oyo-plans-cta-container {
    max-width: none;
    margin: 0;
    padding: 28px 20px 24px;
}
.oyo-plans-cta--post .oyo-plans-cta-title {
    font-size: clamp(20px, 2.4vw, 26px);
    margin-bottom: 12px;
    max-width: none;
}
.oyo-plans-cta--post .oyo-plans-cta-subtitle {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 24px;
    max-width: none;
}
.oyo-plans-cta--post .oyo-plans-cta-btns {
    gap: 14px;
}
.oyo-plans-cta--post .oyo-btn {
    max-width: 100%;
    font-size: 16px;
}
@media (min-width: 768px) {
    .oyo-plans-cta--post .oyo-plans-cta-container {
        padding: 32px 28px 28px;
    }
    .oyo-plans-cta--post .oyo-plans-cta-btns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* DISCLAIMER */
.bny-disclaimer { background: #4CB69B; padding: 24px 16px; }
.bny-disclaimer p {
    font-family: 'Lato';
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #243258;
    text-align: center;
    max-width: 1098px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .bny-grid-recent, .bny-grid-cat { grid-template-columns: 1fr; }
    .bny-card-lg { height: 280px; }
    .bny-card-lg--sm { height: 260px; }
    .bny-grid-3 { grid-template-columns: 1fr 1fr; }
    .bny-card-featured { height: auto; }
    .bny-card-featured__photo { min-height: 320px; }
    .oyo-plans-cta-title {
        font-size: 34px;
        line-height: 1.15;
    }
    .oyo-plans-cta-subtitle {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 32px;
    }
    .oyo-plans-cta + .bny-disclaimer + .oyo-footer .row > [class*="col-"]:last-child {
        padding-top: 0;
    }
}
@media (max-width: 575px) {
    .bny-cats__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
        max-width: 320px;
    }
    .bny-cat-pill {
        width: 100%;
        padding: 8px 14px;
        white-space: normal;
        text-align: center;
        min-height: 40px;
    }
    .bny-grid-2x2 { grid-template-columns: 1fr; }
    .bny-grid-3 { grid-template-columns: 1fr; }
    .bny-card-featured__photo { min-height: 240px; }
    .bny-card-featured__body { padding: 14px 16px 18px; }
    .bny-card-featured__title { font-size: 18px; }
    .oyo-plans-cta-container {
        padding: 42px 20px 40px;
    }
    .bny-card-sm {
        align-items: flex-start;
        min-height: 0;
    }
    .bny-card-sm__img {
        width: 98px;
        height: 76px;
    }
    .oyo-plans-cta-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 16px;
    }
    .oyo-plans-cta-subtitle {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 24px;
    }
    .oyo-plans-cta-btns {
        gap: 16px;
    }
    .oyo-plans-cta .oyo-btn-primary,
    .oyo-plans-cta .oyo-btn-outline {
        min-width: 0;
        width: 100%;
        max-width: 280px;
    }
    .bny-disclaimer p {
        font-size: 13px;
        line-height: 1.4;
    }
}
@media (min-width: 768px) {
    .oyo-plans-cta .oyo-btn {
        width: auto;
        max-width: none;
    }
    .oyo-plans-cta-btns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }
    .oyo-plans-cta .oyo-btn-wa-wrap {
        width: auto;
        max-width: none;
    }
}
@media (min-width: 992px) {
    .oyo-plans-cta-container {
        padding: 66px 96px 56px;
    }
    .oyo-plans-cta-title {
        font-size: 48px;
        line-height: 58px;
    }
    .oyo-plans-cta-subtitle {
        font-size: 22px;
        font-weight: 700;
        line-height: 29px;
    }
}

/* ========== blog-new/category (yo-25 + categoría) ========== */
/* Misma base que blog legacy: yo-25 asume otro header; evitamos demasiado padding superior. */
.blog-new-categoria.section-lista-categorias {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}
/* Tipografía alineada con blog-new/index (Lato), por encima de Raleway/Roboto de yo-25 */
.blog-new-categoria h1.section-name,
.blog-new-categoria .article .article-text h1,
.blog-new-categoria .article .article-text h6,
.blog-new-categoria .article .article-text p,
.blog-new-categoria .article-item .article-text h1,
.blog-new-categoria .article-item .article-text h6,
.blog-new-categoria .article-item-lista .article-text h1,
.blog-new-categoria .article-item-lista .article-text h6,
.blog-new-categoria .article-list .title h1,
.blog-new-categoria a.load-button {
    font-family: 'Lato', sans-serif;
}
.blog-new-categoria .bny-post-sidebar-col {
    margin-top: 0;
}
@media (max-width: 991.98px) {
    .blog-new-categoria .bny-post-sidebar-col {
        margin-top: 2rem;
    }
}
.blog-new-categoria a.load-button.is-busy {
    opacity: 0.65;
    pointer-events: none;
}
/* Pocas entradas: tarjeta destacada menos alta que los 540px fijos de yo-25 */
@media (min-width: 992px) {
    .blog-new-categoria--compact-hero .article {
        height: auto;
        overflow: visible;
    }
    .blog-new-categoria--compact-hero .article .article-img {
        height: clamp(200px, 32vw, 280px);
    }
}
@media (min-width: 1200px) {
    .blog-new-categoria--compact-hero .article {
        height: auto;
    }
    .blog-new-categoria--compact-hero .article .article-img {
        height: clamp(220px, 28vw, 300px);
    }
}
/* Barra "Explora por tema" */
.bny-cats,
.oyo-blog-topics {
    background: #4CB69B;
    padding: 40px 16px 38px;
}
.bny-cats__label,
.oyo-blog-topics__title {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 28px;
}
.bny-cats__list,
.oyo-blog-topics__list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 16px;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}
.bny-cat-pill,
.oyo-blog-topic-pill {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 24px;
    gap: 10px;
    background: #fff;
    border: 1px solid #46A7DE;
    color: #000;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    white-space: nowrap;
    box-shadow: none;
}
.bny-cat-pill:hover,
.oyo-blog-topic-pill:hover {
    background: #fdfefe;
    border-color: #46A7DE;
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(70, 167, 222, 0.12);
}
@media (max-width: 575px) {
    .bny-cats__list,
    .oyo-blog-topics__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
        max-width: 320px;
    }
    .bny-cat-pill,
    .oyo-blog-topic-pill {
        width: 100%;
        padding: 8px 14px;
        white-space: normal;
        text-align: center;
        min-height: 40px;
    }
}

/* ========== yo-25 footer fix (category) ========== */
footer.oyo-footer {
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
}
footer.oyo-footer .container.oyo-footer-inner,
footer.oyo-footer .oyo-footer-bottom .container.oyo-footer-inner {
    display: block;
    grid-template-columns: unset;
    grid-template-rows: unset;
    row-gap: unset;
    align-items: unset;
    text-align: unset;
}
@media screen and (max-width: 1023px) {
    footer.oyo-footer .container.oyo-footer-inner,
    footer.oyo-footer .oyo-footer-bottom .container.oyo-footer-inner {
        display: block;
        grid-template-columns: unset;
        grid-template-rows: unset;
        justify-items: unset;
    }
}
footer.oyo-footer .container a.oyo-btn {
    text-decoration: none;
}
footer.oyo-footer .container a.oyo-btn-primary {
    color: var(--color-white);
    background-color: var(--color-teal);
}
footer.oyo-footer .container a.oyo-btn-primary:hover {
    color: var(--color-white);
    background-color: var(--color-teal-light);
}
footer.oyo-footer .container a.oyo-btn-whatsapp {
    color: var(--color-white);
    background-color: #33e54c;
}
footer.oyo-footer .container a.oyo-btn-whatsapp:hover {
    color: var(--color-white);
    background-color: #28cc41;
}
footer.oyo-footer .container .oyo-footer-links a {
    color: var(--color-dark);
    text-decoration: none;
}
footer.oyo-footer .container .oyo-footer-links a:hover {
    color: var(--color-blue);
}
footer.oyo-footer .container .oyo-footer-legal a {
    color: var(--color-white);
    text-decoration: underline;
}
footer.oyo-footer .container .oyo-footer-legal a:hover {
    color: var(--color-blue);
}
footer.oyo-footer .container .oyo-social-icons a {
    color: inherit;
    text-decoration: none;
}

/* ========== blog-new/show (layout + explora + sidebar list) ========== */
html, body {
    background: #fff !important;
}
.section-article.section-article--post {
    background: #fff;
    padding-top: 0;
    padding-bottom: 48px;
    overflow-x: hidden;
}
.section-article--post .bny-post-container {
    max-width: 1140px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}
.section-article--post .bny-post__hero {
    margin-top: 0;
}
.section-article--post .bny-post__content-row {
    margin-top: 0;
    --bs-gutter-x: 1.75rem;
}
@media (min-width: 992px) {
    .section-article--post .bny-post__content-row {
        --bs-gutter-x: 3rem;
    }
}
.section-article--post .bny-post-col,
.section-article--post .bny-post-sidebar-col {
    padding-top: 0;
}
.section-article--post .bny-post-col .article.bny-post {
    margin-top: 0;
    padding-top: 0;
}
.section-article--post .bny-post-sidebar-col {
    margin-top: 0;
}
@media (max-width: 991.98px) {
    .section-article--post .bny-post__content-row {
        --bs-gutter-y: 2rem;
    }
    .section-article--post .bny-post-sidebar-col {
        margin-top: 2rem;
        padding-top: 0;
    }
}
@media (min-width: 992px) {
    .section-article--post .bny-post-sidebar-col {
        padding-top: 0;
    }
}

/* Anular tarjeta fija de yo-25 (.article { height: 420px; border-radius: 20px }) */
.article.bny-post.article--post {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    -webkit-transform: none !important;
    background: transparent !important;
}
.article.bny-post.article--post:hover {
    transform: none !important;
    -webkit-transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

/* Hero: imagen + franja verde edge-to-edge; texto en .container */
.bny-post__hero {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    background: #4CB69B;
}
.bny-post__hero .bny-post__media {
    margin: 0;
    line-height: 0;
}
.bny-post__hero .bny-post__media-img {
    display: block;
    width: 100%;
    height: clamp(260px, 38vw, 480px);
    max-height: none;
    object-fit: cover;
    object-position: center center;
}
.bny-post__hero .bny-post__headline {
    background: #4CB69B;
    padding: 0;
}
.bny-post__hero .bny-post__headline-inner {
    padding-top: 20px;
    padding-bottom: 28px;
}
.bny-post__hero .bny-post__categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
}
.bny-post__hero .bny-post__category {
    display: inline-block;
    margin: 0;
    padding: 7px 18px;
    border-radius: 999px;
    background: #fff;
    color: #262626;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}
a.bny-post__category:hover {
    color: #262626;
    text-decoration: none;
    opacity: 0.92;
}
.bny-post__hero .bny-post__title,
.article.bny-post .bny-post__title {
    margin: 0 !important;
    padding: 0 !important;
    color: #fff !important;
    font-family: 'Lato', sans-serif !important;
    font-size: clamp(22px, 3.2vw, 34px) !important;
    font-weight: 700 !important;
    line-height: 1.28 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
}
@media (min-width: 768px) {
    .bny-post__hero .bny-post__headline-inner {
        padding-top: 24px;
        padding-bottom: 32px;
    }
    .bny-post__hero .bny-post__title,
    .article.bny-post .bny-post__title {
        font-size: clamp(26px, 2.8vw, 36px) !important;
        line-height: 1.22 !important;
        max-width: 52rem;
    }
}

/* Franja blanca bajo el título: autor | fecha */
.bny-post__meta-bar {
    width: 100%;
    background: #fff;
}
.bny-post__meta-inner {
    padding: 18px 0 20px;
}
.bny-post__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    padding: 0;
    margin: 0;
    border: none;
}
.bny-post__author {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.bny-post__author-text {
    flex: 1 1 auto;
    min-width: 0;
}
.bny-post__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    overflow: hidden;
}
.bny-post__avatar--photo {
    display: block;
    object-fit: cover;
    object-position: center;
    border: 2px solid #76C5B4;
    background: #fff;
}
.bny-post__avatar--brand {
    display: block;
    box-sizing: border-box;
    padding: 6px;
    object-fit: contain;
    object-position: center;
    border: 2px solid #76C5B4;
    background: #fff;
}
.bny-post__author--brand .bny-post__author-name {
    color: #2D9C5E;
}
.bny-post__author-name {
    margin: 0;
    color: #243258;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.bny-post__author-name a {
    color: #2D9C5E;
    font-weight: 700;
    text-decoration: none;
}
.bny-post__author-name a:hover {
    color: #268a52;
}
.bny-post__author-role {
    margin: 2px 0 0;
    color: #6b7280;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}
.bny-post__meta-divider {
    flex-shrink: 0;
    width: 1px;
    height: 40px;
    background: #d1d5db;
}
.bny-post__date {
    color: #4b5563;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .bny-post__meta-inner {
        padding-top: 16px;
        padding-bottom: 18px;
    }
    .bny-post__meta {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 6px;
        align-items: start;
    }
    .bny-post__author {
        display: contents;
    }
    .bny-post__avatar,
    .bny-post__avatar--photo,
    .bny-post__avatar--brand {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
    }
    .bny-post__author--brand .bny-post__avatar--brand {
        grid-row: 1 / span 2;
    }
    .bny-post__author-text {
        grid-column: 2;
        grid-row: 1;
    }
    .bny-post__meta-divider {
        display: none;
    }
    .bny-post__date {
        grid-column: 2;
        grid-row: 2;
        width: auto;
        padding-left: 0;
        white-space: normal;
        font-size: 14px;
    }
}

/* Cuerpo y compartir */
.bny-post__body.article-text {
    padding: 0;
    margin: 0;
}
.bny-post__body.article-text > :first-child {
    margin-top: 0 !important;
}
.bny-post__body.article-text > p:first-child,
.bny-post__body.article-text > div:first-child > p:first-child {
    margin-top: 0;
}
.article--post .article-text p,
.bny-post__body.article-text p {
    color: #4A4A4A;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 1rem;
}
.article--post .article-text p:last-child {
    margin-bottom: 0;
}
.article--post .article-text img,
.bny-post__body.article-text img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}
.bny-post__share.article-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0 0;
    margin: 0;
    border: none;
}
.bny-post__share.article-info .article-social {
    justify-content: flex-start;
}
.bny-post .article-legal-notice {
    margin: 32px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Índice del artículo (set Bard / Statamic) — tokens Figma */
.bny-post__body.article-text .bny-post-indice,
.article--post .article-text .bny-post-indice {
    --bny-indice-bg: #F7F5E1;
    --bny-indice-title: #1A1A1A;
    --bny-indice-text: #334155;
    --bny-indice-badge: #5BB09B;
    box-sizing: border-box;
    margin: 1.75rem 0;
    padding: 28px 32px;
    border: none;
    border-radius: 20px;
    background: var(--bny-indice-bg) !important;
    font-family: 'Lato', sans-serif;
}
.bny-post__body.article-text .bny-post-indice__title,
.article--post .article-text .bny-post-indice__title {
    margin: 0 0 20px;
    padding: 0;
    color: var(--bny-indice-title) !important;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
}
.bny-post__body.article-text .bny-post-indice__list,
.article--post .article-text .bny-post-indice__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: bny-indice;
}
.bny-post__body.article-text .bny-post-indice__item,
.article--post .article-text .bny-post-indice__item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 12px;
    padding: 0;
    counter-increment: bny-indice;
}
.bny-post__body.article-text .bny-post-indice__item:last-child,
.article--post .article-text .bny-post-indice__item:last-child {
    margin-bottom: 0;
}
.bny-post__body.article-text .bny-post-indice__item::before,
.article--post .article-text .bny-post-indice__item::before {
    content: counter(bny-indice);
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bny-indice-badge);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 34px;
    text-align: center;
}
.bny-post__body.article-text .bny-post-indice__link,
.article--post .article-text .bny-post-indice__link {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    color: var(--bny-indice-text) !important;
    font-weight: 400;
    text-decoration: none !important;
}
.bny-post__body.article-text .bny-post-indice__link:hover,
.article--post .article-text .bny-post-indice__link:hover {
    color: var(--bny-indice-text) !important;
    text-decoration: underline !important;
}
.bny-post__body.article-text .bny-post-indice__text,
.article--post .article-text .bny-post-indice__text {
    flex: 1;
    min-width: 0;
    padding: 0;
    color: var(--bny-indice-text) !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.bny-post__body.article-text .bny-post-indice__item:not(:has(.bny-post-indice__link)) .bny-post-indice__text,
.article--post .article-text .bny-post-indice__item:not(:has(.bny-post-indice__link)) .bny-post-indice__text {
    flex: 1;
}

/* CTA “Llamada a la acción” dentro del artículo (set Bard / Statamic) */
.bny-post__body.article-text .bny-post-cta {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 28px 0;
    font-family: 'Lato', sans-serif;
}
.bny-post__body.article-text .bny-post-cta__inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #4CB69B;
    border-radius: 16px;
    background: #fff;
    padding: 28px 20px 24px;
    text-align: center;
}
.bny-post__body.article-text .bny-post-cta__title,
.bny-post__body.article-text .bny-post-cta__text {
    width: 100%;
    margin: 0 !important;
    padding: 0;
    text-align: center !important;
    color: #243258;
    font-family: 'Lato', sans-serif;
}
.bny-post__body.article-text .bny-post-cta__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}
.bny-post__body.article-text .bny-post-cta__text {
    margin-top: 12px !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
}
.bny-post__body.article-text .bny-post-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 18px 0 0;
    min-height: 46px;
    min-width: 168px;
    padding: 11px 36px;
    border: none;
    border-radius: 10px;
    background: #4CB69B;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.bny-post__body.article-text .bny-post-cta__btn:hover {
    background: #45a88d;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Botón suelto (set Bard “Botón”) — mismo estilo que CTA */
.bny-post__body.article-text .bny-post-btn-wrap {
    box-sizing: border-box;
    width: 100%;
    margin: 24px 0;
    font-family: 'Lato', sans-serif;
}
.bny-post__body.article-text .bny-post-btn-wrap--left {
    text-align: left;
}
.bny-post__body.article-text .bny-post-btn-wrap--center {
    text-align: center;
}
.bny-post__body.article-text .bny-post-btn-wrap--right {
    text-align: right;
}
.bny-post__body.article-text .bny-post-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 168px;
    padding: 11px 36px;
    border: none;
    border-radius: 10px;
    background: #4CB69B;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.bny-post__body.article-text .bny-post-btn:hover {
    background: #45a88d;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Barra "Explora por tema" (mismo bloque visual que blog-new/index) */
.bny-cats,
.oyo-blog-topics {
    background: #4CB69B;
    padding: 40px 16px 38px;
}
.bny-cats__label,
.oyo-blog-topics__title {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 28px;
}
.bny-cats__list,
.oyo-blog-topics__list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 16px;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}
.bny-cat-pill,
.oyo-blog-topic-pill {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 24px;
    gap: 10px;
    background: #fff;
    border: 1px solid #46A7DE;
    color: #000;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    white-space: nowrap;
    box-shadow: none;
}
.bny-cat-pill:hover,
.oyo-blog-topic-pill:hover {
    background: #fdfefe;
    border-color: #46A7DE;
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(70, 167, 222, 0.12);
}
@media (max-width: 575px) {
    .bny-cats__list,
    .oyo-blog-topics__list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
        max-width: 320px;
    }
    .bny-cat-pill,
    .oyo-blog-topic-pill {
        width: 100%;
        padding: 8px 14px;
        white-space: normal;
        text-align: center;
        min-height: 40px;
    }
}
/* yo-25 fuerza .container a % fijos; restaurar ancho del bloque del artículo */
.section-article.section-article--post > .container,
.section-article.section-article--post > .container.bny-post-container {
    width: 100% !important;
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
/* Sidebar cards (antes en yo-25.css) */
.section-article--post .article-list {
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 10px 0 20px;
    margin-bottom: 20px;
}
.section-article--post .article-list .title {
    width: 100%;
    padding: 0;
    margin: 0;
}
.section-article--post .article-list .title hr {
    width: 100%;
    height: 2px;
    margin: 0;
    padding: 0;
    border: none;
    background: linear-gradient(to right, #2dafe6, #2bad70);
}
.section-article--post .article-list .title h2 {
    color: #2dafe6;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 20px;
    text-align: left;
    padding: 10px 20px;
    margin: 0;
}

/* Sidebar "Lo más leído": yo-25 usa float (%); flex para span + h3 */
.section-article--post .article-list > a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.section-article--post .article-list > a:hover .article-text h3 {
    color: #2dafe6;
}
.section-article--post .article-list .article-item-col {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 72px;
    padding: 12px 16px !important;
    margin: 0 !important;
    float: none !important;
    clear: both !important;
    overflow: visible !important;
    box-sizing: border-box;
}
.section-article--post .article-list .article-item-col .article-pos,
.section-article--post .article-list .article-item-col .article-img,
.section-article--post .article-list .article-item-col .article-text {
    float: none !important;
    height: auto !important;
    margin: 0 !important;
}
.section-article--post .article-list .article-item-col .article-pos {
    flex: 0 0 32px;
    width: 32px !important;
    text-align: center;
}
.section-article--post .article-list .article-item-col .article-pos .article-pos-num {
    display: block;
    color: #262626;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1;
    text-align: center;
    margin: 0;
    padding: 0;
}
.section-article--post .article-list .article-item-col .article-img {
    flex: 0 0 72px;
    width: 72px !important;
    height: 52px !important;
    border-radius: 8px;
}
.section-article--post .article-list .article-item-col .article-text {
    flex: 1 1 auto;
    width: auto !important;
    min-width: 0;
    display: flex;
    align-items: center;
}
.section-article--post .article-list .article-item-col .article-text h3 {
    color: #262626;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media (min-width: 768px) {
    .section-article--post .article-list .article-item-col .article-text h3 {
        font-size: 12px;
    }
}
/* Chrome layout 2026: nav hereda Lato del tema */
header.oyo-header,
header.oyo-header a,
header.oyo-header .oyo-btn,
aside.oyo-sidebar,
aside.oyo-sidebar a,
aside.oyo-sidebar button {
    font-family: var(--font-base), sans-serif;
}
/* yo-25 footer genérico rompe .oyo-footer (grid + color de enlaces) */
footer.oyo-footer,
footer.oyo-footer a {
    font-family: var(--font-base), sans-serif;
}
footer.oyo-footer {
    padding: 0;
    background-color: transparent;
    color: inherit;
}
footer.oyo-footer .oyo-footer-body .container,
footer.oyo-footer .oyo-footer-bottom .container {
    display: block !important;
    row-gap: unset;
    grid-template-columns: unset;
    grid-template-rows: unset;
    align-items: stretch;
    width: 100% !important;
}
footer.oyo-footer .oyo-footer-links a {
    color: var(--color-dark);
    text-decoration: none;
}
footer.oyo-footer .oyo-footer-links a:hover {
    color: var(--color-blue);
}
footer.oyo-footer a.oyo-btn-primary,
footer.oyo-footer a.oyo-btn-primary:hover {
    color: var(--color-white);
}
footer.oyo-footer a.oyo-btn-whatsapp,
footer.oyo-footer a.oyo-btn-whatsapp:hover {
    color: var(--color-white);
}
footer.oyo-footer .oyo-footer-legal a {
    color: var(--color-white);
    text-decoration: underline;
}
footer.oyo-footer .oyo-footer-legal a:hover {
    color: var(--color-blue);
}

.article.article--post:not(.bny-post) {
    height: auto !important;
    overflow: visible !important;
    padding-bottom: 60px;
}
@media (max-width: 991.98px) {
    .article.article--post:not(.bny-post) {
        padding-bottom: 52px;
    }
}
.article.article--post:not(.bny-post):hover {
    transform: none !important;
    -webkit-transform: none !important;
    opacity: 1 !important;
    box-shadow: 0 0 5px rgba(0,0,0,.05) !important;
}
.article .article-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 20px 10px 20px;
    border-bottom: none !important;
}
@media (max-width: 767.98px) {
    .article .article-info {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .article .article-info .article-date {
        width: 100%;
        min-width: 0;
    }
    .article .article-info .article-date time {
        display: block;
        line-height: 1.35;
    }
    .article .article-info .article-social {
        justify-content: flex-start;
        flex-wrap: wrap;
        row-gap: 8px;
    }
}
.article .article-info .article-date time {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #9aa0a6;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article .article-info .article-social {
    display: flex;
    align-items: center;
    gap: 6px;
}
.article .article-info .article-social .share-label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #5f6468;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 2px;
}
.article .article-info .article-social a.social {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.twitter-social{ background: #2dafe6; }
.facebook-social{ background: #0049a0; }
.mail-social{ background: #ff9945; }
.whatsapp-social{ background: #20a861; }
.article .article-info .article-social a.share {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #9aa0a6;
    text-decoration: none;
    margin-left: 6px;
}
.article.article--post .article-divider{
    height: 1px;
    background: rgba(0,0,0,.1);
    margin: 0 20px 0 20px;
}

.section-article.section-article--post > .container.bny-post-container {
    max-width: 1140px;
}

.article.article--post .article-text .article-author{
    color: #2bad70;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    padding: 0;
    margin: 18px 0 26px 0 !important;
}
.bny-post__body.article-text > .article-author:first-child {
    margin-top: 0 !important;
}
.bny-post__body.article-text > :is(div, section, aside):first-child:empty {
    display: none;
}
.section-article--post + .section-categorias {
    margin-top: 0;
}
/* Sidebar "Lo más leído": números (span) y h3 — parche arriba; yo-25 usa h1 */

/* Título legacy (solo si no usa .bny-post__title) */
.section-article--post .article.article--post:not(.bny-post) > .article-text:first-child h1 {
    color: #262626;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
    padding: 0;
    margin: 0 0 5px 0;
}
@media (min-width: 992px) {
    .section-article--post .article.article--post:not(.bny-post) > .article-text:first-child h1 {
        font-size: 26px;
    }
}

/* Enlaces en el cuerpo (Figma: verde, negrita, sin subrayado) */
.article--post .article-text a:not(.btn):not(.bny-post-cta__btn):not(.bny-post-btn):not(.bny-post-indice__link),
.bny-post__body.article-text a:not(.btn):not(.bny-post-cta__btn):not(.bny-post-btn):not(.bny-post-indice__link) {
    color: #2D9C5E !important;
    font-weight: 700;
    text-decoration: none !important;
}
.article--post .article-text a:not(.btn):not(.bny-post-cta__btn):not(.bny-post-btn):not(.bny-post-indice__link):hover,
.bny-post__body.article-text a:not(.btn):not(.bny-post-cta__btn):not(.bny-post-btn):not(.bny-post-indice__link):hover {
    color: #268a52 !important;
    text-decoration: none !important;
}
.article--post .article-text a:not(.btn):not(.bny-post-cta__btn):not(.bny-post-btn):not(.bny-post-indice__link):visited,
.bny-post__body.article-text a:not(.btn):not(.bny-post-cta__btn):not(.bny-post-btn):not(.bny-post-indice__link):visited {
    color: #2D9C5E !important;
}

/* Headings en contenido (Figma: navy #1D3557) */
.article--post .article-text h2,
.article--post .article-text h3,
.article--post .article-text h4,
.article--post .article-text h5,
.article--post .article-text h6,
.bny-post__body.article-text h2,
.bny-post__body.article-text h3,
.bny-post__body.article-text h4,
.bny-post__body.article-text h5,
.bny-post__body.article-text h6 {
    font-family: 'Lato', sans-serif;
    letter-spacing: 0;
    margin: 26px 0 12px 0;
    line-height: 1.25;
    color: #1D3557;
}
.article--post .article-text h2,
.bny-post__body.article-text h2 {
    font-weight: 700;
    font-size: clamp(24px, 2.2vw, 28px);
    line-height: 1.2;
    margin-top: 32px;
    margin-bottom: 14px;
}
.article--post .article-text h3,
.bny-post__body.article-text h3 {
    font-weight: 700;
    font-size: clamp(20px, 1.8vw, 22px);
    line-height: 1.25;
    margin-top: 28px;
    margin-bottom: 12px;
}
.article--post .article-text h4,
.bny-post__body.article-text h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
}
.article--post .article-text h5,
.article--post .article-text h6,
.bny-post__body.article-text h5,
.bny-post__body.article-text h6 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
}
.article--post .article-text > :is(h2,h3,h4,h5,h6):first-child,
.bny-post__body.article-text > :is(h2,h3,h4,h5,h6):first-child {
    margin-top: 6px;
}

/* Citas / callout (Figma: borde teal claro, esquinas redondeadas) */
.article--post .article-text blockquote,
.bny-post__body.article-text blockquote {
    margin: 1.5rem 0;
    padding: 24px 28px;
    border: 1px solid #76C5B4;
    border-radius: 14px;
    background: #fff;
    font-style: italic;
    color: #4A4A4A;
}
.article--post .article-text blockquote p,
.bny-post__body.article-text blockquote p {
    margin: 0 0 0.75rem;
    color: inherit;
    font-style: italic;
}
.article--post .article-text blockquote p:last-child,
.bny-post__body.article-text blockquote p:last-child {
    margin-bottom: 0;
}
.article--post .article-text blockquote :is(strong, b),
.bny-post__body.article-text blockquote :is(strong, b) {
    font-weight: 700;
    font-style: normal;
}

/* Bard lists: el sitio global quita list-style con `ul { list-style: none; }` */
.article--post .article-text ul {
    list-style: disc !important;
    padding-left: 1.6rem;
    margin: 0 0 1rem 0;
}
.article--post .article-text ol {
    list-style: decimal !important;
    padding-left: 1.6rem;
    margin: 0 0 1rem 0;
}
.article--post .article-text li,
.bny-post__body.article-text li {
    display: list-item;
    color: #4A4A4A;
}

/* Bard tables */
.article--post .article-text table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin: 0 0 1rem 0;
}
.article--post .article-text th,
.article--post .article-text td {
    border: 1px solid rgba(0,0,0,0.15);
    padding: 10px 12px;
    vertical-align: top;
    word-break: break-word;
}

/* FAQ (set Bard): mismo marco que CTA — borde teal, fondo blanco */
.article--post .oyo-faq.bny-post-faq,
.bny-post__body.article-text .oyo-faq.bny-post-faq {
    box-sizing: border-box;
    width: 100%;
    margin: 28px 0;
    padding: 24px 16px 12px;
    border: 1px solid #4CB69B;
    border-radius: 16px;
    background: #fff;
    font-family: 'Lato', sans-serif;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-title,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-title {
    margin: 0 0 14px;
    padding: 0 4px 14px;
    border-bottom: 1px solid rgba(36, 50, 88, 0.12);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 4.5vw, 26px);
    line-height: 1.2;
    letter-spacing: 0;
    color: #243258;
    text-align: center;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-list,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0 0 12px;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-item,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-item {
    border: 1px solid rgba(76, 182, 155, 0.35);
    border-radius: 10px;
    background: #f7fbf9;
    margin: 0;
    box-shadow: none;
    overflow: hidden;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-summary,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 14px 16px;
    margin: 0;
    font: inherit;
    background: #f0f7f4;
    transition: background-color 0.18s ease, box-shadow 0.18s ease;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-summary::-webkit-details-marker,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-summary::-webkit-details-marker {
    display: none;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-summary:hover,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-summary:hover {
    background: #e6f2ed;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-item[open] > .oyo-faq-summary,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-item[open] > .oyo-faq-summary {
    background: #dff0ea;
    box-shadow: inset 0 -1px 0 rgba(36, 50, 88, 0.08);
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-summary:focus-visible,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-summary:focus-visible {
    outline: 2px solid #4CB69B;
    outline-offset: 2px;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-q,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-q {
    flex: 1 1 auto;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    color: #243258;
    text-align: left;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-item[open] > .oyo-faq-summary .oyo-faq-q,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-item[open] > .oyo-faq-summary .oyo-faq-q {
    color: #1D3557;
}
/* Icono expandir: círculo con borde + chevron SVG (contraste alto) */
.article--post .oyo-faq.bny-post-faq .oyo-faq-summary::after,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-summary::after {
    content: '';
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin-top: 0;
    border: none;
    border-radius: 50%;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='%23243758' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    box-shadow: inset 0 0 0 1.5px #4CB69B;
    transform: none;
    transition: transform 0.25s ease, background-color 0.18s ease;
    opacity: 1;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-item[open] > .oyo-faq-summary::after,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-item[open] > .oyo-faq-summary::after {
    transform: rotate(180deg);
    background-color: #4CB69B;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    margin-top: 0;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-a,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease;
    opacity: 0;
    border-top: 1px solid rgba(76, 182, 155, 0.25);
    background: #fff;
}
.article--post .oyo-faq.bny-post-faq details[open].oyo-faq-item > .oyo-faq-a,
.bny-post__body.article-text .oyo-faq.bny-post-faq details[open].oyo-faq-item > .oyo-faq-a {
    grid-template-rows: 1fr;
    opacity: 1;
}
.article--post .oyo-faq.bny-post-faq .oyo-faq-a__inner,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a__inner {
    overflow: hidden;
    padding: 0 18px 18px;
}
.article--post .oyo-faq.bny-post-faq .article-text .oyo-faq-a p,
.article--post .article-text .oyo-faq.bny-post-faq .oyo-faq-a p,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a p {
    margin: 14px 0 0.55rem 0;
    color: #243258;
}
.article--post .oyo-faq.bny-post-faq .article-text .oyo-faq-a p:first-child,
.article--post .article-text .oyo-faq.bny-post-faq .oyo-faq-a p:first-child,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a p:first-child {
    margin-top: 14px;
}
.article--post .oyo-faq.bny-post-faq .article-text .oyo-faq-a p:last-child,
.article--post .article-text .oyo-faq.bny-post-faq .oyo-faq-a p:last-child,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a p:last-child {
    margin-bottom: 0;
}
.article--post .oyo-faq.bny-post-faq .article-text .oyo-faq-a :is(ul, ol),
.article--post .article-text .oyo-faq.bny-post-faq .oyo-faq-a :is(ul, ol),
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a :is(ul, ol) {
    margin: 0.4rem 0 0.5rem 1.25rem;
}
.article--post .oyo-faq.bny-post-faq .article-text .oyo-faq-a li,
.article--post .article-text .oyo-faq.bny-post-faq .oyo-faq-a li,
.bny-post__body.article-text .oyo-faq.bny-post-faq .oyo-faq-a li {
    margin: 0.28rem 0;
}

/* Aviso legal al pie: menos aire que el antiguo mt-4; padding simétrico (evita “hueco” abajo) */
.article--post .article-legal-notice {
    margin: 0.75rem 20px 0;
    padding: 14px 16px;
    background: #e8e8e8;
    border-radius: 16px;
    color: #5a5a5a;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
    box-sizing: border-box;
}
.article--post .article-legal-notice p {
    margin: 0;
}
@media (min-width: 992px) {
    .article--post .article-legal-notice {
        margin-top: 1rem;
    }
}

/* ========== blog-new/show: sidebar, compartir, nota, CTA test ========== */
.bny-post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: 'Lato', sans-serif;
}
.bny-post-sidebar__card {
    box-sizing: border-box;
    border: 1px solid #4CB69B;
    border-radius: 16px;
    background: #fff;
    padding: 22px 20px;
}
.bny-post-sidebar__card--promo {
    padding: 14px 14px 20px;
    overflow: visible;
}
.bny-post-sidebar__promo-media {
    position: relative;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
}
.bny-post-sidebar__promo-img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    filter: none;
    opacity: 1;
}
.bny-post-sidebar__promo-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    margin: 0;
    padding: 0;
    max-width: 11rem;
    color: #fff !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: 0;
    text-align: left;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.bny-post-sidebar__promo-body {
    padding: 16px 8px 6px;
    text-align: center;
}
.bny-post-sidebar__promo-text {
    margin: 0 auto 16px;
    max-width: 23rem;
    color: #243258;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0;
}
.bny-post-sidebar__promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    min-width: 168px;
    padding: 11px 36px;
    border: none;
    border-radius: 10px;
    background: #4CB69B;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.bny-post-sidebar__promo-btn:hover {
    background: #45a88d;
    color: #fff !important;
    transform: translateY(-1px);
}
.bny-post-sidebar__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    max-width: 220px;
    padding: 10px 32px;
    border-radius: 8px;
    background: #4CB69B;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.bny-post-sidebar__cta-btn:hover {
    background: #45a88d;
    color: #fff !important;
    transform: translateY(-1px);
}
.bny-post-sidebar__card--popular {
    padding: 16px 14px 18px;
}
.bny-post-sidebar__card-title {
    margin: 0 0 12px;
    padding: 0;
    color: #1a365d;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0;
    text-align: left;
}
/* Evita que Bootstrap (h2 ≈ 2rem) o estilos globales agranden títulos del lateral */
.bny-post-sidebar h2.bny-post-sidebar__card-title {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #1a365d;
    margin: 0 0 12px;
}
.bny-post-sidebar__card-title--light {
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
}
.bny-post-sidebar__popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bny-post-sidebar__popular-item {
    margin: 0;
    padding: 0;
}
.bny-post-sidebar__popular-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none !important;
    color: inherit;
}
.bny-post-sidebar__popular-link:hover .bny-post-sidebar__popular-title {
    color: #1a8fbb;
}
.bny-post-sidebar__popular-thumb {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}
.bny-post-sidebar__popular-thumb--empty {
    background: #d7dde8;
}
.bny-post-sidebar__popular-text {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 1px;
}
.bny-post-sidebar__popular-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #243258;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0;
}
.bny-post-sidebar__popular-meta {
    color: #6b7280;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bny-post-sidebar__card--categories {
    border: none;
    background: #4CB69B;
    padding: 24px 18px 22px;
}
.bny-post-sidebar__categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}
.bny-post-sidebar__category-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff;
    color: #262626 !important;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.bny-post-sidebar__category-pill:hover {
    background: #f8fffc;
    color: #262626 !important;
    transform: translateY(-1px);
}

.bny-post__share-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-top: 32px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
}
.bny-post__share-label {
    flex: 0 0 auto;
    color: #243258;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}
.bny-post__share-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.bny-post__share-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.bny-post__share-pill:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.bny-post__share-pill--facebook {
    background: #e8f0fe;
    color: #1877f2 !important;
}
.bny-post__share-pill--twitter {
    background: #e8f4fc;
    color: #1da1f2 !important;
}
.bny-post__share-pill--whatsapp {
    background: #e8f8ef;
    color: #25d366 !important;
}
.bny-post__share-pill--linkedin {
    background: #e8f0fe;
    color: #0a66c2 !important;
}

.bny-post__notice {
    margin-top: 24px;
    margin-bottom: 0;
    padding: 24px 28px;
    border: none;
    border-radius: 16px;
    background: #F7F5E1;
    box-sizing: border-box;
}
@media (max-width: 991.98px) {
    .bny-post__notice {
        margin-bottom: 4px;
    }
    .bny-post__body.article-text .bny-post-indice,
    .article--post .article-text .bny-post-indice {
        padding: 20px 18px;
    }
    .bny-post__notice,
    .bny-post__share-box,
    .oyo-plans-cta--post {
        max-width: 100%;
    }
}
@media (max-width: 575.98px) {
    .bny-post__notice {
        padding: 18px 16px;
    }
    .bny-post__share-box {
        padding: 16px;
    }
}
.bny-post__notice__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 0;
    color: #1D3557;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}
.bny-post__notice__icon {
    flex: 0 0 auto;
    font-size: 18px;
    line-height: 1;
}
.bny-post__notice__heading strong {
    color: #1D3557;
    font-weight: 700;
}
.bny-post__notice__text {
    margin: 0;
    padding: 0;
    color: #1D3557;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    text-align: left;
}

.bny-post-test-cta {
    width: 100%;
    min-height: 336px;
    background: #4cb69b;
    padding: 48px 16px 56px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bny-post-test-cta__inner {
    width: 100%;
    max-width: 1161px;
    margin: 0 auto;
    text-align: center;
}
.bny-post-test-cta__title {
    margin: 0 auto 24px;
    padding: 0;
    max-width: 1071px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: clamp(26px, 4.2vw, 48px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.21;
    letter-spacing: 0;
    text-align: center;
}
.bny-post-test-cta__text {
    margin: 0 auto 32px;
    max-width: 1161px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: clamp(17px, 2.2vw, 24px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.21;
    letter-spacing: 0;
    text-align: center;
    opacity: 1;
}
@media (min-width: 992px) {
    .bny-post-test-cta {
        padding: 69px 24px 64px;
    }
    .bny-post-test-cta__title {
        font-size: 48px;
        line-height: 58px;
    }
    .bny-post-test-cta__text {
        font-size: 24px;
        line-height: 29px;
    }
}
.bny-post-test-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    border-radius: 10px;
    background: #243258;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
    transition: background-color 0.15s ease, transform 0.15s ease;
}
.bny-post-test-cta__btn:hover {
    background: #1c2847;
    color: #fff !important;
    transform: translateY(-1px);
}

.bny-post-related {
    --bny-related-card-border: #4CB69B;
    --bny-related-pill-border: #46A7DE;
    background: #243258;
    padding: 48px 16px 56px;
    border-top: 4px solid var(--bny-related-card-border);
    box-sizing: border-box;
}
.bny-post-related__inner {
    max-width: 1140px;
}
.bny-post-related__title {
    margin: 0 0 32px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}
.bny-post-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.bny-post-related__card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border: 1px solid var(--bny-related-card-border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none !important;
    box-shadow: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.bny-post-related__card:hover {
    transform: translateY(-3px);
    border-color: var(--bny-related-card-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    text-decoration: none !important;
}
.bny-post-related__img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.bny-post-related__img--empty {
    background: #d7dde8;
}
.bny-post-related__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 22px;
    text-align: center;
}
.bny-post-related__pill {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 40px;
    padding: 8px 24px;
    gap: 10px;
    border: 1px solid var(--bny-related-pill-border);
    border-radius: 8px;
    background: #fff;
    color: #1D3557;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    text-transform: none;
}
.bny-post-related__card-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #1D3557;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .bny-post-related__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .bny-post__share-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .bny-post-sidebar__categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== yo-25 footer fix (show) ========== */
footer.oyo-footer {
    padding: 0;
    margin: 0;
    background: transparent;
    color: inherit;
}
footer.oyo-footer .container.oyo-footer-inner,
footer.oyo-footer .oyo-footer-bottom .container.oyo-footer-inner {
    display: block;
    grid-template-columns: unset;
    grid-template-rows: unset;
    row-gap: unset;
    align-items: unset;
    text-align: unset;
}
@media screen and (max-width: 1023px) {
    footer.oyo-footer .container.oyo-footer-inner,
    footer.oyo-footer .oyo-footer-bottom .container.oyo-footer-inner {
        display: block;
        grid-template-columns: unset;
        grid-template-rows: unset;
        justify-items: unset;
    }
}
footer.oyo-footer .container a.oyo-btn {
    text-decoration: none;
}
footer.oyo-footer .container a.oyo-btn-primary {
    color: var(--color-white);
    background-color: var(--color-teal);
}
footer.oyo-footer .container a.oyo-btn-primary:hover {
    color: var(--color-white);
    background-color: var(--color-teal-light);
}
footer.oyo-footer .container a.oyo-btn-whatsapp {
    color: var(--color-white);
    background-color: #33e54c;
}
footer.oyo-footer .container a.oyo-btn-whatsapp:hover {
    color: var(--color-white);
    background-color: #28cc41;
}
footer.oyo-footer .container .oyo-footer-links a {
    color: var(--color-dark);
    text-decoration: none;
}
footer.oyo-footer .container .oyo-footer-links a:hover {
    color: var(--color-blue);
}
footer.oyo-footer .container .oyo-footer-legal a {
    color: var(--color-white);
    text-decoration: underline;
}
footer.oyo-footer .container .oyo-footer-legal a:hover {
    color: var(--color-blue);
}
footer.oyo-footer .container .oyo-social-icons a {
    color: inherit;
    text-decoration: none;
}
