* {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #000000;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: #ffffff;
}

body,
a,
button,
input,
textarea,
select {
    color: #000000;
}

.page-frame {
    min-height: calc(100vh - 2rem);
    margin: 1rem;
    border: 2px solid #000000;
    background: #ffffff;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem;
    border-bottom: 2px solid #000000;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: max-content;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.brand img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 1rem;
}

nav a,
.archive-list a {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero,
.copy,
.panel {
    padding: clamp(1rem, 3vw, 2rem);
    border-bottom: 2px solid #000000;
}

.hero {
    grid-column: 1 / -1;
}

.content-grid > :nth-child(even) {
    border-right: 2px solid #000000;
}

.kicker {
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 15ch;
    font-size: clamp(2.25rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 1.25rem;
}

p,
li {
    font-size: 1rem;
    line-height: 1.55;
}

.standfirst {
    max-width: 42rem;
    font-size: 1.25rem;
}

.archive-list {
    columns: 2;
    gap: 2rem;
    padding-left: 1.2rem;
    margin-bottom: 0;
}

@media (max-width: 780px) {
    .site-header,
    .content-grid {
        display: block;
    }

    .site-header,
    .brand {
        align-items: flex-start;
    }

    nav {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .hero,
    .copy,
    .panel,
    .content-grid > :nth-child(even) {
        border-right: 0;
    }

    .archive-list {
        columns: 1;
    }
}
