/* ── Reports Hub Page Styles ── */

/* Hero */
.reports-hero {
    background-color: #f5edde;
    text-align: center;
    padding: 80px 10% 72px;
}
.reports-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #33010A;
    margin-bottom: 16px;
    line-height: 1.2;
}
.reports-hero p {
    font-size: 1.05rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Grid section */
.reports-grid-section {
    background-color: #fff;
    padding: 80px 10%;
}
.reports-grid-section > .reports-intro {
    font-size: 0.95rem;
    color: #777;
    max-width: 1100px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card */
.report-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

/* Cover */
.report-card-cover {
    height: 180px;
    background: linear-gradient(135deg, #fc4c69 0%, #e03356 100%);
    display: flex;
    align-items: flex-start;
    padding: 20px;
    position: relative;
}
.report-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Body */
.report-card-body {
    padding: 28px 24px;
}
.report-card-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 10px;
}
.report-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #33010A;
    margin-bottom: 10px;
    line-height: 1.4;
}
.report-card-body p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 22px;
}
.report-card-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fc4c69;
    text-decoration: none;
}
.report-card-link:hover {
    text-decoration: underline;
}

/* Coming soon variant */
.report-card.coming-soon .report-card-cover {
    background: linear-gradient(135deg, #f0e8d8 0%, #e8dcc8 100%);
}
.report-card.coming-soon .report-tag {
    background: rgba(51, 1, 10, 0.1);
    color: #33010A;
    border-color: rgba(51, 1, 10, 0.15);
}
.report-card.coming-soon .report-card-link {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
    .reports-hero h1 { font-size: 2rem; }
    .reports-hero { padding: 60px 6% 52px; }
    .reports-grid-section { padding: 60px 6%; }
    .reports-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .reports-hero h1 { font-size: 1.7rem; }
}
