* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 88% 8%, #e9eef8 0%, rgba(233, 238, 248, 0) 28%),
        #f7f7f5;
    color: #1b1b1b;
    font-family: "Crimson Text", Georgia, serif;
}

.page-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 26px 20px 46px;
}

.hero,
.sources {
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-bottom: 22px;
}

.hero {
    margin-bottom: 18px;
}

.kicker,
.byline,
.caption {
    font-family: "Inter", Arial, sans-serif;
}

.kicker {
    color: #5d5d5d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 6px;
}

h1,
h2 {
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.18;
    color: #111111;
    margin-top: 0;
}

h1 {
    font-size: clamp(2rem, 4.6vw, 2.65rem);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

.byline {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-family: "Inter", Arial, sans-serif;
}

.standfirst {
    font-size: 1.13rem;
    line-height: 1.6;
    margin-bottom: 0;
}

p {
    font-size: 1.16rem;
    line-height: 1.66;
    margin-top: 0;
    margin-bottom: 14px;
}

img {
    display: block;
    width: 100%;
    border-radius: 2px;
    border: none;
}

.divider {
    height: 1px;
    width: 78px;
    background: #b9b9b9;
    border-radius: 99px;
    margin: 10px 0 16px;
}

.story-block {
    margin-bottom: 30px;
}

.story-divider {
    width: 120%;
    height: 2.8px;
    margin-top: 22px;
    margin-bottom: 22px;
    margin-left: -10%;
    margin-right: 0;
    background: linear-gradient(
        90deg,
        rgba(43, 90, 143, 0) 0%,
        rgba(43, 90, 143, 0.35) 18%,
        rgba(43, 90, 143, 0.35) 82%,
        rgba(43, 90, 143, 0) 100%
    );
}

.chapter {
    margin-bottom: 18px;
}

.chapter h2 {
    position: relative;
    padding-left: 14px;
}

.chapter h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 4px;
    height: 1.05em;
    background: #2b5a8f;
    border-radius: 2px;
}

.quote-banner {
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    padding: 14px 0;
    margin: 0 0 24px;
    background: transparent;
}

.quote-banner p {
    margin: 0;
    font-family: "Crimson Text", Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.55;
    font-style: italic;
    color: #2f2f2f;
}

figure {
    margin: 22px 0;
}

.hero-image {
    margin: 0 0 28px;
}

.hero-image img {
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.wide-figure {
    width: calc(120% + 300px);
    margin-top: 10px;
    margin-bottom: 22px;
    margin-left: -160px;
}

figcaption {
    margin-top: 8px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.8rem;
    color: #666666;
    letter-spacing: 0.01em;
}

.sources ul {
    margin: 0;
    padding-left: 18px;
    border-top: 1px solid #d3d3d3;
    padding-top: 12px;
}

.sources-note {
    font-size: 0.98rem;
    line-height: 1.55;
    color: #4a4a4a;
    margin-bottom: 12px;
}

.sources li {
    margin-bottom: 8px;
    font-size: 0.98rem;
}

a {
    color: #2b5a8f;
}

a:hover {
    color: #1e436c;
}

@media (max-width: 840px) {
    .page-wrap {
        padding: 20px 14px 30px;
    }

    .wide-figure {
        width: 100%;
        margin-left: 0;
    }

    p {
        font-size: 1.12rem;
    }
}