/* Reports Page Styles */
.reports-page {
    padding: 60px 0;
    min-height: 70vh;
    background-color: var(--light-gray);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.report-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.report-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.report-card:hover .report-image img {
    transform: scale(1.05);
}

.report-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.report-title {
    font-size: 22px;
    color: var(--primary-teal);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.report-date {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-date i {
    color: var(--primary-teal);
}

.report-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.report-link:hover {
    color: var(--light-teal);
    gap: 12px;
}

.report-link i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 32px;
    }

    .report-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .reports-page {
        padding: 30px 0;
    }

    .page-title {
        font-size: 28px;
    }

    .report-image {
        height: 250px;
    }
}

