body#index.article-page {
    background: #e3e3e3;
    color: #000000;
    font-family: "Montserrat", sans-serif;
}

.article-main {
    padding-bottom: 80px;
}

.article-hero {
    padding: 72px 20px 34px;
}

.article-hero__content {
    width: min(calc(100% - 48px), 1315px);
    margin: 0 auto;
    text-align: center;
}

.article-hero h1 {
    max-width: 1058px;
    margin: 0 auto 24px;
    color: #000000;
    font-size: clamp(2.8rem, 5vw, 60px);
    font-weight: 800;
    line-height: 1.22;
}

.article-hero__subtitle {
    max-width: 1315px;
    margin: 0 auto 28px;
    color: #000000;
    font-size: clamp(2rem, 4vw, 42px);
    font-style: italic;
    font-weight: 500;
    line-height: 1.24;
}

.article-hero__meta {
    min-height: 35px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 6px 22px;
    border: 1px solid #5d0dbf;
    border-radius: 100px;
    color: #5d0dbf;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.45px;
}

.article-hero__meta-label {
    font-size: 0.8em;
    font-weight: 600;
    opacity: 0.9;
}

.article-hero__meta-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.article-hero__meta-divider {
    width: 1px;
    height: 22px;
    background: #5d0dbf;
}

.article-hero__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.article-hero__tags li {
    padding: 7px 14px;
    border: 1px solid rgba(93, 13, 191, 0.28);
    border-radius: 999px;
    color: #5d0dbf;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.article-hero-image {
    width: min(100%, 1400px);
    margin: 0 auto 32px;
}

