/* ISSUES SECTION */
#issues {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 100px 8%;
    position: relative;
}

#issues .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

/* Slider container */
.issues-slider {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

/* Individual issue card */
.issue {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: opacity 0.6s ease;
}

.issue.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

/* Title */
.issue h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* Short description */
.issue .snippet {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Date & Time */
.issue .datetime {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

/* Show more button */
.show-more {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #111;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.show-more:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

/* Navigation dots */
.issue-dots {
    margin-top: 30px;
    text-align: center;
}

.issue-dots .dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.issue-dots .dot.active,
.issue-dots .dot:hover {
    background-color: #fff;
}

/* Fade animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #issues {
        padding: 80px 5%;
    }

    .issue {
        padding: 30px 20px;
    }

    .issue h3 {
        font-size: 1.2rem;
    }

    .issue .snippet {
        font-size: 0.95rem;
    }
}