/* Reports & Documents Section */
.reports-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    max-width: 1440px;
    margin: 0 auto;
}

.reports-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    text-align: left;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Report Card Link Wrapper */
.report-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Report Card */
.report-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.report-card::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23166534' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12l7 7 7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: transparent;
    background: #1f2937;
}

.report-card:hover::after {
    opacity: 1;
}

.report-card:hover .report-icon,
.report-card:hover .report-title,
.report-card:hover .report-format {
    color: #ffffff;
}

.report-card:hover .report-date {
    color: #9ca3af;
}

.report-card:hover .report-icon svg {
    stroke: #ffffff;
}

/* Report Icon and Format */
.report-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.report-icon svg {
    width: 18px;
    height: 18px;
}

.report-format {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
}

/* Report Title */
.report-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}

/* Report Date */
.report-date {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Reports Footer */
.reports-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.transparency-text {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}


/* Tablet Responsive */
@media (max-width: 1024px) {
    .reports-section {
        padding: 80px 5%;
    }

    .reports-title {
        font-size: 40px;
        margin-bottom: 48px;
        text-align: center;
    }

    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reports-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        
    }

    .more-reports-link {
        align-self: flex-end;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reports-section {
        padding: 60px 5%;
    }

    .reports-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .reports-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .report-card {
        padding: 20px;
    }

    .report-title {
        font-size: 16px;
    }

    .reports-footer {
        padding-top: 32px;
    }

    .transparency-text {
        font-size: 14px;
        text-align: center;
    }

    .more-reports-link {
        width: 100%;
        justify-content: center;
    }
}