/*#region My Customs*/
a {
    color: inherit;
    text-decoration: inherit
}

    a:hover, a:active {
        
    }


body {
    /*background-color: #F8F4EC;*/
    background-color: #fafafe;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.1'/%3E%3C/svg%3E");
}

/*#endregion My Customs*/

/*#region HERO*/
/* ── Imagem principal ────────────────────────────────────────────── */
.omb-container-hero-featured__img {
    height: 320px;
    display: block;
}

/* Em telas maiores a imagem fica mais alta */
@media (min-width: 768px) {
    .omb-container-hero-featured__img {
        height: 420px;
    }
}

/* ── Gradiente de leitura ────────────────────────────────────────── */
.omb-container-hero-featured__overlay {
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,.80) 0%, transparent 100%);
    pointer-events: none;
}

/* ── Tipografia da manchete ──────────────────────────────────────── */
.omb-container-hero-featured__title {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

    .omb-container-hero-featured__title    img.publisher-icon
    {
        background-color: #ffffff55
    }

    .omb-container-hero-featured__meta {
        font-size: .8rem;
    }

/* ── Badges ──────────────────────────────────────────────────────── */
.omb-container-hero-featured__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem;
    margin-bottom: .5rem;
}

.omb-container-hero-featured__badge {
    display: inline-block;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: .25rem;
}

    .omb-container-hero-featured__badges .omb-content-flags--icons {
        margin-left: 0;
    }

    .omb-container-hero-featured__badges .omb-content-flag--icon-only {
        width: 1.45rem;
        height: 1.45rem;
        color: var(--omb-content-flag-color);
        background: rgba(255, 255, 255, .92);
        border-radius: .25rem;
        font-size: .92rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .20);
    }

.omb-container-hero-featured__badge--editoria {
    background-color: #993C1D;
    color: #FAECE7;
}

.omb-container-hero-featured__badge--analisado {
    background-color: #0F6E56;
    color: #E1F5EE;
}

/* ── Cards laterais ──────────────────────────────────────────────── */
.omb-container-hero-side {
    color: inherit;
    transition: background-color .15s ease;
    border-radius: .375rem;
    padding: .25rem;
}

    .omb-container-hero-side:hover {
        background-color: rgba(0,0,0,.04);
    }

.omb-container-hero-side__thumb {
    width: 96px;
    height: 68px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    /* Em mobile os cards laterais ficam maiores para facilitar o toque */
    .omb-container-hero-side__thumb {
        width: 110px;
        height: 78px;
    }
}

.omb-container-hero-side__title {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--bs-body-color);
    margin: 0 0 .25rem;
    /* Limita a 2 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.omb-container-hero-side__meta {
    font-size: .75rem;
    color: var(--bs-secondary-color, #6c757d);
}

.omb-container-hero-side__divider {
    border-color: rgba(0,0,0,.08);
}

/*#endregion HERO*/

/*#region CONTENT FLAGS*/
.omb-content-flags {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .35rem;
    vertical-align: middle;
}

.omb-content-flag {
    --omb-content-flag-color: #3f4652;
    --omb-content-flag-bg: rgba(255, 255, 255, .92);
    --omb-content-flag-border: rgba(0, 0, 0, .14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .25rem;
    color: var(--omb-content-flag-color);
    background: var(--omb-content-flag-bg);
    border: 1px solid var(--omb-content-flag-border);
    border-radius: .35rem;
    padding: .18rem .5rem;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.omb-content-flag--featured {
    --omb-content-flag-color: #815600;
    --omb-content-flag-bg: #fff7df;
    --omb-content-flag-border: rgba(129, 86, 0, .25);
}

.omb-content-flag--original {
    --omb-content-flag-color: #0f6848;
    --omb-content-flag-bg: #e8f7f0;
    --omb-content-flag-border: rgba(15, 104, 72, .25);
}

.omb-content-flags--icons {
    gap: .18rem;
    margin-left: .25rem;
}

.omb-content-flag--icon-only {
    width: 1.1rem;
    height: 1.1rem;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: .82rem;
    line-height: 1;
}

.omb-content-flag--icon-only .bi {
    line-height: 1;
}
/*#endregion CONTENT FLAGS*/

/*#region BOOKMARK BAR*/
.omb-bookmark-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .5rem 1rem;
    color: var(--bs-body-color);
    background-color: color-mix(in srgb, var(--bs-primary) 9%, transparent);
    border-top: 1px solid color-mix(in srgb, var(--bs-primary) 15%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--bs-primary) 15%, transparent);
    font-size: .875rem;
    line-height: 1.35;
}

.omb-bookmark-bar__icon {
    flex: 0 0 auto;
    font-size: 1.05rem;
    line-height: 1;
}

.omb-bookmark-bar__message {
    flex: 1 1 0;
    min-width: 0;
}

.omb-bookmark-bar__message strong {
    font-weight: 600;
}

