* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #181818;
    color: #f4f1ea;
    font-family: "Inter", sans-serif;
}

main {
    width: 100%;
}

.hero {
    max-width: 1040px;
    margin: 0 auto;
    padding: 78px 34px 58px 34px;
}

.kicker {
    color: #ef3b3b;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 20px 0;
}

h1 {
    font-family: "Libre Baskerville", serif;
    font-size: 56px;
    line-height: 1.08;
    margin: 0 0 24px 0;
    color: #ffffff;
    max-width: 980px;
}

.dek {
    font-size: 24px;
    line-height: 1.35;
    max-width: 780px;
    color: #d7d2c8;
    margin: 0 0 28px 0;
}

.byline {
    font-size: 16px;
    color: #aaa39a;
    margin-top: 28px;
    font-weight: 600;
}

.text-block,
.dog-strip,
.conclusion,
.sources {
    max-width: 820px;
    margin: 0 auto;
    padding: 26px 28px;
}

.text-block p,
.conclusion p,
.sources p {
    font-size: 21px;
    line-height: 1.58;
    color: #e7e2da;
    margin: 0 0 26px 0;
}

h2 {
    font-family: "Libre Baskerville", serif;
    font-size: 31px;
    line-height: 1.25;
    color: #ffffff;
    margin: 14px 0 24px 0;
}

.question {
    font-size: 28px !important;
    line-height: 1.35 !important;
    font-weight: 800;
    color: #ffffff !important;
    border-left: 6px solid #d62828;
    padding-left: 20px;
    margin: 36px 0 !important;
}

.dog-strip {
    padding-top: 36px;
    padding-bottom: 36px;
}

.dog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin: 26px 0 18px 0;
}

.dog-grid figure {
    margin: 0;
}

.dog-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.dog-grid figcaption {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    color: #cfc7bd;
    font-weight: 700;
}

.caption {
    font-size: 16px;
    line-height: 1.45;
    color: #aaa39a;
    margin-top: 18px;
}

.chart-section {
    width: 100%;
    background: #2b2b2b;
    padding: 36px 28px;
    margin: 38px 0;
}

.chart {
    display: block;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background: white;
    border-radius: 2px;
    box-shadow: 0 22px 48px rgba(0,0,0,0.38);
}

.featured-chart .chart {
    max-width: 900px;
}

.conclusion {
    margin-top: 14px;
    padding-top: 40px;
}

.ending {
    font-size: 25px !important;
    line-height: 1.45 !important;
    font-weight: 800;
    color: #ffffff !important;
    margin-top: 34px !important;
}

.sources {
    border-top: 1px solid rgba(255,255,255,0.18);
    margin-top: 46px;
    padding-bottom: 86px;
}

.sources p {
    font-size: 17px;
    line-height: 1.58;
    color: #cfc7bd;
}

a {
    color: #f06b6b;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

a:hover {
    color: #ffffff;
}

@media (max-width: 760px) {
    .hero {
        padding: 54px 22px 36px 22px;
    }

    h1 {
        font-size: 38px;
    }

    .dek {
        font-size: 20px;
    }

    h2 {
        font-size: 26px;
    }

    .text-block,
    .dog-strip,
    .conclusion,
    .sources {
        padding-left: 22px;
        padding-right: 22px;
    }

    .text-block p,
    .conclusion p {
        font-size: 18px;
    }

    .question {
        font-size: 22px !important;
    }

    .dog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chart-section {
        padding: 24px 10px;
    }
}