/* ================================
   IMPACT SECTION
================================ */
.impact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 20px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.story-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Image */
.story-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--rule);
}

.story-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.story-card:hover .story-card-img img {
    transform: scale(1.04);
}

/* Body */
.story-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.story-date {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 8px;
    display: block;
}

.story-card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.45;
    margin: 0 0 10px;
}

.story-card-body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.story-read-more {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
}

/* ================================
   VOICES SECTION
================================ */
.voices-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 30px;
}

/* ================================
   CARD BASE
================================ */
.voices-card {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #111;
    text-decoration: none;
    cursor: pointer;
}

.voices-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.voices-card:hover img {
    transform: scale(1.05);
    opacity: 0.75;
}

.voices-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: white;
}

.voices-overlay h4 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
}

.voices-overlay p {
    margin: 3px 0 0;
    font-size: 0.72rem;
    opacity: 0.8;
    line-height: 1.3;
}

.voices-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.voices-play svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
    opacity: 0.9;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.voices-card:hover .voices-play svg {
    transform: scale(1.15);
    opacity: 1;
}

@media (max-width: 768px) {
    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .voices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}