/* News Page Specific Styles */

.news-page .news-header {
    background-color: var(--sai-red);
    color: var(--sai-white);
    padding: 3rem 0;
    text-align: center;
}

.news-page .news-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
}

.news-page .news-content {
    padding: 4rem 0;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.report-card-simple {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
}

.report-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.report-card-simple__image-link {
    position: relative;
    display: block;
}

.report-card-simple__image-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.report-card-simple__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
}

.report-card-simple__content {
    padding: 1.5rem;
}

.report-card-simple__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.report-card-simple__title a {
    color: var(--sai-dark-gray);
    text-decoration: none;
}

.report-card-simple__excerpt {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.report-card-simple__meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.report-card-simple .btn-outline-primary {
    color: var(--sai-red);
    border-color: var(--sai-red);
}

.report-card-simple .btn-outline-primary:hover {
    background-color: var(--sai-red);
    color: var(--sai-white);
}