.omb-bookmark-bar__close {
    flex: 0 0 auto;
    padding: 0 .25rem;
    color: inherit;
    background: transparent;
    border: 0;
    opacity: .5;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

.omb-bookmark-bar__close:hover,
.omb-bookmark-bar__close:focus {
    opacity: .8;
}
/*#endregion BOOKMARK BAR*/


/*#region ARTICLE CARD/GRID*/

/* ── Card wrapper ────────────────────────────────────────────────── */
.omb-article-card {
    display: flex;
    flex-direction: column; /* thumb em cima, body embaixo, sempre */
    background-color: var(--bs-body-bg);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: .5rem;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

    .omb-article-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
        transform: translateY(-2px);
    }

@media (min-width: 570px) {
    
}

/* ── Thumb ───────────────────────────────────────────────────────── */
.omb-article-card__thumb {
    width: 100%;
    height: 180px;
    flex-shrink: 0; /* nunca deixa o thumb encolher */
    overflow: hidden;
}

.omb-article-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.omb-article-card:hover .omb-article-card__img {
    transform: scale(1.03);
}

/* ── Corpo ───────────────────────────────────────────────────────── */
.omb-article-card__body {
    padding: .85rem 1rem 1rem;
}

/* ── Badge ───────────────────────────────────────────────────────── */
.omb-article-card__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
    margin-bottom: .6rem;
}

.omb-article-card__badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .18rem .5rem;
    border-radius: .25rem;
    text-decoration: none;
    margin-bottom: .6rem;
    transition: background-color .15s ease;
}

    .omb-article-card__badges .omb-article-card__badge {
        margin-bottom: 0;
    }

    .omb-article-card__badges .omb-content-flags--icons {
        margin-left: 0;
    }

    .omb-article-card__badges .omb-content-flag--icon-only {
        font-size: .8rem;
    }


/* ── Título ──────────────────────────────────────────────────────── */
.omb-article-card__title {
    font-size: .9rem;
    font-weight: 600;
    line-height: 1.45;
    min-height: 2.9rem;
    color: var(--bs-body-color);
    margin: 0 0 .6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Meta ────────────────────────────────────────────────────────── */
.omb-article-card__meta {
    font-size: .75rem;
    color: var(--bs-secondary-color, #6c757d);
    margin: 0;
}
/*#endregion ARTICLE CARD/GRID*/


/*#region ARTICLE STRIP / STACK*/
/* ── Strip wrapper ───────────────────────────────────────────────── */
.omb-article-strip {
    display: flex;
    flex-direction: row;
    gap: 0;
    background-color: var(--bs-body-bg);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: .5rem;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease;

    margin-bottom: 1.5rem;
}

    .omb-article-strip:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, .10);
        transform: translateY(-2px);
    }

/* ── Thumb ───────────────────────────────────────────────────────── */
.omb-article-strip__thumb {
    width: 160px;
    flex-shrink: 0;
    overflow: hidden;
}

.omb-article-strip__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.omb-article-strip:hover .omb-article-strip__img {
    transform: scale(1.03);
}

/* ── Corpo ───────────────────────────────────────────────────────── */
.omb-article-strip__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: .85rem 1rem;
    min-width: 0; /* evita overflow do título em flex */
    width: 100%;
    align-items: flex-start; /* já existente acima, só adicionar essa linha */
}

/* ── Badge ───────────────────────────────────────────────────────── */
.omb-article-strip__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .25rem;
    margin-bottom: .5rem;
}

.omb-article-strip__badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .18rem .5rem;
    border-radius: .25rem;
    text-decoration: none;
    margin-bottom: .5rem;
    transition: opacity .15s ease;
}

    .omb-article-strip__badges .omb-article-strip__badge {
        margin-bottom: 0;
    }

    .omb-article-strip__badges .omb-content-flags--icons {
        margin-left: 0;
    }

    .omb-article-strip__badges .omb-content-flag--icon-only {
        font-size: .8rem;
    }

    .omb-article-strip__badges .omb-content-flag:not(.omb-content-flag--icon-only) {
        border-radius: .25rem;
        padding: .18rem .5rem;
        font-size: .68rem;
        line-height: 1.2;
    }

    .omb-article-strip__badge:hover {
        opacity: .85;
    }

