:root {
    --brand-red: var(--main-red);
    --brand-red-dark: #C61D09;
    --brand-gradient: var(--gradient-brand);
    --bg-black: var(--black-100);
    --bg-dark-card: #0C0C0C;
    --text-white: var(--white-100);
    --text-gray: var(--light-gray);
    --text-gray-light: var(--white-70);
    --border-white: var(--white-16);
    --glass-bg: var(--white-1);
    --glass-border: var(--white-8);
}

body.page--article {
    background-color: var(--bg-black);
}



.article-hero__container {
    max-width: 1740px;
    padding: 0
}

.article-hero__card {
    background-color: var(--brand-red-dark);
    background-image: url('../img/Hero.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    padding: 100px 42px 42px;
    min-height: 838px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.article-hero__breadcrumbs {
    margin-left: 0;
    margin-bottom: auto;
    position: relative;
    z-index: 2;
}

/* Background image placeholder effect */


.article-hero__content {
    position: relative;
    z-index: 2;
    max-width: 983px;
    margin-bottom: 264px;
}

.article-hero__title {
    font-size: var(--font-h1);
    font-weight: 500;
    line-height: var(--line-height-h1);
    margin-bottom: 32px;
    max-width: 725px;
}

.article-hero__subtitle {
    font-size: var(--text-large);
    line-height: var(--line-height-large);
    opacity: 0.9;
    max-width: 430px;
    color: #fff;
}

.article-hero__footer {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.article-hero__tags {
    display: flex;
    gap: 64px;
    margin-bottom: 40px;
}

.article-hero__date,
.article-hero__topics {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-large);
}

.article-hero__dot {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.article-hero__more {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px;
    width: 216px;
    height: 64px;
    background: linear-gradient(93.88deg, #F32B0F -1.94%, #FF0011 100%);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.article-hero__more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 43, 15, 0.3);
}

.article-hero__more-inner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 24px;
    gap: 10px;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.article-hero__more:hover .article-hero__more-inner {
    background: rgba(255, 255, 255, 0.1);
}

.article-hero__more span {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    color: #FFFFFF;
    white-space: nowrap;
}

.article-hero__more svg {
    flex: none;
    color: #fff;
}

/* Article Body Layout */
.article-body {
    display: grid;
    grid-template-columns: 395px 1fr;
    gap: 100px;
    padding: 0;
    padding-top: 120px;
}

.article-content {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    /* Safety against flying blocks */
}

/* Sidebar / TOC */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    width: 395px;
    padding-right: 20px;
}

.toc__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.toc__title {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 32px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
}

.toc__toggle {
    display: none;
    /* Hidden on desktop */
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.toc__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.toc__toggle svg {
    transition: transform 0.3s ease;
}

.toc.is-active .toc__toggle svg {
    transform: rotate(45deg);
    /* Plus becomes X or just rotate */
}

.toc__body {
    display: block;
}

.toc__list {
    list-style: none;
    padding: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.toc__item {
    padding-left: 32px;
    position: relative;
}

.toc__item a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'TT Firs Neue';
    font-size: 18px;
    line-height: 150%;
    font-weight: 450;
    transition: color 0.3s;
    display: block;
}

.toc__item a:hover {
    color: #F32B0F;
}

.toc__item.active,
.toc__sub-item.active {
    border-left: 1px solid #F32B0F;
    margin-left: -1px;
}

.toc__item.active>a,
.toc__sub-item.active>a {
    color: #F32B0F;
}

.toc__sub-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
    margin-left: -32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc__sub-item {
    padding-left: 32px;
    position: relative;
}

.toc__sub-item a {
    font-size: 14px;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.7);
}

.toc__sub-item a:hover {
    color: #FFFFFF;
}

/* Smooth Scroll & Offset */
html {
    scroll-behavior: smooth;
}

.article-content h2,
.article-content h3 {
    scroll-margin-top: 120px;
}

/* Content Sections */
.article-content {
    max-width: 1285px;
}

.section-header {
    max-width: 650px;
    margin-bottom: 50px;
}

.section-title-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Slider Navigation (General) */
.slider-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 108px;
    height: 48px;
}

.slider-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-btn:disabled {
    opacity: 0.2;
    cursor: default;
}

/* Authors Slider */
.authors-section {
    margin-bottom: 120px;
    position: relative;
    width: 100%;
}

.authors-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    max-width: 100%;
    width: 100%;
}

.authors-section .section-title {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
}

.structure-section .section-title {
    font-weight: 450;
    font-size: 32px;
    margin-bottom: 24px;
    line-height: 130%;


}

/* Feature Cards Slider Specific Header */
.card-slider-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1245px;
}

