/* ===== REPORTS/BLOG PREVIEW SECTION ===== */

.reports-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reports-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(214, 45, 140, 0.2) 50%, 
        transparent 100%);
}

/* Header Styling */
.reports-preview .section__subtitle {
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.reports-preview .section__subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.reports-preview .section__title {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.reports-preview .section__description {
    max-width: 650px;
    margin: 0 auto 3rem;
}

/* Reports Grid */
.reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Report Card */
.report-card {
    background: var(--white-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 10px rgba(214, 45, 140, 0.04);
    border: 1px solid rgba(214, 45, 140, 0.08);
    position: relative;
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.report-card:hover::before {
    transform: scaleX(1);
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(214, 45, 140, 0.08);
    border-color: rgba(214, 45, 140, 0.15);
}

/* Report Image */
.report-card__image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.report-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.report-card:hover .report-card__image img {
    transform: scale(1.08);
}

/* Report Meta Badge */
.report-card__meta {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.report-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.report-card__badge--research {
    color: var(--primary-color);
    border: 1px solid rgba(214, 45, 140, 0.2);
}

.report-card__badge--analysis {
    color: var(--secondary-color);
    border: 1px solid rgba(123, 45, 126, 0.2);
}

.report-card__badge--policy {
    color: var(--accent-orange);
    border: 1px solid rgba(248, 158, 59, 0.2);
}

.report-card__badge i {
    font-size: 0.875rem;
}

/* Date Badge */
.report-card__date {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.report-card__date i {
    color: var(--primary-color);
}

/* Report Content */
.report-card__content {
    padding: 1.75rem;
}

.report-card__category {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.report-card__title {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 0.875rem;
    transition: color 0.3s ease;
}

.report-card:hover .report-card__title {
    color: var(--primary-color);
}

.report-card__excerpt {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Report Footer */
.report-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(214, 45, 140, 0.1);
}

.report-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-card__author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: var(--font-semibold);
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(214, 45, 140, 0.2);
}

.report-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.report-card__author-name {
    font-size: 0.875rem;
    font-weight: var(--font-semibold);
    color: var(--dark-color);
}

.report-card__author-role {
    font-size: 0.75rem;
    color: var(--gray-color);
}

.report-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: var(--font-semibold);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(214, 45, 140, 0.05);
}

.report-card__link:hover {
    gap: 0.75rem;
    background: rgba(214, 45, 140, 0.1);
}

.report-card__link i {
    transition: transform 0.3s ease;
}

.report-card__link:hover i {
    transform: translateX(4px);
}

/* View All Reports Button */
.reports-preview__cta {
    text-align: center;
}

.btn--view-reports {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 16px rgba(214, 45, 140, 0.25),
        0 2px 8px rgba(123, 45, 126, 0.15);
}

.btn--view-reports:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(214, 45, 140, 0.35),
        0 4px 12px rgba(123, 45, 126, 0.25);
}

.btn--view-reports:active {
    transform: translateY(0);
}

.btn--view-reports i {
    transition: transform 0.3s ease;
}

.btn--view-reports:hover i {
    transform: translateX(4px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets and up */
@media screen and (min-width: 768px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .report-card__image {
        height: 260px;
    }
    
    .report-card__title {
        font-size: 1.35rem;
    }
}

/* Desktop */
@media screen and (min-width: 992px) {
    .reports-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .report-card__content {
        padding: 2rem;
    }
    
    .report-card__title {
        font-size: 1.3rem;
        min-height: 3.6em; /* Keeps titles aligned */
    }
    
    .report-card__excerpt {
        min-height: 4.5em; /* Keeps excerpts aligned */
    }
}

/* Large Desktop */
@media screen and (min-width: 1200px) {
    .reports-grid {
        gap: 3rem;
    }
}