/* ── Título ──────────────────────────────────────────────────────── */
.omb-article-strip__title {
    font-size: 1.0rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--bs-body-color);
    margin: 0 0 .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.omb-article-strip__title > img.publisher-icon
{
    height: 1.5rem;
    float: left;
    margin-right: 0.5rem
}
/* ── Meta ────────────────────────────────────────────────────────── */
.omb-article-strip__meta {
    font-size: .75rem;
    color: var(--bs-secondary-color, #6c757d);
    margin: 0;
}

/* ── Mobile: empilha thumb em cima do body ───────────────────────── */
@media (max-width: 575px) {
    .omb-article-strip {
        flex-direction: column;
    }

    .omb-article-strip__thumb {
        width: 100%;
        height: 160px;
    }
}

.omb-article-strip__subhead {
    font-size: .82rem;
    color: var(--bs-secondary-color, #6c757d);
    line-height: 1.45;
    margin: 0 0 .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.omb-article-strip--borderless {
    border: none;
    box-shadow: none;
    border-radius: .375rem;
    padding: .25rem;
    transition: background-color .15s ease;
}

    .omb-article-strip--borderless:hover {
        background-color: rgba(0, 0, 0, .04);
        box-shadow: none;
        transform: none;
    }
/*#endregion ARTICLE STRIP / STACK*/


/*#region ARTICLE FEATURED STACK */
/* Subhead — oculto por padrão, visível no modo featured */
.omb-article-card__subhead {
    display: none;
    font-size: .82rem;
    color: var(--bs-secondary-color, #6c757d);
    line-height: 1.45;
    margin: 0 0 .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modificador featured */
.omb-article-card--featured .omb-article-card__thumb {
    height: 280px;
}

.omb-article-card--featured .omb-article-card__title {
    font-size: 1.15rem;
}

.omb-article-card--featured .omb-article-card__subhead {
    display: -webkit-box;
}
/*#endregion ARTICLE FEATURED STACK */

/*#region MEGA HERO SPLASH */
.omb-mega-hero-splash__img--placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--sec-color);
    background-color: var(--sec-color);
}

.omb-mega-hero-splash__overlay--placeholder {
    background: linear-gradient( to top, var(--sec-color) 0%, color-mix(in srgb, var(--sec-color) 88%, #000 12%) 28%, color-mix(in srgb, var(--sec-color) 64%, transparent) 62%, color-mix(in srgb, var(--sec-color) 24%, transparent) 100% );
}

.omb-mega-hero-splash.placeholder-glow,
.omb-mega-hero-splash.placeholder-glow * {
    cursor: wait;
}

.omb-mega-hero-splash__publisher-placeholder {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    vertical-align: middle;
    border-radius: 50%;
}

.omb-mega-hero-splash__title-placeholder,
.omb-mega-hero-splash__text-placeholder,
.omb-mega-hero-splash__meta-placeholder {
    display: block;
}

.omb-mega-hero-splash__title-placeholder {
    height: 1em;
    margin-top: .3rem;
}

.omb-mega-hero-splash__publisher-placeholder + .omb-mega-hero-splash__title-placeholder {
    display: inline-block;
    width: min(75%, calc(100% - 3rem));
    margin-top: 0;
    margin-left: .25rem;
    vertical-align: middle;
}

.omb-mega-hero-splash__text-placeholder {
    height: 1em;
    margin-top: .25rem;
}

.omb-mega-hero-splash__meta-placeholder {
    height: 1em;
}


/* ── Wrapper ─────────────────────────────────────────────────────── */
.omb-mega-hero-splash {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    max-height: 680px;
    overflow: hidden;
    cursor: pointer;
}

/* ── Imagem ──────────────────────────────────────────────────────── */
.omb-mega-hero-splash__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .4s ease;
}

.omb-mega-hero-splash:hover .omb-mega-hero-splash__img {
    transform: scale(1.02);
}

/* ── Overlay ─────────────────────────────────────────────────────── */
.omb-mega-hero-splash__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .40) 45%, rgba(0, 0, 0, .10) 100% );
    
    z-index: 1;
}

.omb-mega-hero-splash__overlay + .container a {
    position: relative;
    z-index: 2;
    pointer-events: all;
}

/* ── Container precisa ser relativo para ficar sobre o overlay ───── */
.omb-mega-hero-splash > .container {
    position: relative;
    z-index: 1;
    pointer-events: none
}

    .omb-mega-hero-splash > .container > a,
    .omb-mega-hero-splash > .container > p,
    .omb-mega-hero-splash > .container > h2 {
        pointer-events: all;
    }

/* ── Badge ───────────────────────────────────────────────────────── */
.omb-mega-hero-splash__badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .22rem .6rem;
    border-radius: .25rem;
    text-decoration: none;
    margin-bottom: .75rem;
    transition: opacity .15s ease;
}

    .omb-mega-hero-splash__badge:hover {
        opacity: .85;
    }

/* ── Título ──────────────────────────────────────────────────────── */
.omb-mega-hero-splash__title {
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
    margin: 0 0 .75rem;
}

    .omb-mega-hero-splash__title img.publisher-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
        background-color: #ffffff55
    }

/* ── Subhead ─────────────────────────────────────────────────────── */
.omb-mega-hero-splash__subhead {
    font-size: clamp(.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Meta ────────────────────────────────────────────────────────── */
    .omb-mega-hero-splash__subhead .omb-content-flags--icons {
        gap: .2em;
        margin-left: 0;
        margin-right: .4em;
    }

    .omb-mega-hero-splash__subhead .omb-content-flag--icon-only {
        width: 1em;
        height: 1em;
        font-size: inherit;
        line-height: inherit;
    }

.omb-mega-hero-splash__meta {
    font-size: .8rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
}
/*#endregion MEGA HERO SPLASH*/

/*#region MEGA HERO SPLIT*/
/* ── Wrapper ─────────────────────────────────────────────────────── */
.omb-mega-hero-split {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    border-radius: var(--bs-border-radius-lg, .5rem);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: box-shadow .2s ease;
}

    .omb-mega-hero-split:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, .10);
    }

@media (max-width: 767px) {
    .omb-mega-hero-split {
        grid-template-columns: 1fr;
        height: auto;
    }
}

/* ── Thumb ───────────────────────────────────────────────────────── */
.omb-mega-hero-split__thumb {
    overflow: hidden;
    min-height: 260px;
}

.omb-mega-hero-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.omb-mega-hero-split:hover .omb-mega-hero-split__img {
    transform: scale(1.03);
}

/* ── Corpo ───────────────────────────────────────────────────────── */
.omb-mega-hero-split__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
    padding: 1.75rem 2rem;
    background-color: var(--bs-body-bg);
}

/* ── Badge ───────────────────────────────────────────────────────── */
.omb-mega-hero-split__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: .25rem;
    text-decoration: none;
    transition: opacity .15s ease;
}

    .omb-mega-hero-split__badge:hover {
        opacity: .85;
    }