.card-slider-section .section-title {
    max-width: 800px;
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0;
}

.authors-section .slider-btn svg {
    width: 22px;
    height: 22px;
}

.authors-slider {
    width: 100%;
    overflow: hidden;
    margin: 0 !important;
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 16px;
    width: 163px !important;
    height: 240px;
}

.author-card__img-wrapper {
    width: 163px;
    height: 163px;
    border-radius: 50%;
    background: #FFFFFF;
    margin-bottom: 0;
    overflow: hidden;
}

.author-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 4px;
    width: 163px;
    height: 61px;
}

.author-card__name {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.author-card__role {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 130%;
    text-align: center;
    color: #939393;
    margin: 0;
}

.authors-section__fade {
    position: absolute;
    width: 103px;
    height: 240px;
    right: 0px;
    bottom: 0px;
    background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

/* Slider Controls */
.slider-nav {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.slider-btn:disabled {
    opacity: 0.2;
    cursor: default;
}

/* Intro */
.article-intro {
    margin-bottom: 80px;
    max-width: 850px;
}

.intro-text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 24px;
}

/* Structure Cards */


.section-subtitle {
    font-size: var(--font-h3);
    font-weight: 450;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray-light);
}

.structure-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.structure-card {
    padding: 32px;
    border: 1px solid var(--border-white);
    border-radius: 16px;
}

.structure-card__title {
    font-size: var(--font-h4);
    font-weight: 450;
    margin-bottom: 32px;
}

.structure-card__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.structure-card__list li {
    position: relative;
    padding-left: 30px;
    font-size: var(--text-large);
    color: var(--text-gray-light);
}

.structure-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--brand-red);
    border-radius: 50%;
}

/* Listing */
.trends-listing {
    margin: 50px 0 80px;
}

.trend-item {
    border-top: 1px solid var(--border-white);
    padding: 32px 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.trend-item:first-child {
    border-top: none;
}

.trend-item__title {
    font-size: var(--font-h4);
    font-weight: 450;
}

.trend-item__content {
    font-size: var(--text-large);
    color: var(--text-gray-light);
    line-height: var(--line-height-large);
}

/* Quote Section */
.quote-section {
    margin-bottom: 120px;
}

.quote-card {
    background-color: var(--bg-dark-card);
    border-radius: 40px;
    padding: 48px;
}

.quote-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 32px;
}

.quote-author__img {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: var(--brand-red);
    border: 1px solid #FF753A;
    overflow: hidden;
}

.quote-author__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-author__name {
    font-size: var(--font-h3);
    color: var(--brand-red);
    font-weight: 450;
    margin-bottom: 12px;
}

.quote-author__role {
    font-size: var(--text-large);
}

.quote-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    font-size: var(--text-large);
    padding: 0;
    transition: opacity 0.3s;
}

.quote-btn:hover .quote-btn__icon {
    transform: translate(2px, -2px);
    opacity: 0.9;
}

