/* Hero Section */
.issue-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/edition.png');*/
    background: linear-gradient(45deg, #800000, #800000);
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    border-bottom: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.issue-hero::before {
    content: "CONTRIBUTORS";
    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;
}

.issue-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;
}

.issue-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    /*background: var(--red);*/
    background: #dfdfdf;
}

.issue-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
}

/* Content Section */
.issue-content-section {
    padding: 40px 0 50px 0;
    background: var(--smoke);
}

.issue-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);
}

/* Issue Info */
.issue-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--red);
}

.issue-main-title {
    font-family: poppins;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.3;
}

.issue-vol {
    color: var(--red);
    font-size: 18px;
    font-weight: 500;
}

/* Contributors List */
.contributors-section {
    margin: 30px 0;
}

.contributors-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contributor-item {
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    color: var(--ink3);
    transition: background 0.2s;
}

.contributor-item:hover {
    background: rgba(200, 16, 46, 0.02);
}

.contributor-item:last-child {
    border-bottom: none;
}

.contributor-item::before {
    content: '•';
    color: var(--red);
    font-weight: bold;
    margin-right: 15px;
    font-size: 20px;
}

/* Download Button */
.download-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-download:hover {
    background: var(--red-dark);
    gap: 15px;
}

.btn-download i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .issue-card {
        padding: 25px;
    }

    .issue-hero::before {
        font-size: 70px;
    }

    .issue-main-title {
        font-size: 24px;
    }

    .issue-vol {
        font-size: 16px;
    }

    .contributor-item {
        font-size: 15px;
        padding: 12px 15px;
    }

    .btn-download {
        width: 100%;
        padding: 12px 20px;
    }
}