/* ── Título ──────────────────────────────────────────────────────── */
.omb-mega-hero-split__title {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--bs-body-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Subhead ─────────────────────────────────────────────────────── */
.omb-mega-hero-split__subhead {
    font-size: .9rem;
    color: var(--bs-secondary-color, #6c757d);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Meta ────────────────────────────────────────────────────────── */
.omb-mega-hero-split__meta {
    font-size: .78rem;
    color: var(--bs-secondary-color, #6c757d);
    margin: 0;
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* ── Link ────────────────────────────────────────────────────────── */
.omb-mega-hero-split__link {
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
    transition: opacity .15s ease;
}

    .omb-mega-hero-split__link:hover {
        opacity: .75;
    }

/* ── Mobile: empilha ─────────────────────────────────────────────── */
@media (max-width: 767px) {
    .omb-mega-hero-split {
        grid-template-columns: 1fr;
    }

    .omb-mega-hero-split__thumb {
        min-height: 200px;
        max-height: 260px;
    }

    .omb-mega-hero-split__body {
        padding: 1.25rem;
    }
}
/*#endregion MEGA HERO SPLIT*/

/*#region MEGA HERO BAND*/
/* ── Wrapper ─────────────────────────────────────────────────────── */
.omb-mega-hero-band {
    width: 100%;
    transition: filter .2s ease;
}

    .omb-mega-hero-band:hover {
        filter: brightness(.93);
    }

/* ── Badge ───────────────────────────────────────────────────────── */
.omb-mega-hero-band__eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    margin-bottom: .85rem;
}

.omb-mega-hero-band__badge {
    display: inline-block;
    align-self: flex-start;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: .25rem;
    text-decoration: none;
    margin-bottom: .85rem;
    transition: opacity .15s ease;
}

    .omb-mega-hero-band__eyebrow .omb-mega-hero-band__badge {
        margin-bottom: 0;
    }

    .omb-mega-hero-band__eyebrow .omb-content-flag {
        border-color: transparent;
        border-radius: .25rem;
        padding: .2rem .55rem;
        font-size: .68rem;
        line-height: 1.2;
    }

    .omb-mega-hero-band__badge:hover {
        opacity: .85;
    }

/* ── Título ──────────────────────────────────────────────────────── */
.omb-mega-hero-band__title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 .75rem;
    opacity: 1;
}

    .omb-mega-hero-band__title img.publisher-icon {
        width: 2.2rem !important;
        height: 2.2rem !important;
    }

/* ── Subhead ─────────────────────────────────────────────────────── */
.omb-mega-hero-band__subhead {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    line-height: 1.5;
    margin: 0 0 .75rem;
    opacity: .85;
}

/* ── Lide (meta description) ─────────────────────────────────────── */
.omb-mega-hero-band__lede {
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
    opacity: .70;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Divisor ─────────────────────────────────────────────────────── */
.omb-mega-hero-band__divider {
    opacity: .25;
    margin: 1.25rem 0;
}

/* ── Tags e editorias ────────────────────────────────────────────── */
.omb-mega-hero-band__tag {
    display: inline-block;
    font-size: .95rem;
    font-weight: 400;
    padding: .25rem .65rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: opacity .15s ease;
}

    .omb-mega-hero-band__tag:hover {
        opacity: .80;
    }

/* ── Meta ────────────────────────────────────────────────────────── */
.omb-mega-hero-band__meta {
    font-size: .78rem;
    margin: 0;
    opacity: .60;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.omb-mega-hero-band__nav-pill {
    font-size: .92rem;
    font-weight: 600;
    padding: .4rem 1.1rem;
    border-radius: 2rem;
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: var(--band-text);
    background: transparent;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease;
}

    .omb-mega-hero-band__nav-pill:hover {
        background: rgba(255, 255, 255, .15);
        border-color: rgba(255, 255, 255, .7);
        color: var(--band-text);
    }

.omb-mega-hero-band__nav-pill--active {
    background: rgba(255, 255, 255, .9);
    border-color: transparent;
    color: var(--band-bg);
}
/*#endregion MEGA HERO SPLIT*/


/*#region SECTION HEADER*/
.omb-section-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-bottom: .375rem;
    border-bottom: 1.5px solid var(--sec-color);
    margin-bottom: .75rem;
    margin-top: 3.5rem
}

.omb-section-header__name {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--sec-color);
    flex-shrink: 0;
    margin: 0;
}

.omb-section-header__pills {
    display: flex;
    gap: .3rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.omb-section-header__pill {
    font-size: 0.90rem;
    padding: .15rem .6rem;
    border-radius: 2rem;
    border: 1px solid var(--sec-color);
    color: var(--sec-color);
    background: var(--sec-bg);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .15s ease;
}

    .omb-section-header__pill:hover {
        opacity: .75;
        color: var(--sec-color);
    }

.omb-section-header__more {
    font-size: .75rem;
    color: var(--bs-secondary-color, #6c757d);
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
    transition: color .15s ease;
}

    .omb-section-header__more:hover {
        color: var(--sec-color);
    }

/* Mobile: esconde pills, mantém nome e "ver tudo" */
@media (max-width: 575px) {
    .omb-section-header__pills {
        display: none;
    }
}
/*#endregion SECTION HEADER*/

/*#region MAIN NAV*/
.omb-main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem 0.5rem;
    gap: 1.5rem;


}

.omb-main-nav-wrap {
    background: repeating-linear-gradient( 90deg, rgba(255,255,255,0) 0px, rgba(255,255,255,0) 2px, rgba(255,255,255,.06) 2px, rgba(255,255,255,.06) 3px ), linear-gradient(to bottom, #D0D0D0 0%, #F2F2F2 40%, #E0E0E0 60%, #DDD 100%);
    border-bottom: 1px solid rgba(0,0,0,.12);
    box-shadow: 0 2px 8px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.8);
    
}

.omb-main-nav__brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bs-body-color);
    text-decoration: none;
    letter-spacing: -.03em;
    flex-shrink: 0;
}

    .omb-main-nav__brand:hover {
        color: var(--bs-body-color);
        opacity: .75;
    }

.omb-main-nav__list {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.omb-main-nav__item {
    font-size: 1rem;

    color: var(--nav-color); /* era var(--bs-secondary-color) */
    font-weight: 700; /* era 500 */

    text-decoration: none;
    padding: .3rem .65rem;
    border-radius: 2rem;
    transition: color .15s ease, background-color .15s ease;
    white-space: nowrap;
}

    .omb-main-nav__item:hover {
        color: var(--nav-color);
        background-color: color-mix(in srgb, var(--nav-color) 10%, transparent);
    }

.omb-main-nav__item--active {
    color: var(--nav-color);
    background-color: color-mix(in srgb, var(--nav-color) 12%, transparent);
    font-weight: 600;
}

/* Mobile: esconde os itens, fica só a brand + menu hamburger futuro */
@media (max-width: 767px) {
    .omb-main-nav__list {
        display: none;
    }
}

/* Hamburguer */
.omb-main-nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .35rem;
    background: none;
    border: none;
    padding: .25rem;
    cursor: pointer;
}

    .omb-main-nav__hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #1a1a1a;
        border-radius: 2px;
        transition: opacity .15s ease;
    }

    .omb-main-nav__hamburger:hover span {
        opacity: .6;
    }

/* Sidebar */
.omb-nav-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.omb-nav-sidebar__item {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--nav-color);
    text-decoration: none;
    padding: .65rem .75rem;
    border-radius: .5rem;
    transition: background-color .15s ease;
}

    .omb-nav-sidebar__item:hover {
        background-color: color-mix(in srgb, var(--nav-color) 10%, transparent);
    }