.quote-btn__icon {
    width: 42px;
    height: 42px;
    background: var(--brand-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quote-btn__icon svg {
    width: 20px;
    height: 20px;
}

.quote-card__text {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
}

.quote-card__text p {
    margin-bottom: 24px;
}

.quote-card__text p:last-child {
    margin-bottom: 0;
}

/* Chart Section */
.chart-section {
    margin-bottom: 120px;
}

/* Upline Section */
.upline-section {
    margin: 80px 0 120px;
}

.upline-container {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.upline-content {
    position: absolute;
    top: 64px;
    left: 64px;
    z-index: 2;
}

.upline-title {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 450;
    font-size: 32px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 0 24px 0;
}

.upline-subtitle {
    font-family: 'TT Firs Neue';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.upline-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .upline-container {
        border-radius: 24px;
    }
}

/* Feature Cards */
.card-slider-section {
    margin-bottom: 120px;
}

.feature-card {
    width: 488px !important;
    /* Back to fixed width for Swiper slidesView: 'auto' */
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    height: 100%;
    /* Stretch to tallest card */
    display: flex;
    flex-direction: column;
    background: transparent;
}

@media (max-width: 575px) {
    .feature-card {
        width: 100% !important;
        height: auto;
    }
}

.feature-card__icon {
    width: 100px;
    height: 100px;
    background: #000000;
    box-shadow: inset 0px 0px 2.5641px rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    margin-bottom: 32px;
    overflow: hidden;
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card__title {
    font-size: 24px;
    font-weight: 450;
    line-height: 130%;
    color: #FFFFFF;
}

.feature-card__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card__list li {
    position: relative;
    padding-left: 22px;
    font-size: var(--text-large);
    line-height: var(--line-height-large);
}

.feature-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #F32B0F;
    border-radius: 50%;
}

.cards-slider {
    position: relative;
    overflow: hidden;
}

.cards-slider__fade {
    position: absolute;
    width: 103px;
    height: 445px;
    right: 0px;
    top: 0px;
    background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 3;
}

/* AI Platforms Section */
.ai-platforms-section {
    margin-bottom: 80px;
}

.ai-platforms-section .section-title {
    font-size: 32px;
    max-width: 800px;
    font-weight: 450;
    font-size: 32px;
    letter-spacing: 0%;

    margin-bottom: 50px;
}

.ai-listing {
    display: flex;
    flex-direction: column;
}

.ai-item {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
}

.ai-item__title {
    font-size: 24px;
    color: #FFFFFF;
}

.ai-item__content {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.ai-item__content p {
    margin-bottom: 32px;
}

.ai-item__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-item__list li {
    position: relative;
    padding-left: 22px;
}

.ai-item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #F32B0F;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .ai-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Article Tags */
.article-tags-section {
    margin-top: 80px;
    margin-bottom: 120px;
}

.article-tags-section .section-title {
    font-size: 32px;
    margin-bottom: 32px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tag-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;

    line-height: 150%;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.3s;
}

.tag-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Share Area */
.share-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 32px 32px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 120px;
}

.share-title {
    font-size: 24px;
    font-weight: 450;
    color: #FFFFFF;
}

.share-buttons {
    display: flex;
    gap: 16px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 64px;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 450;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.share-btn svg {
    opacity: 0.8;
}

@media (max-width: 991px) {
    .share-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 32px 24px;
    }

    .share-buttons {
        flex-wrap: wrap;
        width: 100%;
    }

    .share-btn {
        flex-grow: 1;
    }
}

/* FAQ Section */
.faq-section {
    margin-bottom: 120px;
}

.faq-section .section-title {
    font-size: 32px;
    margin-bottom: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 32px 32px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.faq-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-item__title {
    font-size: 24px;
    font-weight: 450;
    color: #FFFFFF;
}

.faq-item__btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #FFFFFF;
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__content {
    max-height: 800px;
    margin-top: 16px;
}

.faq-item.active .faq-item__btn {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.1);
}

.faq-item__text {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1328px;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 24px;
    }

    .faq-item__title {
        font-size: 18px;
    }
}

.article-content .team {
    padding: 0;
}

/* Relevant Articles Slider */
.relevant-articles {
    margin-bottom: 120px;
}

.relevant-articles__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 20px;
}

.relevant-articles .section-title {
    font-size: 32px;
    background: linear-gradient(90.34deg, #FFFFFF -7.44%, #FFFFFF 94.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 655px;
    line-height: 1.3;
}

.relevant-slider {
    overflow: hidden;
}

.article-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 4px;
    height: auto;
    background: transparent;
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    transition: border-color 0.3s;
}

.article-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

.article-card__img {
    height: 337px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.article-card__content {
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.article-card__date,
.article-card__category {
    font-size: 18px;
    color: #FFFFFF;
}

.article-card__dot {
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
}

.article-card__title {
    font-size: 24px;
    font-weight: 450;
    line-height: 1.3;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .relevant-articles__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .article-card__img {
        height: 250px;
    }
}

/* Responsive */


@media (max-width: 1200px) {
    .article-body {
        display: block;
    }


    .article-hero__title {
        font-size: 40px;
    }

    .feature-card {
        width: 400px !important;
    }
}

@media (max-width: 768px) {
    .article-hero__card {
        padding: 100px 24px 24px;
        min-height: 600px;
    }

    .upline-content {
        top: 24px;
        left: 24px;
    }




    .article-hero__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }





    .trend-item {
        grid-template-columns: 1fr;
    }




}

.article-hero__breadcrumbs {
    margin-bottom: 93px;
}

@media(max-width:1720px) {
    .article-hero__card {
        padding: 100px 42px 60px;
    }

    .article-hero__content {
        padding-left: 10px;
    }

    .article-body {
        padding-top: 100px;
        grid-template-columns: 375px 1fr;
    }

    .trend-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trend-item__content {
        max-width: 700px;
    }

    .trend-item__content p:not(:last-child) {
        margin-bottom: 24px;
    }

    .quote-section {
        margin-bottom: 80px;
    }

    .ai-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ai-item__content {
        max-width: 700px;
    }

    .article-content .team {
        padding: 0;
        max-height: 500px
    }

    .article-sidebar {
        padding-right: 0;
        width: 375px;
    }

    .article-content .team__video-wrapper {
        margin: 0 auto;
        max-width: 1000px;
        max-height: 500px;
    }

    .article-tags-section {
        margin-bottom: 100px;
    }

    .share-area {
        margin-bottom: 100px;
    }

    .relevant-articles {
        margin-bottom: 100px;
    }


}

/* Table of Contents for 1440px and below */
@media (max-width: 1440px) {

    .article-body {
        display: block;
        padding-top: 60px;
    }

    .page--article .header__container {
        max-width: 1376px;
        width: calc(100% - 78px);
    }

    .article-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 60px;
        padding-right: 0;
    }

    .toc {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        overflow: hidden;
    }

    .toc__header {
        margin-bottom: 0;
        padding: 12px 12px 12px 24px;
        background: rgba(255, 255, 255, 0.05);
        cursor: pointer;
    }

    .toc__toggle {
        display: flex;
    }

    .toc__body {
        display: none;
        padding: 24px;
    }

    .toc.is-active .toc__body {
        display: block;
    }

    .toc__list {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        gap: 24px;
    }



    .toc__item {
        padding-left: 32px;
    }

    /* Hero adjustments for 1440px */
    .article-hero__card {
        padding: 64px;
        min-height: 800px;
        display: flex;
        flex-direction: column;
    }

    .article-hero__tags {
        margin-top: 32px;
        margin-bottom: 64px;
        gap: 40px;
    }

    .article-hero__content {
        margin-bottom: auto;
        max-width: 900px;
    }

    .article-hero__title {
        font-size: 64px;
        line-height: 110%;
        margin-bottom: 32px;
    }

    .article-hero__subtitle {
        font-size: 20px;
        line-height: 150%;
        max-width: 500px;
    }

    .article-hero__footer {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: 64px;
    }

    .article-hero__title {
        font-size: 50px;
    }

    .article-hero__breadcrumbs {
        margin-bottom: 0px;
    }

    .article-hero__card {
        padding: 114px 40px 40px 40px;
    }

    .article-hero__tags {
        margin-top: 77px;
        margin-bottom: 60px;
    }

    .article-hero__subtitle {
        font-size: 18px;
    }

    .article-hero__content {
        padding-left: 0;
    }

    .authors-section {
        margin-bottom: 60px;
    }

    .structure-section .section-title {
        font-size: 39px;
    }

    .upline-section {
        margin-bottom: 80px;
    }

    .card-slider-section {
        margin-bottom: 80px;
    }

    .ai-item__content p {
        margin-bottom: 0;
    }

    .ai-item__list {
        margin-top: 32px;
    }

    .article-tags-section {

        margin-bottom: 80px;
    }

    .share-area {
        margin-bottom: 80px;
    }

    .relevant-articles {
        margin-bottom: 80px;
    }
}

@media (max-width: 1200px) {
    .page--article .header__container {
        max-width: 1376px;
        width: calc(100% - 60px);
    }

    .article-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 50px;
        padding-right: 0;
    }

    .page--article .team__video-wrapper::after {
        content: none;
        position: absolute;
    }

    .article-card__title {
        font-size: 19px;
    }

    .faq-item__title {
        font-size: 21px;
    }
}

