.article-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 600;

    min-height: 440px;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-hero-content {
    position: relative;
    z-index: 30;


    margin-top: 1rem;
}




.article-main {
    position: relative;
    width: 100%;


    margin-top: -350px;
    padding-top: 350px;
    padding-bottom: 8rem;

    background: transparent;
    overflow: visible;
    z-index: 20;
}


.article-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}


.bg-columns-parallax {
    position: sticky;
    top: -300px;
    left: 0;
    width: 100%;
    height: calc(100vh + 300px);
    background-image: url('../assets/bgs/bg-content-news-columns.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 1;
}


.related-posts-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 8rem;
    overflow: hidden;
}

.related-posts-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.related-posts-bg .bg-related {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;

    opacity: 1;

}

.article-container {
    position: relative;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 4rem;
    z-index: 5;
}


.article-content {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.article-content p {
    font-family: var(--font-news), sans-serif;
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}


.article-content a {
    color: var(--gold-main);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: var(--gold-bright);
    text-decoration: underline;
    text-decoration-color: var(--gold-bright);
    text-underline-offset: 5px;
}

.article-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #fff;
    margin: 3rem 0 1.5rem 0;
    letter-spacing: 1px;
}

.article-content u {
    color: var(--gray-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}


.article-quote {
    position: relative;
    margin: 3rem 0;
    padding: 1.8rem 2.5rem;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #f1d7ba;
    line-height: 1.5;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);

    border: 1px solid var(--gold-main);
    outline: 1px solid var(--gold-main);
    outline-offset: -5px;
}


.article-split-block {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: flex-start;
    margin: 3rem 0;
}


.split-image-frame {
    padding: 6px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(0, 0, 0, 0.4);

    display: inline-block;
    width: 100%;
}

.split-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.25);

}

.image-caption {
    display: block;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);

    margin-top: 1rem;
    letter-spacing: 0.5px;
}




.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: rgba(12, 14, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-table th {
    background: rgba(0, 0, 0, 0.6);
    color: var(--gold-main);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

.article-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    font-family: var(--font-news), sans-serif;
}

.article-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}


.article-list {
    margin: 1.5rem 0 2rem 1.5rem;
    color: var(--gray-light);
    font-family: var(--font-news), sans-serif;
    line-height: 1.6;
}

.article-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.article-list.ul-styled {
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.article-list.ul-styled li {
    position: relative;
    padding-left: 1.8rem;
}

.article-list.ul-styled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold-main);
    transform: rotate(45deg);
    box-shadow: 0 0 5px rgba(213, 179, 134, 0.5);
}

.article-list.ol-styled {
    counter-reset: article-counter;
    list-style: none;
    padding: 0;
    margin-left: 0;
}

.article-list.ol-styled li {
    position: relative;
    padding-left: 2.2rem;
}

.article-list.ol-styled li::before {
    counter-increment: article-counter;
    content: counter(article-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-main);
    font-family: 'Cinzel', serif;
    font-weight: 700;
}


.article-callout {
    position: relative;
    padding: 1.8rem;
    margin: 2.5rem 0;
    background: rgba(12, 14, 18, 0.6);
    border-left: 3px solid var(--gold-main);
    border-radius: 0 4px 4px 0;
}

.article-callout.warning {
    border-left-color: #fca5a5;
    background: rgba(252, 165, 165, 0.05);
}

.article-callout.warning .callout-title {
    color: #fca5a5;
}

.article-callout.info {
    border-left-color: #93c5fd;
    background: rgba(147, 197, 253, 0.05);
}

.article-callout.info .callout-title {
    color: #93c5fd;
}

.callout-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold-main);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}


.article-full-image {
    width: 100%;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    padding: 8px;
}

.article-full-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-btn-wrapper {
    margin-top: 2rem;
}


.article-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 3.5rem 0;
}


.article-accordion {
    margin: 2.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(5px);
}

