/* ============================================================
   APPEND TO wwwroot/css/homepage-additions.css
   Accordion report card additions
   ============================================================ */

/* ── Accordion card header ────────────────────────────────── */
.home-report-card--accordion {
    cursor: default;
}

.home-report-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.home-report-card-header .home-report-card-icon {
    flex-shrink: 0;
}

.home-report-card-header .home-report-card-body {
    flex: 1;
    min-width: 0;
}

/* ── Chevron ──────────────────────────────────────────────── */
.home-report-chevron {
    font-size: 0.85rem;
    color: var(--text-light, #666);
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: transform 0.2s ease;
}

.home-report-chevron.rotated {
    transform: rotate(180deg);
}

/* ── Expandable section ───────────────────────────────────── */
.home-report-card-expand {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-grey, #e0e0e0);
}

.home-report-card-expand.open {
    display: block;
}

/* ── Includes list ────────────────────────────────────────── */
.home-report-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.home-report-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-light, #555);
    padding: 0.2rem 0;
    line-height: 1.4;
}

.home-report-includes .bi {
    color: var(--m-blue, #5CB3DA);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Card actions ─────────────────────────────────────────── */
.home-report-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

/* ── See example link ─────────────────────────────────────── */
.home-report-more-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy, #1A237E);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    transition: gap 0.15s, color 0.15s;
}

.home-report-more-link:hover {
    gap: 0.5rem;
    color: var(--m-blue, #5CB3DA);
    text-decoration: none;
}
.home-report-package-note {
    font-size: 0.78rem;
    color: var(--text-light, #555);
    background: #f8f9fc;
    border-left: 3px solid var(--m-blue, #5CB3DA);
    padding: 0.5rem 0.75rem;
    border-radius: 0 var(--radius, 6px) var(--radius, 6px) 0;
    margin-top: 0.5rem;
    line-height: 1.5;
    font-style: italic;
}