@media (max-width: 991.98px) {
    .article-hero__card {
        padding: 105px 30px 30px 30px;
    }

    .article-hero__tags {
        margin-top: 77px;
        margin-bottom: 45px;
    }

    .article-hero__title {
        font-size: 30px;
    }

    .article-hero__card {

        min-height: 630px;
    }

    .article-hero__footer {
        align-items: start;
    }

    .authors-section .section-title {
        font-size: 28px;
    }

    .article-intro {
        margin-bottom: 60px;
        max-width: 728px;
    }

    .structure-section .section-title {
        font-size: 28px;
    }

    .structure-card__title {
        font-size: 20px;
    }

    .trend-item__title {
        font-size: 20px;
    }

    .trends-listing {
        margin: 50px 0 60px;
    }

    .quote-card {
        padding: 34px 32px;
    }

    .quote-author__name {
        font-size: 28px;
    }

    .quote-author__img {
        width: 135px;
        height: 135px;
    }

    .quote-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 32px;
    }

    .quote-section {
        margin-bottom: 60px;
    }

    .upline-title {
        font-size: 32px;
        max-width: 480px;
    }

    .upline-section {
        margin-bottom: 60px;
    }

    .card-slider-section .section-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-card__title {
        font-size: 20px;
    }

    .card-slider-section {
        margin-bottom: 60px;
    }

    .ai-platforms-section .section-title {
        font-size: 28px;
    }

    .ai-item__title {
        font-size: 20px;
    }

    .ai-platforms-section {
        margin-bottom: 50px;
    }

    .article-content .team__video-wrapper {
        margin: 0 auto;
        max-width: 1000px;
        max-height: 415px;
    }

    .article-tags-section {
        margin-bottom: 60px;
        margin-top: 60px
    }

    .share-area {

        margin-bottom: 60px;
    }

    .relevant-articles .section-title {
        font-size: 28px;
    }

    .relevant-articles {
        margin-bottom: 60px;
    }

    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .article-tags-section .section-title {
        font-size: 28px;
    }
}

