.report-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    background-color: var(--ir-bg-surface);
    border: 1px solid var(--ir-border-slate);
    border-radius: 7px;
    overflow: hidden;
}
.report-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}
.report-card .card-img-top {
    height: 200px;
    object-fit: cover;
}
.report-placeholder-thumb {
    height: 200px;
    background: var(--ir-bg-deep);
    font-size: 0.9rem;
    color: var(--ir-text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Featured report hero on homepage */
.report-hero .card-img-top {
    height: 300px;
    object-fit: cover;
}
.report-hero .report-placeholder-thumb {
    height: 300px;
}

/* Chart containers */
.chart-container {
    min-height: 400px;
    border: 1px solid var(--ir-border-slate);
    border-radius: 7px;
    overflow: hidden;
    background-color: var(--ir-bg-deep);
}
.chart-loading {
    min-height: 400px;
}
.chart-error {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ir-error);
}

/* Report detail */
.report-detail h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--ir-border-slate);
    padding-bottom: 0.5rem;
    color: var(--ir-text-primary);
}
.report-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ir-text-secondary);
}
.section-commentary {
    color: var(--ir-text-secondary);
}

/* Table sections */
.table-section table {
    width: 100%;
}
.table-section th,
.table-section td {
    padding: 0.5rem;
}