/*#endregion MAIN NAV*/

/*#region CONTAINER HERO — Placeholders */
.omb-container-hero-featured__img--placeholder {
    height: 19rem;
}

.omb-container-hero-side__thumb--placeholder {
    width: 5rem;
    height: 3.75rem;
}
/*#endregion*/

/*#region ARTICLE CARD — Placeholders*/
.omb-article-card__thumb--placeholder {
    height: 10rem;
}

.compact
.omb-article-card__thumb--placeholder {
    height: 5rem;
}
/*#endregion*/


/*#region ARTICLE STRIP — Placeholders*/
/*.omb-article-strip__thumb--placeholder {
    width: 8rem;
    height: 10rem;
    flex-shrink: 0;
}*/
/*#endregion*/

/*#region MASTER SECTION NAV*/
.omb-master-section-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: .85rem 0;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.omb-master-section-nav__pill {
    font-size: 1.125rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 2rem;
    border: 1.5px solid var(--band-bg);
    color: var(--band-bg);
    background: transparent;
    text-decoration: none;
    opacity: .9;
    transition: opacity .15s ease, background-color .15s ease;
}

    .omb-master-section-nav__pill:hover,
    .omb-master-section-nav__pill--active {
        background: var(--band-bg);
        color: #fff;
        opacity: 1;
    }
/*#endregion MASTER SECTION NAV*/

/*#region FOOTER*/
.omb-site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 4rem;
    color: rgba(255, 255, 255, .84);
    background:
        radial-gradient(circle at 12% 8%, rgba(244, 183, 64, .16) 0, transparent 27rem),
        radial-gradient(circle at 86% 14%, rgba(42, 171, 142, .18) 0, transparent 25rem),
        linear-gradient(135deg, #0b0b0f 0%, #21131c 48%, #0b1513 100%);
    border-top: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 -24px 70px rgba(0, 0, 0, .28);
}

.omb-site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .20;
}

.omb-site-footer::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, #c33a5b, #f3b63c, #1f9f82, #315fd9, #8d4dd8);
}

.omb-site-footer__container {
    position: relative;
    z-index: 1;
    padding-top: 3.5rem;
    padding-bottom: 1.75rem;
}

.omb-site-footer__brand {
    max-width: 30rem;
}

.omb-site-footer__brand-mark {
    margin-bottom: .85rem;
}

.omb-site-footer__logo {
    display: block;
    width: min(100%, 15.5rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .26));
}

.omb-site-footer__tagline {
    max-width: 20rem;
    margin: 0 0 1.35rem;
    color: rgba(255, 255, 255, .72);
    font-size: .95rem;
    line-height: 1.45;
}

.omb-site-footer__headline {
    margin: 0 0 1rem;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.05;
}

.omb-site-footer__copy {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: .98rem;
    line-height: 1.65;
}

.omb-site-footer__proofs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.35rem;
}

.omb-site-footer__proof {
    min-width: 0;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.omb-site-footer__proof strong,
.omb-site-footer__proof span {
    display: block;
}

.omb-site-footer__proof strong {
    color: #fff;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.2;
}

.omb-site-footer__proof span {
    margin-top: .15rem;
    color: rgba(255, 255, 255, .62);
    font-size: .8rem;
    line-height: 1.25;
}

.omb-site-footer__about-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1.5rem;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.omb-site-footer__about-link:hover {
    color: #f4c96b;
    text-decoration: none;
    transform: translateX(2px);
}

.omb-site-footer__section-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.omb-site-footer__section-kicker {
    display: block;
    margin-bottom: .25rem;
    color: #f4c96b;
    font-size: .9rem;
    font-weight: 800;
}

.omb-site-footer__section-header h5 {
    margin: 0;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.12;
}

.omb-site-footer__section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: .85rem;
    align-items: stretch;
}

