:root {
    --dark: #212738;
    --light: #E6EDEF;
    --pink: #F5A9B8;
    --blue: #5BCEFA;
    --muted: rgba(230, 237, 239, 0.75);
}

body {
    margin: 0;
    background-color: var(--dark);
    color: var(--light);
    font-family: "Crimson Text", Georgia, serif;
}

header, main {
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 22px;
    padding-right: 22px;
}

header {
    padding-top: 90px;
    padding-bottom: 45px;
}

.kicker {
    font-family: "Roboto", sans-serif;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

h1 {
    font-family: "Roboto", sans-serif;
    font-size: 72px;
    line-height: 0.92;
    letter-spacing: -3px;
    margin: 0;
}

h2 {
    font-family: "Roboto", sans-serif;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-top: 70px;
    margin-bottom: 18px;
    color: var(--light);
}

p {
    font-size: 20px;
    line-height: 1.55;
    margin-top: 0;
    margin-bottom: 24px;
}

#author {
    font-size: 16px;
    font-style: italic;
    text-align: right;
    color: var(--muted);
    margin-top: 12px;
    margin-bottom: 12px;
}

.dek {
    font-size: 28px;
    line-height: 1.25;
    color: var(--muted);
    margin-top: 24px;
}

.divider {
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--pink));
    margin-top: 18px;
    margin-bottom: 18px;
}

img {
    display: block;
    width: 100%;
    margin: 28px auto 8px auto;
    border-radius: 10px;
}

.caption {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: var(--muted);
    margin-bottom: 45px;
}

.quote {
    margin: 55px 0;
    padding: 28px;
    border-left: 6px solid var(--blue);
    background-color: rgba(91, 206, 250, 0.08);
}

.quote.pink {
    border-left-color: var(--pink);
    background-color: rgba(245, 169, 184, 0.08);
}

.quote p {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.quote span {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: var(--muted);
}

.ending {
    font-size: 28px;
    line-height: 1.25;
    margin-top: 70px;
    padding-top: 30px;
    border-top: 2px solid rgba(230, 237, 239, 0.18);
}

ul {
    padding-left: 20px;
    margin-bottom: 80px;
}

li {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 8px;
}

a {
    color: var(--blue);
}

a:hover {
    color: var(--pink);
}

@media (max-width: 700px) {
    h1 {
        font-size: 52px;
    }

    .dek {
        font-size: 23px;
    }

    p {
        font-size: 19px;
    }

    .quote p {
        font-size: 28px;
    }
}


.bill-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 32px 0 60px 0;
}

.bill-card {
    border: 1px solid rgba(230, 237, 239, 0.22);
    background-color: rgba(230, 237, 239, 0.06);
    padding: 20px;
    border-radius: 14px;
}

.bill-state {
    font-family: "Roboto", sans-serif;
    color: var(--pink);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.bill-card h3 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    margin: 0 0 8px 0;
}

.bill-card p {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 0;
}

.thanks {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 90px;
}

@media (max-width: 700px) {
    .bill-gallery {
        grid-template-columns: 1fr;
    }

    .cover-image {
        height: 48vh;
    }
}

.mental-health-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: stretch;
    margin: 36px 0 60px 0;
}

.stat-box {
    background-color: rgba(230, 237, 239, 0.06);
    border: 1px solid rgba(230, 237, 239, 0.2);
    border-radius: 16px;
    padding: 24px;
}

.stat-number {
    font-family: "Roboto", sans-serif;
    font-size: 54px;
    line-height: 0.9;
    font-weight: 900;
    color: var(--pink);
    margin-bottom: 8px;
}

.stat-text {
    font-size: 17px;
    line-height: 1.35;
    color: var(--muted);
    margin-bottom: 22px;
}

.mental-health-panel img {
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.wide-photo {
    margin-top: 36px;
    margin-bottom: 36px;
}

.source-line {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
}

.thanks {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 90px;
}

@media (max-width: 700px) {
    .mental-health-panel {
        grid-template-columns: 1fr;
    }

    .mental-health-panel img {
        height: auto;
    }
}