@media (max-width: 650.98px) {
    .article-hero__container {
        width: 100%;
    }

    .article-hero__card {
        border-radius: 0 0 20px 20px;
        padding: 80px 15px 15px 15px;
    }
.structure-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
    .page--article .header__container {
        max-width: 1376px;
        width: calc(100% - 20px);
                padding: 0 9px 0 19px;
    }
.article-body.container{
padding-top: 60px;

}
    .article-hero__breadcrumbs {
        flex-wrap: wrap;
        padding: 0 5px;
    }

    .article-hero__tags {
        margin-top: 60px;
        margin-bottom: 45px;
        flex-direction: column;
        gap: 20px;
    }

    .article-hero__more {
        width: 100%;
        height: 72px;
    }

    .toc__title {
        font-size: 20px;
    }

    .intro-text {
        font-size: 18px;
    }

    .quote-card {
        padding: 24px 20px;
    }

    .quote-author {
        display: flex;
        align-items: start;
        gap: 32px;
        flex-direction: column;
    }

    .quote-author {

        gap: 24px
    }

    .quote-card__text {
        font-size: 16px;
    }

    .article-content .team__video-wrapper {
        max-height: 200px;
        border-radius: 12px;
    }

    .share-area {
        padding: 20px;
    }

    .faq-item__title {
        font-size: 17px;
    }

    .faq-item__text {
        font-size: 15px;
    }

    .relevant-slider,
    .authors-slider,
    .cards-slider {
        overflow: visible;
    }

    .slider-nav {
        display: none;
    }

    .news__pagination {
        display: flex !important;
        gap: 8px;
        margin-top: 32px;
        width: 100%;
        position: static;
    }

    .news__pagination .swiper-pagination-bullet {
        flex: 1;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 0;
        opacity: 1;
        margin: 0 !important;
        transition: background 0.3s ease;
    }

    .news__pagination .swiper-pagination-bullet-active {
        background: #FFFFFF;
    }

    .feature-card {
        width: 100% !important;
    }

    .article-card__img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .container {
        margin: 0 auto;
        width: calc(100% - 24px);
        max-width: 100%;
        padding: 0;
    }
    .container.article-hero__container{
width: 100%;
    }
    .relevant-articles {
        overflow-x: hidden;
    }
}