.omb-site-footer__section-item {
    display: flex;
    min-width: 0;
}

.omb-site-footer__section-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding: .95rem .85rem .85rem;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: .5rem;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.omb-site-footer__section-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--hardColor);
    opacity: .9;
}

.omb-site-footer__section-card:hover {
    background: color-mix(in srgb, var(--hardColor) 16%, rgba(255, 255, 255, .07));
    border-color: color-mix(in srgb, var(--hardColor) 52%, rgba(255, 255, 255, .16));
    box-shadow: 0 16px 34px color-mix(in srgb, var(--hardColor) 20%, transparent);
    transform: translateY(-2px);
}

.omb-site-footer__section-card h6 {
    margin: 0 0 .7rem;
    min-width: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
    overflow-wrap: break-word;
    hyphens: auto;
    transition: color .18s ease;
}

.omb-site-footer__section-card:hover h6,
.omb-site-footer__section-card h6:hover {
    color: var(--hardColor);
}

.omb-site-footer__section-card ul {
    display: grid;
    gap: .34rem;
    margin: 0;
}

.omb-site-footer__section-card li {
    min-width: 0;
}

.omb-site-footer__section-card a {
    position: relative;
    display: block;
    max-width: 100%;
    overflow: hidden;
    padding-left: .75rem;
    color: rgba(255, 255, 255, .70);
    font-size: .84rem;
    line-height: 1.25;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-wrap: break-word;
    transition: color .18s ease, transform .18s ease;
}

.omb-site-footer__section-card a::before {
    content: "";
    position: absolute;
    top: .55em;
    left: 0;
    width: .32rem;
    height: .32rem;
    background: rgba(255, 255, 255, .28);
    border-radius: 50%;
    transition: background-color .18s ease, box-shadow .18s ease;
}

    .omb-site-footer__section-card a:hover {
        color: var(--softColor);
        text-decoration: none;
        transform: translateX(2px);
    }

        .omb-site-footer__section-card a:hover::before {
            background: var(--softColor);
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--softColor) 18%, transparent);
        }

.omb-site-footer__tags {
    position: relative;
    margin-top: 1.5rem;
    padding: 1.15rem;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035)),
        radial-gradient(circle at 10% 0, rgba(244, 201, 107, .18), transparent 20rem);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .65rem;
}

.omb-site-footer__tags::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(244, 201, 107, .24), transparent 42%);
    opacity: .22;
}

.omb-site-footer__tags-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .9rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.omb-site-footer__tags-header .omb-site-footer__section-kicker {
    margin: 0;
    flex: 0 0 auto;
}

.omb-site-footer__tags-header h5 {
    margin: 0;
    color: rgba(255, 255, 255, .94);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: right;
}

.omb-site-footer__tag-cloud {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.omb-site-footer__tag-pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 2.15rem;
    padding: .42rem .72rem;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 750;
    line-height: 1.15;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.omb-site-footer__tag-pill span {
    margin-right: .08rem;
    color: #f4c96b;
    font-weight: 900;
}

.omb-site-footer__tag-pill:hover {
    color: #111;
    background: #f4c96b;
    border-color: #f4c96b;
    box-shadow: 0 12px 26px rgba(244, 201, 107, .18);
    text-decoration: none;
    transform: translateY(-1px);
}

.omb-site-footer__tag-pill:hover span {
    color: #111;
}

.omb-site-footer a:focus-visible {
    outline: 2px solid rgba(244, 201, 107, .9);
    outline-offset: 3px;
    border-radius: .35rem;
}

.omb-site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.25rem;
    color: rgba(255, 255, 255, .62);
    border-top: 1px solid rgba(255, 255, 255, .16);
    font-size: .88rem;
}

.omb-site-footer__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .55rem;
}

.omb-site-footer__legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .85rem;
}

.omb-site-footer__legal-links a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    transition: color .18s ease;
}

.omb-site-footer__legal-links a:hover {
    color: #fff;
    text-decoration: none;
}

.omb-site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 2rem;
    padding: .35rem .7rem;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .5rem;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.omb-site-footer__social-link:hover {
    color: #111;
    background: #fff;
    border-color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.omb-site-footer__ai-note {
    max-width: 58rem;
    margin: 1rem auto 0;
    padding-top: .85rem;
    color: rgba(255, 255, 255, .46);
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .78rem;
    line-height: 1.55;
    text-align: center;
}

@media (min-width: 380px) {
    .omb-site-footer__section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 576px) {
    .omb-site-footer__section-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .omb-site-footer__section-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .omb-site-footer__container {
        padding-top: 4.25rem;
    }

    .omb-site-footer__section-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .omb-site-footer__headline {
        font-size: 2.35rem;
    }
}

@media (min-width: 1200px) {
    .omb-site-footer__section-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .omb-site-footer {
        margin-top: 3rem;
    }

    .omb-site-footer__container {
        padding-top: 3rem;
        padding-bottom: 1.5rem;
    }

    .omb-site-footer__headline {
        font-size: 1.75rem;
    }

    .omb-site-footer__section-header h5 {
        font-size: 1.35rem;
    }

    .omb-site-footer__section-card {
        padding: .85rem .75rem .8rem;
    }

    .omb-site-footer__tags {
        padding: 1rem;
    }

    .omb-site-footer__tags-header {
        align-items: flex-start;
        flex-direction: column;
        gap: .2rem;
    }

    .omb-site-footer__tags-header h5 {
        text-align: left;
    }

    .omb-site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/*#endregion FOOTER*/

/*#region LEGAL PAGES*/
.omb-legal-page {
    max-width: 860px;
    margin: 0 auto;
}

.omb-legal-page h1 {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
}

.omb-legal-page__content {
    min-height: 36rem;
    color: var(--bs-body-color);
    font-size: 1rem;
    line-height: 1.75;
}
/*#endregion LEGAL PAGES*/

/*#region BREADCRUMB*/
.omb-breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 0 .75rem;
    font-size: .92rem;
}

.omb-breadcrumb__item {
    color: var(--bs-secondary-color, #6c757d);
    text-decoration: none;
    transition: color .15s ease;
}

    .omb-breadcrumb__item:hover {
        color: var(--sec-color);
    }

.omb-breadcrumb__item--active {
    color: var(--sec-color);
    font-weight: 700;
    font-size: 1rem;
}

.omb-breadcrumb__sep {
    color: var(--sec-color);
    font-weight: bold;
}
/*#endregion*/

/*#region PROMPT RESULT — FreeText*/
.omb-prompt-result {
    margin-bottom: 2.25rem;
}

.omb-prompt-result__eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--sec-color);
    margin-bottom: .3rem;
}

