@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");

.article-page {
    background: var(--ivory);
}

.article-ad-band {
    padding: 112px clamp(22px, 5vw, 76px) 18px;
    background: var(--ivory);
}

.article-ad {
    display: grid;
    place-items: center;
    gap: 6px;
    margin-inline: auto;
    border: 1px dashed rgba(17, 17, 17, 0.22);
    background: rgba(255, 255, 255, 0.54);
    color: var(--muted);
    text-align: center;
}

.article-ad span {
    color: rgba(17, 17, 17, 0.42);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.article-ad strong {
    color: var(--ink);
}

.article-ad.leaderboard {
    max-width: 980px;
    min-height: 90px;
}

.article-ad.square {
    width: min(100%, 300px);
    min-height: 250px;
}

.article-ad.skyscraper {
    position: sticky;
    top: 150px;
    width: min(100%, 300px);
    min-height: 600px;
}

.article-ad.billboard {
    max-width: 970px;
    min-height: 250px;
}

.article-hero {
    display: grid;
    gap: 26px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px clamp(22px, 5vw, 76px) 34px;
    color: var(--ink);
}

.article-hero-no-ad {
    padding-top: 112px;
}

.article-hero-content {}

.article-hero-media {}

.article-hero-media img {
    width: 100%;
    height: clamp(260px, 42vw, 540px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.article-kicker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.article-kicker a {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 960px;
    margin-bottom: 22px;

    font-size: clamp(20px, 2vw, 50px);
    line-height: 1;
}

.article-hero p {
    display: none;
    max-width: 820px;
    color: rgba(17, 17, 17, 0.76);
    font-size: clamp(17px, 1.55vw, 22px);
    line-height: 1.6;
}

.article-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 22px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.article-author span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--black);
    font-weight: 900;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-share i {
    font-size: 16px;
    line-height: 1;
}

.article-share a,
.article-share button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
}

.article-share a:hover,
.article-share button:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.article-join-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border: 2px solid var(--gold);
    border-radius: 999px;
    background: #f7f7f7;
    color: #101010;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.article-join-whatsapp::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/whatsapp.png") center / contain no-repeat;
}

.article-join-whatsapp:hover {
    transform: translateY(-1px);
    border-color: #b8b8b8;
    background: #ffffff;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 340px);
    justify-content: center;
    gap: clamp(24px, 3vw, 40px);
    max-width: 1180px;
    margin: 0 auto;

    padding-bottom: clamp(68px, 9vw, 112px);
}

.article-content {
    max-width: none;
}

.article-content p {
    color: rgba(17, 17, 17, 0.72);
    font-size: 19px;
    line-height: 1.2;
}

.article-content>p:first-of-type::first-letter {
    float: left;
    margin: 8px 14px 0 0;
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 82px;
    font-weight: 800;
    line-height: 0.78;
}

.article-content h2 {
    margin: 54px 0 22px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
}

.article-content blockquote {
    margin: 42px 0;
    padding: 28px;
    border-left: 4px solid var(--gold);
    background: rgba(232, 216, 170, 0.28);
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(24px, 2.5vw, 34px);

    font-weight: 400;
    line-height: 1.24;
}

.article-content figure {
    margin: 44px 0;
}

.article-content figure img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.article-content.content_origin_migrated p:has(> img) {}

.article-content.content_origin_migrated p>img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    margin: 0 auto;
    object-fit: contain;
    object-position: top;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.article-content figcaption {
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    font-style: italic;
    text-align: center;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    border-top: 0;
}

.article-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #d80d0d;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--graphite);
    font-size: 11px;
    font-weight: 600;
}

.article-tags a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.article-sidebar {
    display: grid;
    align-content: start;
    justify-items: center;
    gap: 34px;
}

.read-next-card {
    width: 100%;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--black);
    color: var(--white);
}

.read-next-card h2 {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 30px;
}

.read-next-card div {
    display: grid;
}

.read-next-card a {
    display: grid;
    gap: 12px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.read-next-card a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.read-next-card img {
    width: 100%;
    aspect-ratio: 745 / 280;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: #111;
}

.read-next-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.read-next-card h3 {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.18;
}

.read-next-card a:hover h3 {
    color: var(--gold);
}

.article-bottom-ad {
    padding: 48px clamp(22px, 5vw, 76px);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.36);
}

.article-hero-media.content_origin_migrated {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #111;
    box-shadow: var(--shadow);
}

.article-hero-media.content_origin_migrated img {
    width: 100%;
    height: auto;
    aspect-ratio: 745 / 280;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
}

.article-content.content_origin_migrated p.migrated-picture-credit {
    max-width: min(100%, 720px);
    margin: -26px auto 38px;
    color: rgba(17, 17, 17, 0.55);
    font-size: 14px;
    font-style: italic;
    line-height: 1.45;
    text-align: center;
}

.article-content.content_origin_migrated p.migrated-picture-credit::first-letter {
    float: none;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.article-layout,
.article-hero,
.article-hero-media,
.article-content,
.article-sidebar,
.read-next-card,
.article-tags,
.article-share {
    min-width: 0;
}

.article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(17, 17, 17, 0.52);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-breadcrumb a {
    color: inherit;
}

.article-breadcrumb a:hover {
    color: var(--gold);
}

.article-ad.in-article {
    width: min(100%, 336px);
    min-height: 280px;
    margin: 38px auto;
}

.article-bottom-ad .article-ad.billboard {
    width: min(100%, 970px);
    margin: 0 auto;
}

.article-social-embed {
    width: min(100%, 680px);
    margin: 38px auto;
}

.article-social-embed-youtube iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--radius-lg);
    background: #111;
    box-shadow: var(--shadow);
}

.article-social-embed-instagram,
.article-social-embed-x {
    min-height: 180px;
}

.article-hero-media.content_origin_native {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #111;
    box-shadow: var(--shadow)
}

.article-hero-media.content_origin_native img {
    width: 100%;
    height: auto;
    aspect-ratio: 745/280;
    max-height: none;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    box-shadow: none
}

.article-social-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 680px;
    margin: 38px auto
}

.article-social-embed-instagram,
.article-social-embed-x {
    width: 100%;
    min-height: 180px
}

.article-social-embed .instagram-media,
.article-social-embed .twitter-tweet {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important
}

.article-social-embed iframe {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important
}

@media (max-width: 1180px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-ad.skyscraper {
        position: static;
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .article-ad-band {
        padding-top: 96px;
    }

    .article-hero {
        min-height: auto;
    }

    .article-meta-row,
    .article-share {
        flex-direction: row;
    }

    .article-content figure img {
        height: 280px;
    }

    .article-ad-band {
        padding-top: 70px;
    }

    .article-layout {
        gap: 34px;
    }

    .article-hero-media,
    .article-hero-media.content_origin_migrated {
        border-radius: 18px;
    }

    .article-content {
        overflow-wrap: anywhere;
    }

    .article-content figure {
        margin-inline: 0;
    }

    .article-content figure img,
    .article-content.content_origin_migrated p>img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }

    .article-meta-row,
    .article-share,
    .article-tags {
        gap: 10px;
    }

    .read-next-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .article-ad.in-article,
    .article-bottom-ad .article-ad.billboard {
        width: min(100%, 320px);
        min-height: 100px;
    }

    .article-hero-media.content_origin_native {
        border-radius: 18px
    }

    .article-hero-media.content_origin_native img {
        aspect-ratio: 745/280;
        object-fit: contain
    }
}