.article-hero-image img {
    width: 100%;
    height: min(467px, 48vw);
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.article-wrapper {
    width: min(calc(100% - 48px), 1315px);
    margin: 0 auto;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 382px;
    gap: 36px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.article-content__lead,
.article-content__body {
    color: #000000;
    font-size: 21px;
    font-weight: 500;
    line-height: 25px;
}

.article-content__lead {
    margin-bottom: 34px;
}

.article-content__lead p,
.article-content__body p {
    margin: 0 0 24px;
}

.article-rich-content > :first-child {
    margin-top: 0;
}

.article-rich-content > :last-child {
    margin-bottom: 0;
}

.article-rich-content h2,
.article-rich-content h3,
.article-rich-content h4 {
    margin: 40px 0 18px;
    color: #000000;
    font-weight: 800;
    line-height: 1.2;
}

.article-rich-content h2 {
    font-size: clamp(1.9rem, 3vw, 34px);
    display: flex;
    align-items: center;
    gap: 12px;
    scroll-margin-top: 110px;
    width: fit-content;
    max-width: 100%;
}

.article-rich-content h3 {
    font-size: clamp(1.5rem, 2.4vw, 28px);
    scroll-margin-top: 110px;
}

.article-rich-content h4 {
    font-size: clamp(1.2rem, 2vw, 22px);
    scroll-margin-top: 110px;
}

.article-heading-anchor {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(93, 13, 191, 0.1);
    color: #5d0dbf;
    cursor: pointer;
    opacity: 0;
    transform: translateY(2px);
    margin-left: 2px;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.article-heading-anchor svg {
    width: 16px;
    height: 16px;
}

.article-rich-content h2:hover .article-heading-anchor,
.article-rich-content h2:focus-within .article-heading-anchor,
.article-heading-anchor:hover {
    opacity: 1;
    background: rgba(93, 13, 191, 0.18);
    color: #40127c;
    transform: translateY(-1px);
}

.article-rich-content h2[data-copied="true"] .article-heading-anchor,
.article-rich-content h2[data-copied="true"] .article-heading-anchor:hover {
    background: rgba(53, 121, 246, 0.18);
    color: #2459b8;
}

.article-rich-content p,
.article-rich-content ul,
.article-rich-content ol,
.article-rich-content blockquote {
    margin: 0 0 24px;
}

.article-rich-content ul,
.article-rich-content ol {
    padding-left: 28px;
}

.article-rich-content li + li {
    margin-top: 10px;
}

.article-rich-content a {
    color: #3579f6;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.article-rich-content img {
    width: 100%;
    display: block;
    margin: 32px 0;
    border-radius: 18px;
}

.article-rich-content table {
    width: 100% !important;
    border-collapse: collapse;
    border: 0 !important;
    background: transparent;
    margin: 0 0 24px;
}

.article-rich-content table td,
.article-rich-content table th {
    border: 0 !important;
    background: transparent;
    padding: 0;
    vertical-align: top;
}

.article-rich-content table img {
    margin: 0;
}

.article-rich-content [data-youtube-video],
.article-rich-content div[data-youtube-video] {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    margin: 38px 0;
    border-radius: 24px;
    background: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.article-rich-content [data-youtube-video] iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-rich-content iframe,
.article-rich-content video {
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto !important;
    display: block;
    margin: 38px 0;
    border: 0;
    border-radius: 24px;
}

.article-rich-content .mce-object-iframe,
.article-rich-content .tox-embed-iframe,
.article-rich-content .mce-preview-object,
.article-rich-content .mce-preview-object-selected {
    width: 100% !important;
    max-width: 100%;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.article-rich-content blockquote {
    padding: 24px 28px;
    border-left: 4px solid #5d0dbf;
    background: rgba(93, 13, 191, 0.08);
    font-style: italic;
}

.editorial-note {
    margin: 32px 0;
    padding: 22px 24px;
    border: 1px solid rgba(93, 13, 191, 0.18);
    border-radius: 22px;
    background: rgba(93, 13, 191, 0.06);
}

.editorial-note__title {
    display: block;
    margin-bottom: 10px;
    color: #5d0dbf;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.editorial-note__content > :last-child {
    margin-bottom: 0;
}

.editorial-image-pair {
    margin: 36px 0;
}

.editorial-image-pair__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.editorial-image-pair__grid img {
    width: 100%;
    height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.editorial-image-pair__caption {
    margin-top: 12px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    line-height: 1.45;
}

.editorial-callout-quote {
    margin: 38px 0;
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(53, 121, 246, 0.12), rgba(93, 13, 191, 0.14));
}

.editorial-callout-quote blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    color: #000000;
    font-size: clamp(1.35rem, 2.2vw, 28px);
    font-style: italic;
    font-weight: 600;
    line-height: 1.35;
}

.editorial-callout-quote figcaption {
    margin-top: 14px;
    color: rgba(0, 0, 0, 0.72);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.editorial-youtube {
    margin: 38px 0;
}

.editorial-youtube__frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    background: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.editorial-youtube__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-media-grid {
    display: grid;
    grid-template-columns: 326px minmax(0, 1fr);
    gap: 5px;
    margin-bottom: 40px;
}

.article-media-grid__item {
    margin: 0;
}

.article-media-grid__item img {
    width: 100%;
    height: 332px;
    object-fit: cover;
    display: block;
}

.article-video {
    margin-top: 56px;
}

.article-video__header {
    margin-bottom: 22px;
}

.article-video__frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 24px;
    background: #111111;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.article-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-share {
    margin-top: 48px;
}

.article-share__title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.article-share__social {
    display: flex;
    gap: 10px;
}

.article-share__social a {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.article-share__social a:nth-child(1) {
    background: #1877f2;
}

.article-share__social a:nth-child(2) {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.article-share__social a:nth-child(3) {
    background: #000000;
}

.article-share__social a:hover {
    transform: translateY(-3px);
    opacity: 0.92;
    color: #ffffff;
}

.article-sidebar {
    --article-sidebar-preview-height: 64px;
    --article-sidebar-expanded-height: 190px;
    background: #1f1f1f;
    padding: 24px 18px 24px;
    position: sticky;
    top: 24px;
    align-self: start;
}

.article-sidebar__search {
    position: relative;
    margin-bottom: 24px;
}

.article-sidebar__search input {
    width: 100%;
    height: 41px;
    padding: 0 24px;
    border: 1px solid #707070;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.21);
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
}

.article-sidebar__search input::placeholder {
    color: #ffffff;
    opacity: 1;
}

.article-sidebar__search input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.65);
}

.article-sidebar__header {
    margin-bottom: 18px;
}

.article-sidebar__accordion {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.article-sidebar__section {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.article-sidebar__toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    cursor: pointer;
}

.article-sidebar__toggle i {
    transition: transform 0.2s ease;
}

.article-sidebar__section.is-open .article-sidebar__toggle i {
    transform: rotate(180deg);
}

.article-sidebar__panel {
    max-height: var(--article-sidebar-preview-height);
    overflow: hidden;
    padding: 0 14px 14px;
    position: relative;
    transition: max-height 0.25s ease;
}

.article-sidebar__panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42px;
    background: linear-gradient(to bottom, rgba(31, 31, 31, 0), rgba(31, 31, 31, 1));
    pointer-events: none;
}

.article-sidebar__section.is-open .article-sidebar__panel {
    max-height: var(--article-sidebar-expanded-height);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.article-sidebar__section.is-open .article-sidebar__panel::after {
    display: none;
}

.article-sidebar__section.is-open .article-sidebar__panel::-webkit-scrollbar {
    width: 8px;
}

.article-sidebar__section.is-open .article-sidebar__panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.article-sidebar__section.is-open .article-sidebar__panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.article-outline {
    margin: 0;
}

.article-outline__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.article-outline__item {
    margin: 0;
}

.article-outline__item--level-3 {
    padding-left: 16px;
}

.article-outline__item--level-4 {
    padding-left: 32px;
}

.article-outline__link {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.38;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-outline__link:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(2px);
    text-decoration: none;
}

.article-sidebar__header h2 {
    margin-right: 24px;
    font-size: 17px;
    line-height: 20px;
}

.article-sidebar__nav {
    color: #ffffff;
    margin-bottom: 0;
}

.article-sidebar__list,
.article-sidebar__subcategories {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-sidebar__item {
    margin-bottom: 6px;
}

.article-sidebar__link {
    position: relative;
    display: block;
    min-height: 39px;
    padding: 9px 16px 9px 33px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-sidebar__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateY(-50%);
}

.article-sidebar__link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 9px;
    height: 2px;
    background: #ffffff;
    transform: translateY(-50%);
}

.article-sidebar__item.is-active > .article-sidebar__link {
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(112, 112, 112, 0.45);
}

.article-sidebar__subcategories {
    padding: 6px 0 0 45px;
}

.article-sidebar__subcategory-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 18px;
    margin-bottom: 8px;
}

.article-sidebar__subcategory-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -17px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateY(-50%);
}

.article-sidebar__subcategory-link {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    line-height: 17px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-sidebar__link:hover,
.article-sidebar__subcategory-link:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateX(2px);
}

.article-sidebar__header--recommendations {
    margin-top: 0;
}

.article-recommendations {
    display: grid;
    gap: 14px;
    content-visibility: auto;
    contain-intrinsic-size: 1px 420px;
}

.article-recommendation {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.article-recommendation__image {
    width: 108px;
    height: 78px;
    object-fit: cover;
    border: 1px solid #707070;
}

.article-recommendation__body {
    min-width: 0;
    padding-top: 1px;
}

.article-recommendation__title {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.article-recommendation .btn-leermas {
    min-width: 94px;
    justify-content: center;
    min-height: auto;
    font-size: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.article-recommendation .btn-leermas:hover {
    transform: translateX(2px);
}

@media (max-width: 1100px) and (min-width: 769px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding-bottom: 56px;
    }

    .article-hero {
        padding: 48px 18px 28px;
    }

    .article-hero__meta {
        width: 100%;
        max-width: 360px;
        gap: 14px;
        font-size: 16px;
        line-height: 20px;
    }

    .article-hero__meta-stack {
        gap: 10px;
    }

    .article-hero__tags {
        gap: 8px;
    }

    .article-hero-image {
        margin-bottom: 24px;
    }

    .article-wrapper {
        width: min(calc(100% - 32px), 1315px);
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .article-content__lead,
    .article-content__body {
        font-size: 18px;
        line-height: 24px;
    }

    .article-rich-content img {
        margin: 24px 0;
    }

    .article-rich-content [data-youtube-video] {
        margin: 28px 0;
    }

    .article-rich-content h2 {
        align-items: flex-start;
    }

    .article-heading-anchor {
        opacity: 1;
        transform: none;
    }

    .editorial-note {
        padding: 20px 18px;
    }

    .editorial-image-pair__grid {
        grid-template-columns: 1fr;
    }

    .editorial-image-pair__grid img {
        height: 260px;
    }

    .editorial-callout-quote {
        padding: 22px 18px;
    }

    .article-media-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-media-grid__item img {
        height: 260px;
    }

    .article-sidebar {
        --article-sidebar-preview-height: 76px;
        --article-sidebar-expanded-height: 220px;
        position: static;
        padding: 24px 18px 28px;
    }

    .article-video {
        margin-top: 40px;
    }

    .article-recommendation {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 14px;
    }

    .article-recommendation__image {
        width: 110px;
        height: 84px;
    }
}
