.article-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.article-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #d82220;
    transition: width 80ms linear;
}

.site-main { padding-block-start: clamp(.8rem, 1.8vw, 1.35rem); }
.site-main:has(.article-featured--hero) { padding-block-start: 0; }

.article-page {
    width: 100%;
    min-width: 0;
    color: #172033;
    font-family: var(--font-arabic-body);
    overflow-wrap: anywhere;
}

.article-header {
    max-width: var(--single-post-title-width, 58rem);
    margin-inline: auto;
    padding-block: 0 1rem;
    text-align: var(--single-post-title-align, center);
}

.article-header h1 {
    margin: 0 0 .65rem;
    color: #111827;
    font-family: var(--font-arabic-heading);
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.25;
    text-wrap: balance;
}

.article-header__deck {
    max-width: 49rem;
    margin: 0 auto .6rem;
    color: #343d4c;
    font-family: var(--font-arabic-heading);
    font-size: clamp(1.28rem, 2vw, 1.58rem);
    font-weight: 700;
    line-height: 1.8;
}

.article-post-tools {
    display: flex;
    width: min(100%, 62rem);
    min-width: 0;
    margin: 0 auto clamp(1.4rem, 3vw, 2rem);
    padding: .55rem 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .7rem 1rem;
    border-block: 1px solid #e7e3dc;
}

.article-tools {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem;
}

.article-tools button {
    display: inline-flex;
    min-width: 2.35rem;
    min-height: 2.25rem;
    padding-inline: .65rem;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    border: 1px solid #e1ddd6;
    border-radius: 8px;
    background: #fff;
    color: #303949;
    cursor: pointer;
    font-family: var(--font-arabic-body);
    font-size: .95rem;
    font-weight: 700;
}

.article-tools button:hover,
.article-tools button:focus-visible {
    border-color: #d82220;
    color: #d82220;
}

.article-tools button svg { width: 1.1rem; height: 1.1rem; }