.accordion-header {
    padding: 1.2rem 2rem;
    background: url('../assets/bg-accordion.png') center/cover no-repeat;
    min-height: 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}


.accordion-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;

    right: 2rem;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.accordion-header:hover::after,
.accordion-header.active::after {
    transform: scaleX(1);
}


.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-body {
    background: rgba(241, 215, 186, 0.1);

    color: #000000;

    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.accordion-body.open {
    grid-template-rows: 1fr;
    opacity: 1;
}


.accordion-content-inner {
    overflow: hidden;
    padding: 0 2rem;
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body.open .accordion-content-inner {
    padding: 2rem;
}

.accordion-header span {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;

    letter-spacing: 1px;
}

.accordion-arrow {
    color: #111;
    transition: transform 0.3s ease;
}



.accordion-body p:last-child {
    margin-bottom: 0;
}


.greek-separator-block {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 28px;
    background: url('../assets/separator-pattern-repeat.png') repeat-x center center;
    background-size: auto 100%;
    opacity: 1;
    position: relative;
    z-index: 30;
    margin-top: -14px;
    margin-bottom: -14px;
}


.related-header {
    margin-bottom: 3.5rem;
}

.article-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 2rem;
    margin-bottom: 2rem;
}

.article-news-grid .news-card {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-news-grid .news-card:hover {
    transform: translateY(-5px);
}

.article-news-grid .news-slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 236px;
    background: #1a1c23;
    clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
    overflow: hidden;
}

.article-news-grid .news-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 0.5s ease;
}

.article-news-grid .news-card:hover .news-slide-img {
    transform: scale(1.05);
}

.article-news-grid .news-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/big-img-overlay.png') center/cover no-repeat;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

.article-news-grid .news-slide-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/rough-diagnal-frame.png') center/100% 100% no-repeat;
    z-index: 5;
    pointer-events: none;
}

.article-news-grid .news-slide-corner-addon {
    position: absolute;
    top: -13px;
    right: -13px;
    z-index: 10;
}

.article-news-grid .news-slide-info {
    margin-top: 0.8rem;
    padding: 0 0.5rem;
    text-align: left;
}

.article-news-grid .news-slide-date {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: var(--gold-main);
    letter-spacing: 0.5px;
}

.article-news-grid .news-slide-title {
    font-family: 'Volkhov', serif;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 0.3rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}


.article-quote-styled {
    font-family: 'Cinzel', serif;
    color: #f1d7ba;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 1px;
}


@media (min-width: 2560px) {
    .article-main {
        margin-top: -450px;
        padding-top: 450px;
    }
}

@media (min-width: 3560px) {
    .article-main {
        margin-top: -550px;
        padding-top: 550px;
    }
}

@media (max-width: 1024px) {
    .article-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 1200px) {
    .related-posts-section {
        padding-bottom: 6rem;
    }

    .article-main {
        margin-top: -450px;
        padding-top: 450px;
    }

    .article-bg-wrapper {}
}

@media (max-width: 992px) {
    .related-posts-section {
        padding-bottom: 8rem;
    }

    .article-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .article-split-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-image-container {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .image-caption {
        text-align: center;
    }

    .article-main {
        margin-top: -550px;
        padding-top: 550px;
    }

    .article-bg-wrapper {}
}

@media (max-width: 768px) {
    .article-hero {
        min-height: 450px;
    }

    .article-quote {
        font-size: 15px;
        padding: 1.5rem;
    }

    .article-container {
        padding: 0 1.5rem;
    }

    .article-news-grid {
        grid-template-columns: 1fr;
    }

    .related-posts-section {
        padding-bottom: 10rem;
    }

    .article-main {
        margin-top: -650px;
        padding-top: 650px;
    }

    .article-bg-wrapper {}
}

@media (max-width: 576px) {
    .related-posts-section {
        padding-bottom: 12rem;
    }

    .article-main {
        margin-top: -750px;
        padding-top: 750px;
    }

    .article-bg-wrapper {}
}