/* Article Hero */
.article-hero {
    /* background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%); */
    /*background: linear-gradient(45deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .5)), url('../images/affairs.png');*/
    background: linear-gradient(45deg, #800000, #800000);
    background-size: cover;
    background-position: center;

    padding: 60px 0;
    /* margin-bottom: 40px; */
    border-bottom: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: "ARTICLE";
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-family: var(--serif);
    font-size: 100px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.article-hero-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.article-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    /*background: var(--red);*/
    background: #dfdfdf;
}

.article-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
}

/* Article Content Section */
.article-content-section {
    padding: 30px 0 50px 0;
    background: var(--smoke);
}

.article-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Article Header */
.article-main-title {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
}

.article-author-line {
    text-align: center;
    margin-bottom: 30px;
    color: var(--red);
    font-weight: 600;
    font-size: 18px;
}

/* Article Content */
.article-subtitle {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin: 30px 0 20px;
}

.article-paragraph {
    font-size: 16px;
    color: var(--ink3);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    /* text-indent: 40px; */
}

.article-paragraph:first-of-type {
    text-indent: 0;
}

.centered-text {
    text-align: center;
    margin: 30px 0;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
}

/* Download Button */
.download-section {
    text-align: center;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.download-btn:hover {
    background: var(--red-dark);
    gap: 15px;
}

.download-btn i {
    font-size: 18px;
}

/* Issue Info */
.issue-info-box {
    background: var(--smoke);
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 30px;
    border: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.issue-details {
    font-size: 14px;
    color: var(--ink3);
}

.issue-details strong {
    color: var(--red);
}

.back-link {
    color: var(--red);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .article-card {
        padding: 25px;
    }

    .article-hero::before {
        font-size: 70px;
    }

    .article-main-title {
        font-size: 28px;
    }

    .article-subtitle {
        font-size: 20px;
    }

    .issue-info-box {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .article-card {
        padding: 20px;
    }

    .article-main-title {
        font-size: 24px;
    }

    .article-paragraph {
        font-size: 15px;
        text-indent: 30px;
    }
}