.article-social-share {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.article-social-share > span {
    margin-inline-end: .15rem;
    color: #4b5563;
    font-size: 1.05rem;
    font-weight: 700;
}

.article-social-share a {
    display: inline-grid;
    width: 2.35rem;
    height: 2.35rem;
    flex: 0 0 2.35rem;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    transition: transform 150ms ease, opacity 150ms ease;
}

.article-social-share a:hover,
.article-social-share a:focus-visible { opacity: .88; transform: translateY(-1px); }
.article-social-share svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }
.article-social-share__facebook { background: #1877f2; }
.article-social-share__whatsapp { background: #25d366; }
.article-social-share__x { background: #111; }

.article-featured {
    max-width: 62rem;
    margin: 0 auto .7rem;
}

.article-featured > img,
.article-featured__media > img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 42rem;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 34px rgb(17 24 39 / .1);
}

.article-featured--hero { width: 100%; max-width: 1150px; margin: 0 auto .7rem; }
.article-featured__media { position: relative; width: 100%; height: auto; aspect-ratio: 16 / 9; margin-inline: auto; overflow: hidden; background: #111827; }
.article-featured--hero .article-featured__media > img { width: 100%; height: 100%; max-height: none; border-radius: 0; box-shadow: none; object-fit: cover; }
.article-featured__media::after { position: absolute; inset: 34% 0 0; background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .52) 48%, transparent); content: ""; pointer-events: none; }
.article-featured__headline {
    position: absolute;
    z-index: 1;
    right: clamp(1rem, 4vw, 3rem);
    bottom: clamp(1.1rem, 3.5vw, 2.6rem);
    left: clamp(1rem, 4vw, 3rem);
    display: -webkit-box;
    max-width: var(--single-post-title-width, 58rem);
    margin: 0 auto;
    overflow: hidden;
    color: #fff;
    font-family: var(--font-arabic-heading);
    font-size: clamp(1.9rem, 4.6vw, 4.15rem);
    font-weight: 700;
    line-height: 1.28;
    text-align: var(--single-post-title-align, center);
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-page--hero-image-above .article-featured__media::after {
    display: none;
}

.article-featured figcaption {
    display: flex;
    padding: .65rem .2rem 0;
    justify-content: space-between;
    gap: .5rem 1rem;
    color: #596475;
    font-size: .75rem;
    line-height: 1.6;
}

.article-featured figcaption small { font-size: inherit; }

/* English and numeric editorial metadata stays in the loaded Poppins family. */
.article-page:lang(en),
.article-page:lang(en) :is(h1, h2, h3, p, a, span, small, time),
.article-page .article-latin,
.article-page time,
.article-page [dir="ltr"] {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(14rem, 3fr) minmax(0, 7fr);
    grid-template-areas: "sidebar article";
    gap: clamp(1.5rem, 4vw, 3rem);
    direction: ltr;
    align-items: start;
}

.article-main {
    grid-area: article;
    display: flex;
    min-width: 0;
    flex-direction: column;
    direction: rtl;
}

.article-sidebar {
    grid-area: sidebar;
    min-width: 0;
    direction: rtl;
}

.article-body {
    --article-font-size: 1.48rem;
    max-width: var(--single-post-content-width, 48rem);
    color: #202938;
    font-family: var(--font-arabic-body);
    font-size: var(--article-font-size);
    font-weight: 700;
    line-height: 2.05;
    overflow-wrap: anywhere;
    word-break: normal;
}

.article-body > :first-child { margin-top: 0; }
.article-body p {
    margin: 0 0 var(--single-post-content-spacing, 1.35em);
    line-height: var(--single-post-body-line-height, 2.05);
}
.article-body h1,
.article-body h2,
.article-body h3 {
    margin: 1.7em 0 .65em;
    color: #111827;
    font-family: var(--font-arabic-heading);
    line-height: 1.45;
}
.article-body h1 { font-size: 1.75em; }
.article-body h2 { padding-bottom: .25em; border-bottom: 2px solid #eee8e0; font-size: 1.48em; }
.article-body h3 { font-size: 1.25em; }
.article-body a { color: #a90f16; text-decoration: underline; text-underline-offset: .14em; }
.article-body a:hover { color: #d82220; }
.article-body ul,
.article-body ol { margin: 0 0 var(--single-post-content-spacing, 1.35em); padding-inline-start: 1.6em; }
.article-body li { margin-block: .35em; line-height: var(--single-post-body-line-height, 2.05); }
.article-body blockquote {
    margin: 1.5em 0;
    padding: .9em 1.15em;
    border-inline-start: 5px solid #d82220;
    border-radius: 8px;
    background: #fff6f5;
    color: #343d4c;
    font-size: 1.08em;
    font-weight: 700;
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-block: 1.35em;
    border-radius: 10px;
}
.article-body figure { max-width: 100%; margin: 1.5em 0; }
.article-body figure img { margin-bottom: .45em; }
.article-body figcaption { color: #667085; font-size: .75em; line-height: 1.6; }
.article-body :is(div, span, p, a)[dir="ltr"] { direction: ltr; text-align: left; unicode-bidi: isolate; }
.article-body :is(div, span, p, a)[dir="ltr"] { font-family: "Poppins", Arial, Helvetica, sans-serif; }
.article-body .content-align-left { text-align: left; }
.article-body .content-align-center { text-align: center; }
.article-body .content-align-right { text-align: right; }
.article-body .mashaal-image-align-center { margin-inline: auto; }
.article-body .mashaal-image-align-left { margin-inline: 0 auto; }
.article-body .mashaal-image-align-right { margin-inline: auto 0; }
.article-body .content-image-size-sm { width: min(100%, 22rem); }
.article-body .content-image-size-md { width: min(100%, 34rem); }
.article-body .content-image-size-lg { width: min(100%, 44rem); }
.article-body .content-image-size-full { width: 100%; }
.article-body iframe,
.article-body video { width: 100%; max-width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }

.article-related-stories {
    position: relative;
    float: right;
    width: min(100%, 18rem);
    margin: 0.35rem 0 0.75rem 1.35rem;
    padding: 0.1rem 1rem 0.2rem 1.1rem;
    border-inline-start: 0;
    border-inline-end: 0;
    background: transparent;
    direction: rtl;
    box-sizing: border-box;
}

.article-related-stories::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2.7rem;
    bottom: 0;
    width: 3px;
    background: #9aa9b8;
    pointer-events: none;
}
.article-related-stories h2 {
    margin: 0 0 0.35rem;
    color: #2878a8;
    font-size: 1.5rem;
    line-height: 1.3;
    transform: none;
}

.article-related-stories:hover h2 {
    color: #2878a8;
    transform: none;
}

.article-related-stories article {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0.25rem 0 !important;
    border-top: 1px solid #e5e7eb;
}

.article-related-stories article:first-of-type {
    border-top: 0;
}

.article-related-stories a {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: 0.4rem;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    color: #374151;
    text-decoration: none;
}

.article-related-stories__link--no-image {
    grid-template-columns: minmax(0, 1fr);
}

.article-related-stories img {
    display: block;
    width: 5rem;
    height: 3.65rem;
    margin: 0 !important;
    border-radius: 6px;
    object-fit: cover;
}

.article-related-stories a > span {
    display: -webkit-box;
    min-width: 0;
    margin: 0;
    padding-left: 0.15rem;
    overflow: hidden;
    color: #374151;
    font-family: var(--font-arabic-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.20;
    transition: color 180ms ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.article-related-stories a:hover > span,
.article-related-stories a:focus-visible > span {
    color: #d82220;
    text-decoration: none;
}

@media (max-width: 48rem) {
    .article-related-stories { float: none; width: auto; margin: 1.25rem 0; }
}

.article-tags,
.article-author,
.article-neighbors { max-width: 48rem; }

.article-ad-hook[hidden] { display: none; }
.article-ad-hook--wide { max-width: 48rem; margin-top: 2rem; }
.article-ad-hook--sidebar { margin-block: 0 1.5rem; }

.article-author { order: 0; }
.article-body { order: 10; }
.article-ad-hook--wide { order: 20; }
.article-comments { order: 30; }
.article-tags { order: 40; }
.article-neighbors { order: 50; }

.article-main--order-tags-comments-navigation .article-tags { order: 30; }
.article-main--order-tags-comments-navigation .article-comments { order: 40; }
.article-main--order-comments-navigation-tags .article-neighbors { order: 40; }
.article-main--order-comments-navigation-tags .article-tags { order: 50; }

.article-content-advertisement {
    display: grid;
    width: 100%;
    margin-block: 2rem;
}

.article-content-advertisement__creative {
    display: none;
    width: 100%;
}

.article-content-advertisement__creative--desktop {
    display: block;
}

.article-content-advertisement__creative img,
.article-content-advertisement__creative iframe {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.article-content-advertisement__creative > a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .article-content-advertisement__creative > a {
        cursor: pointer;
        transition: box-shadow .25s ease;
    }

    .article-content-advertisement__creative > a img {
        transition: transform .25s ease;
    }

    .article-content-advertisement__creative > a:hover {
        box-shadow: 0 0 0 2px #d82220, 0 5px 14px rgb(24 33 45 / .12);
    }

    .article-content-advertisement__creative > a:hover img {
        transform: scale(1.015);
    }
}

.article-content-advertisement__creative > a:focus-visible {
    outline: 2px solid #d82220;
    outline-offset: 3px;
}

.article-sidebar-advertisement {
    display: grid;
    width: 100%;
    margin: 0 0 1.5rem;
}

.article-sidebar-advertisement__creative {
    display: none;
    width: 100%;
}

.article-sidebar-advertisement__creative--desktop {
    display: block;
}

.article-sidebar-advertisement__creative img,
.article-sidebar-advertisement__creative iframe {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.article-sidebar-advertisement__creative > a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .article-sidebar-advertisement__creative > a {
        cursor: pointer;
        transition: box-shadow .25s ease;
    }

    .article-sidebar-advertisement__creative > a img {
        transition: transform .25s ease;
    }

    .article-sidebar-advertisement__creative > a:hover {
        box-shadow: 0 0 0 2px #d82220, 0 5px 14px rgb(24 33 45 / .12);
    }

    .article-sidebar-advertisement__creative > a:hover img {
        transform: scale(1.015);
    }
}

.article-sidebar-advertisement__creative > a:focus-visible {
    outline: 2px solid #d82220;
    outline-offset: 3px;
}

.article-comments { max-width: 48rem; margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid #e7e3dc; }
.article-comments > h2 { margin: 0 0 1rem; font-size: 1.45rem; }
.article-comment { padding: 1rem 0; border-bottom: 1px solid #eeeae4; }
.article-comment header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.article-comment time { color: #737d8c; font-size: .78rem; }
.article-comments :is(.article-latin, [lang="en"], .article-comment__metadata) { font-family: "Poppins", Arial, Helvetica, sans-serif; }
.article-comment p { margin: .45rem 0 0; white-space: pre-wrap; font-size: 1.1rem; line-height: 1.8; }
.article-comment-form { display: grid; margin-top: 1.5rem; gap: .45rem; }
.article-comment-form label { font-weight: 700; }
.article-comment-form input,.article-comment-form textarea { width: 100%; box-sizing: border-box; padding: .65rem .75rem; border: 1px solid #d9d5cf; border-radius: 7px; background: #fff; color: #202938; font: inherit; }
.article-comment-form textarea { min-height: 8rem; resize: vertical; }
.article-comment-form button { width: fit-content; margin-top: .35rem; padding: .6rem 1.1rem; border: 0; border-radius: 7px; background: #d82220; color: #fff; cursor: pointer; font: inherit; font-weight: 700; }
.article-comment-form__error { margin: 0; color: #b42318; font-size: .9rem; }
.article-comment-form__notice { margin: 0 0 1rem; padding: .75rem .9rem; border: 1px solid #bfdbfe; border-radius: 8px; background: #eff6ff; color: #1e40af; font-family: "Poppins", Arial, Helvetica, sans-serif; font-size: .85rem; line-height: 1.55; }
.article-comment-form__notice--success { border-color: #bbf7d0; background: #f0fdf4; color: #166534; }
.article-comment-form__notice--error { border-color: #fecaca; background: #fef2f2; color: #991b1b; }
.article-comment-form__honeypot { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.article-tags {
    margin-top: 2.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #e7e3dc;
}
.article-tags h2 { margin-bottom: .7rem; font-size: 1.35rem; }
.article-tags > div { display: flex; flex-wrap: wrap; gap: .5rem; }
.article-tags span {
    display: inline-flex;
    min-height: 2.2rem;
    padding-inline: .85rem;
    align-items: center;
    border: 1px solid #ead9d7;
    border-radius: 999px;
    background: #fff7f6;
    color: #9f1717;
    font-size: 1rem;
    text-decoration: none;
}

.article-author {
    display: grid;
    grid-template-columns: minmax(8.5rem, .85fr) minmax(0, 1.9fr);
    width: 100%;
    margin: 0 0 1.2rem;
    padding: .65rem 1rem;
    align-items: center;
    gap: 1rem;
    direction: ltr;
    border: 1px dashed #e4d8d4;
    border-radius: 8px;
    background: #fffdfc;
    box-shadow: 0 3px 12px rgb(17 24 39 / .04);
}

.article-author__identity {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: .75rem;
    direction: rtl;
}

.article-author__identity > img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border: 2px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px rgb(17 24 39 / .15);
}

.article-author__initial {
    display: inline-grid;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #d82220;
    box-shadow: 0 3px 10px rgb(17 24 39 / .15);
    color: #fff;
    font-family: var(--font-arabic-heading);
    font-size: 1.65rem;
    font-weight: 700;
}

.article-author__copy {
    min-width: 0;
    direction: rtl;
}

.article-author__label {
    display: inline-flex;
    margin-block-end: .1rem;
    padding: .08rem .45rem;
    border-radius: 999px;
    background: #feeceb;
    color: #d82220;
    font-size: calc(.82rem + 1px);
    font-weight: 700;
    line-height: 1.3;
}

.article-author h2 {
    margin: 0;
    color: #172033;
    font-size: calc(1.2rem - 1px);
    font-weight: 600;
    line-height: 1.35;
}

.article-author__title {
    margin: 0;
    color: #697386;
    font-size: calc(.93rem - 1px);
    line-height: 1.35;
}

.article-author__published {
    display: flex;
    min-height: 4rem;
    min-width: 0;
    padding-inline-end: 1rem;
    border-inline-end: 1px solid #e6dedb;
    flex-direction: column;
    justify-content: center;
    color: #697386;
    font-size: calc(.88rem - 1px);
    line-height: 1.5;
    text-align: start;
    direction: ltr;
}

.article-author__published span {
    display: block;
}

.article-neighbors {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.7rem;
}
.article-neighbors a { min-width: 0; padding: 1rem; border: 1px solid #e1d9d4; border-inline-start: 4px solid #d82220; border-radius: 9px; background: linear-gradient(135deg, #fff 0%, #fff9f8 100%); box-shadow: 0 5px 15px rgb(17 24 39 / .05); text-decoration: none; transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease; }
.article-neighbors a:hover,.article-neighbors a:focus-visible { border-color: #d82220; box-shadow: 0 8px 18px rgb(17 24 39 / .1); transform: translateY(-1px); }
.article-neighbors small { display: block; margin-bottom: .3rem; color: #c8191f; font-size: .9rem; font-weight: 700; }
.article-neighbors span { display: -webkit-box; overflow: hidden; color: #202938; font-size: 1.16rem; font-weight: 700; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.article-sidebar__block {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e7e3dc;
    border-radius: 12px;
    background: #fff;
}
.article-sidebar__block > h2 { margin: 0 0 .8rem; padding-bottom: .5rem; border-bottom: 2px solid #d82220; font-size: 1.45rem; }
.article-sidebar__stories article { display: grid; grid-template-columns: 5.5rem minmax(0, 1fr); gap: .7rem; padding-block: .75rem; border-bottom: 1px solid #eeeae4; direction: ltr; }
.article-sidebar__stories article:last-child { border-bottom: 0; }
.article-sidebar__image { display: block; width: 5.5rem; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 7px; background: #f2f2f2; }
.article-sidebar__image:empty { display: none; }
.article-sidebar__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-sidebar__stories article > div { min-width: 0; direction: rtl; }
.article-sidebar__stories h3 { margin: 0; font-size: 1.205rem; line-height: 1.45; }
.article-sidebar__stories h3 a { color: #202938; text-decoration: none; }
.article-sidebar__stories h3 a:hover { color: #d82220; }
.article-sidebar__stories time { color: #737d8c; font-size: .82rem; }

.article-related { margin-top: clamp(2.5rem, 5vw, 4rem); }
.article-related > header { position: relative; display: flex; margin-bottom: 1.15rem; padding-bottom: .45rem; align-items: end; border-bottom: 3px solid #e3d3d0; }
.article-related > header::after { position: absolute; inset-inline-start: 0; inset-block-end: -3px; width: min(10rem, 36%); height: 3px; background: #d82220; content: ""; }
.article-related > header h2 { display: inline-flex; margin: 0; padding: .35rem .9rem; border-inline-start: 5px solid #d82220; color: #b5161b; font-size: 1.7rem; font-weight: 700; }
.article-related__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.article-related__grid article { min-width: 0; overflow: hidden; border: 1px solid #e6e2dc; border-radius: 12px; background: #fff; box-shadow: 0 7px 20px rgb(17 24 39 / .05); }
.article-related__image { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #f3f3f3; }
.article-related__image:empty { display: none; }
.article-related__image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 180ms ease; }
.article-related__grid article:hover .article-related__image img { transform: scale(1.025); }
.article-related__grid article > div { padding: .8rem; }
.article-related__category { color: #d82220; font-size: .9rem; font-weight: 700; }
.article-related__grid h3 { margin: .25rem 0 .4rem; font-size: 1.2rem; line-height: 1.5; }
.article-related__grid h3 a { color: #202938; text-decoration: none; }
.article-related__grid time { color: #737d8c; font-size: .85rem; }

.article-follow { max-width: 62rem; margin: clamp(2.5rem, 5vw, 4rem) auto 0; font-family: "Poppins", Arial, Helvetica, sans-serif; }
.article-follow > header { margin-bottom: 1rem; border-bottom: 2px solid #e3d3d0; }
.article-follow h2 { display: inline-block; margin: 0; padding: 0 0 .5rem; border-bottom: 3px solid #d82220; color: #202938; font-size: 1.25rem; }
.article-follow__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.article-follow__card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: .8rem; padding: 1rem; align-items: center; border: 1px solid #e6e2dc; border-radius: 12px; background: #fff; box-shadow: 0 7px 20px rgb(17 24 39 / .05); text-align: left; }
.article-follow__avatar { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; overflow: hidden; border: 1px solid #eadbd8; border-radius: 50%; background: #fff; }.article-follow__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }.article-follow__icon { display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border-radius: 7px; color: #fff; }.article-follow__icon svg { width: 1rem; height: 1rem; fill: currentColor; }.article-follow__card--youtube .article-follow__icon { background: #e62117; }.article-follow__card--facebook .article-follow__icon { background: #1877f2; }.article-follow__card--tiktok .article-follow__icon,.article-follow__card--x .article-follow__icon { background: #111; }.article-follow__card--instagram .article-follow__icon { background: #d62976; }.article-follow__card--telegram .article-follow__icon { background: #229ed9; }
.article-follow__copy { min-width: 0; }.article-follow__platform,.article-follow__card strong,.article-follow__card small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }.article-follow__platform { color: #697386; font-size: .72rem; font-weight: 600; }.article-follow__card strong { color: #202938; font-size: .92rem; }.article-follow__card small { margin-top: .1rem; color: #697386; font-size: .72rem; }
.article-follow__card a { grid-column: 1 / -1; display: block; padding: .5rem .65rem; border-radius: 7px; background: #d82220; color: #fff; font-size: .78rem; font-weight: 700; text-align: center; text-decoration: none; }.article-follow__card a:hover,.article-follow__card a:focus-visible { background: #a90f16; }

@media (min-width: 64.001rem) {
    .article-sidebar { position: sticky; top: 1rem; }
}

@media (max-width: 64rem) {
    .article-layout { grid-template-columns: 1fr; grid-template-areas: "article" "sidebar"; }
    .article-body,
    .article-tags,
    .article-neighbors { max-width: 52rem; margin-inline: auto; }
    .article-author { width: 100%; }
    .article-sidebar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
    .article-sidebar__block { margin-bottom: 0; }
    .article-ad-hook--sidebar { display: none; }
    .article-content-advertisement__creative--desktop { display: none; }
    .article-content-advertisement__creative--tablet { display: block; }
    .article-sidebar-advertisement__creative--desktop { display: none; }
    .article-sidebar-advertisement__creative--tablet { display: block; }
    .article-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-follow__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .article-featured--hero { width: 100%; }
}

@media (max-width: 40rem) {
    .article-header { padding-bottom: .7rem; }
    .article-header h1 { font-size: clamp(2rem, 10vw, 2.8rem); line-height: 1.3; }
    .article-header__deck { font-size: 1.2rem; }
    .article-featured__media { height: auto; aspect-ratio: 16 / 9; }
    .article-featured__headline { right: 1rem; bottom: 1rem; left: 1rem; font-size: clamp(1.6rem, 7.5vw, 2.3rem); line-height: 1.32; }
    .article-post-tools { align-items: flex-start; }
    .article-featured figcaption { flex-direction: column; }
    .article-body { --article-font-size: 1.3rem; line-height: 1.95; }
    .article-sidebar { grid-template-columns: 1fr; }
    .article-content-advertisement { margin-block: 1.5rem; }
    .article-content-advertisement__creative--tablet { display: none; }
    .article-content-advertisement__creative--mobile { display: block; }
    .article-sidebar-advertisement__creative--tablet { display: none; }
    .article-sidebar-advertisement__creative--mobile { display: block; }
    .article-related__grid { grid-template-columns: 1fr; }
    .article-follow__grid { grid-template-columns: 1fr; }
    .article-author { padding: .65rem .85rem; }
    .article-neighbors { grid-template-columns: 1fr; }
}

@media (max-width: 25rem) {
    .article-post-tools { flex-direction: column; }
    .article-social-share,
    .article-tools { width: 100%; }
    .article-tools button { flex: 1 1 auto; }
    .article-author {
        grid-template-columns: 1fr;
        gap: .75rem;
    }
    .article-author__identity { width: 100%; align-items: flex-start; }
    .article-author__published {
        width: 100%;
        padding: 0 0 .65rem;
        border-inline-end: 0;
        border-block-end: 1px solid #e6dedb;
        text-align: start;
    }
    .article-author__identity > img,
    .article-author__initial {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .article-progress span,
    .article-social-share a,
    .article-related__image img,
    .article-neighbors a { transition: none; }
}

@media print {
    .utility-bar,
    .site-header,
    .news-ticker,
    .frontend-flash,
    .article-progress,
    .breadcrumbs,
    .article-post-tools,
    .article-sidebar,
    .article-neighbors,
    .article-related,
    .article-ad-hook,
    .site-footer { display: none !important; }
    .site-main { padding: 0; }
    .editorial-container { width: 100%; }
    .article-header,
    .article-featured,
    .article-body { max-width: none; }
    .article-layout { display: block; }
    .article-featured > img { max-height: 35vh; box-shadow: none; }
    .article-body { color: #000; font-size: 14pt; line-height: 1.8; }
    .article-body a { color: #000; text-decoration: none; }
}


@media (max-width: 40rem) {
    .article-body {
        font-size: 1.85rem !important;
        line-height: 1.45 !important;
    }

    .article-body p {
        font-size: 1.75rem !important;
        line-height: 1.45 !important;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 40rem) {
    .article-sidebar article a,
    .article-sidebar article .article-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 40rem) {
    .article-related__grid h3 a {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 40rem) {
    .article-related-stories a > span {
        font-size: 1.65rem !important;
        line-height: 1.45 !important;
        font-weight: 700 !important;
    }
}