

:root {

    --burgundy:
        #8C1D40;

    --gold:
        #D6A84B;

    --text:
        #222222;

    --muted:
        #666666;
}


body {

    color:
        var(--text);
}


h1,
h2,
h3 {

    font-weight:
        700;
}


h2 {

    border-bottom:
        2px solid
        var(--burgundy);

    padding-bottom:
        6px;
}


.report-logo {

    position:
        fixed;

    top:
        12px;

    right:
        20px;

    width:
        105px;

    z-index:
        9999;
}


.hero-image img {

    width:
        100%;

    max-height:
        560px;

    object-fit:
        cover;
}


.hero-title {

    font-size:
        3rem;

    line-height:
        1.06;

    margin-top:
        1.2rem;
}


.hero-subtitle {

    font-size:
        1.25rem;

    color:
        var(--muted);

    margin-bottom:
        1rem;
}


.hero-author {

    font-size:
        1rem;

    color:
        #444;

    margin-bottom:
        2rem;
}


.key-finding {

    border-left:
        4px solid
        var(--burgundy);

    padding:
        13px 17px;

    background:
        #faf7f8;

    margin:
        22px 0;
}


iframe {

    border:
        1px solid
        #dddddd;

    border-radius:
        5px;

    background:
        white;
}


table {

    font-size:
        0.92rem;
}


thead {

    border-bottom:
        2px solid
        var(--burgundy);
}


@media print {

    .report-logo {

        display:
            none;
    }
}