.omb-prompt-result__big {
    font-size: 1.5rem;
    line-height: 2rem;
    height: 3rem;
    font-weight: 700;
    margin-bottom: .5rem;
    border-left: 5px solid var(--sec-color);
    padding: calc((3rem - 2rem) / 2) .85rem
}

.omb-prompt-result p,
.omb-prompt-result {
    overflow: hidden
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
    .omb-prompt-result__big {
        font-size: 1rem;
        height: 2rem;
        line-height: 2rem;
        padding: 0 .85rem
    }
}

@media screen and (max-width: 320px)
{
    .omb-prompt-result__big {
        font-size: 1rem;
    }

        .omb-prompt-result__big .rating-points
        {
            
        }
}


@media screen and (max-width: 220px) {
    .omb-prompt-result__big {
        font-size: 1.5rem;
    }

        .omb-prompt-result__big .rating-points {
            display: none
        }
}


    .omb-prompt-result__title {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: .5rem;
        padding-left: .85rem;
        border-left: 5px solid var(--sec-color);
        /* 1. Define the background gradient */
        background-image: linear-gradient(0deg, var(--sec-color), var(--bs-body-color));
        /* 2. Clip the background to the text characters */
        background-clip: text;
        -webkit-background-clip: text; /* Required for Safari and older browsers */
        /* 3. Fade out the default text color to reveal the background */
        color: transparent;
        /* Optional: Clean rendering fix for block-level headers */
        display: inline-block;
    }

    .omb-prompt-result__body {
        font-size: 1.25rem;
        line-height: 1.6;
        color: var(--bs-body-color);
    }

        .omb-prompt-result__body p {
            margin-bottom: 1.9rem;
        }
    /*#endregion*/

    .omb-banner {
        font-size: 0.85rem;
        color: black;
        margin: 4rem auto;
        text-align:center
    }

        .omb-banner figure figcaption {
            text-align: center
        }
        .omb-banner figure a {

        }
        .omb-banner figure picture img {
            box-shadow: #00000033 10px 10px 20px;
            margin-left: auto;
            margin-right: auto
        }

    .omb-book-banner {
        max-width: 760px;
    }

    .omb-book-banner__slot {
        margin: 0;
    }

    .omb-book-banner__caption {
        margin-bottom: .65rem;
        color: var(--bs-secondary-color, #6c757d);
    }

    .omb-book-banner__link {
        display: grid;
        grid-template-columns: 132px minmax(0, 1fr);
        gap: 1.25rem;
        align-items: center;
        padding: 1rem 1.1rem;
        background: linear-gradient(135deg, #fff 0%, #f8f4ec 100%);
        border: 1px solid rgba(0, 0, 0, .12);
        border-radius: 8px;
        box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
        color: var(--bs-body-color);
        text-align: left;
        text-decoration: none;
        transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
    }

        .omb-book-banner__link:hover {
            border-color: rgba(0, 0, 0, .28);
            box-shadow: 0 20px 44px rgba(0, 0, 0, .16);
            color: var(--bs-body-color);
            transform: translateY(-1px);
        }

    .omb-book-banner__cover-wrap {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .omb-book-banner__cover {
        width: 116px;
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, .28);
        background: #f8f4ec;
    }

    .omb-book-banner__body {
        min-width: 0;
    }

    .omb-book-banner__badge {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        margin-bottom: .55rem;
        padding: .22rem .65rem;
        border: 1px solid rgba(98, 62, 29, .28);
        border-radius: 999px;
        background: #f1e2c7;
        color: #623e1d;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .06em;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .omb-book-banner__eyebrow {
        margin: 0 0 .25rem;
        color: var(--bs-secondary-color, #6c757d);
        font-size: .86rem;
        font-weight: 600;
    }

    .omb-book-banner__title {
        margin: 0 0 .45rem;
        color: var(--bs-body-color);
        font-size: clamp(1.15rem, 2.5vw, 1.55rem);
        font-weight: 700;
        line-height: 1.2;
    }

    .omb-book-banner__text {
        margin: 0 0 .85rem;
        color: var(--bs-secondary-color, #6c757d);
        font-size: .95rem;
        line-height: 1.55;
    }

    .omb-book-banner__cta {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        color: #8a4c13;
        font-size: .95rem;
        font-weight: 700;
    }

    @media screen and (max-width: 767.98px) {
        .omb-book-banner {
            margin-top: 3rem;
            margin-bottom: 3rem;
            max-width: 360px;
        }

        .omb-book-banner__link {
            grid-template-columns: 1fr;
            gap: 1rem;
            justify-items: center;
            padding: 1.1rem 1rem;
            text-align: center;
        }

        .omb-book-banner__cover {
            width: min(54vw, 150px);
        }

        .omb-book-banner__badge {
            margin-bottom: .4rem;
            font-size: .66rem;
            letter-spacing: .04em;
        }

        .omb-book-banner__eyebrow {
            display: none !important;
        }

        .omb-book-banner__title {
            font-size: 1.15rem;
        }

        .omb-book-banner__text {
            margin-bottom: .7rem;
            font-size: .86rem;
            line-height: 1.45;
        }

        .omb-book-banner__cta {
            font-size: .9rem;
            justify-content: center;
        }

        .omb-book-banner__badge,
        .omb-book-banner__cta {
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media screen and (max-width: 340px) {
        .omb-book-banner__link {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .omb-book-banner__badge,
        .omb-book-banner__cta {
            margin-left: auto;
            margin-right: auto;
        }
    }
        /*
    @media screen and (min-width: 1024px) {
        .omb-banner {
            width: 600px;
            height: 150px;
        }
    }

    @media screen and (max-width: 1023px) {
        .omb-banner {
            width: 300px;
            height: 300px;
        }
    }

    @media screen and (max-width: 320px) {
        .omb-banner {
            display: none
        }
    }*/
    img.publisher-icon {
        height: 1.1rem;
    }

    img.publisher-icon.big {
        height: 1.5rem;
    }

    img.publisher-icon.x-big {
        height: 2rem;
    }

    .hero-main__title
    img.publisher-icon {
        height: 2rem;
    }

    /*#region PRISMAFEED SIDEBAR*/
    .omb-prismafeed-sidebar {
        --prismafeed-sidebar-accent: var(--sec-color, rgb(180, 160, 125));
        align-self: stretch;
    }

    .omb-prismafeed-sidebar__sticky {
        position: sticky;
        top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 4.4rem;
    }

    .omb-prismafeed-sidebar--tag .omb-prismafeed-sidebar__sticky {
        padding-top: 0;
    }

    .omb-prismafeed-sidebar-card {
        position: relative;
        overflow: hidden;
        padding: 1rem;
        background: rgba(255, 255, 255, .78);
        border: 1px solid rgba(0, 0, 0, .08);
        border-top: 4px solid var(--prismafeed-sidebar-accent);
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(33, 37, 41, .08);
    }

        .omb-prismafeed-sidebar-card::before {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: .55;
            background: linear-gradient(135deg, transparent 0 58%, color-mix(in srgb, var(--prismafeed-sidebar-accent) 14%, transparent) 58% 72%, transparent 72% 100%);
        }

    .omb-prismafeed-sidebar-card__brand {
        position: relative;
        z-index: 1;
        display: block;
        width: 9rem;
        max-width: 100%;
        height: auto;
        margin-bottom: .9rem;
    }

    .omb-prismafeed-sidebar-card__eyebrow {
        position: relative;
        z-index: 1;
        margin-bottom: .25rem;
        color: var(--prismafeed-sidebar-accent);
        font-size: .72rem;
        font-weight: 850;
        line-height: 1.2;
        letter-spacing: .11em;
        text-transform: uppercase;
    }

    .omb-prismafeed-sidebar-card__title {
        position: relative;
        z-index: 1;
        margin: 0;
        font-size: 1.15rem;
        font-weight: 850;
        line-height: 1.2;
    }

    .omb-prismafeed-sidebar-card__text {
        position: relative;
        z-index: 1;
        margin: .45rem 0 .9rem;
        color: var(--bs-secondary-color, #6c757d);
        font-size: .9rem;
        line-height: 1.5;
    }

    .omb-prismafeed-sidebar-card__list {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: .42rem;
        margin: 0 0 1rem;
        padding: 0;
        list-style: none;
    }

    .omb-prismafeed-sidebar-card__list li {
        display: flex;
        align-items: center;
        gap: .45rem;
        color: #2c343c;
        font-size: .87rem;
        font-weight: 750;
        line-height: 1.25;
    }

    .omb-prismafeed-sidebar-card__list .bi {
        color: var(--prismafeed-sidebar-accent);
        font-size: .98rem;
    }

    .omb-prismafeed-sidebar-card__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: .4rem;
        min-height: 2.55rem;
        padding: .55rem .85rem;
        color: #fff;
        background: var(--prismafeed-sidebar-accent);
        border: 1px solid var(--prismafeed-sidebar-accent);
        border-radius: 8px;
        font-size: .9rem;
        font-weight: 800;
        line-height: 1.15;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 10px 22px color-mix(in srgb, var(--prismafeed-sidebar-accent) 28%, transparent);
        transition: transform .15s ease, opacity .15s ease;
    }

        .omb-prismafeed-sidebar-card__cta:hover {
            color: #fff;
            opacity: .92;
            transform: translateY(-1px);
        }
    /*#endregion PRISMAFEED SIDEBAR*/


    [class*="__badge"],
    [class*="__tag"],
    [class*="__link"] {
        position: relative;
        z-index: 100;
    }
