/* Issues Page Styles */

/* Hero */
.issues-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    text-align: center;
    color: var(--white);
}

.issues-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.issues-hero p {
    font-size: 1.25rem;
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto;
}

/* Issues List */
.issues-list {
    padding: 4rem 2rem;
    background: var(--white);
}

.issues-list .section-container {
    max-width: 900px;
}

/* Issue Item */
.issue-item {
    border-bottom: 1px solid #e5e5e5;
}

.issue-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.issue-header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.issue-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    margin: 0;
    transition: color 0.2s;
}

.issue-header:hover h2 {
    color: var(--red);
}

.issue-toggle {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--navy);
    transition: transform 0.3s ease;
    line-height: 1;
}

.issue-item.open .issue-toggle {
    transform: rotate(45deg);
}

/* Issue Details */
.issue-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.issue-item.open .issue-details {
    max-height: 1000px;
    padding-bottom: 2rem;
}

.issue-section {
    margin-bottom: 2rem;
}

.issue-section:last-child {
    margin-bottom: 0;
}

.issue-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.issue-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.issue-section ul {
    list-style: none;
    padding: 0;
}

.issue-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.issue-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

/* Issue Emphasis */
.issue-emphasis {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: var(--red) !important;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .issues-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .issues-list {
        padding: 2rem 1.5rem;
    }

    .issue-header h2 {
        font-size: 1.4rem;
    }

    .issue-section p,
    .issue-section li {
        font-size: 1rem;
    }
}
