:root {
    --brand-blue: #3a3f6f;
    --brand-orange: #ff9560;
    --brand-green: #5a8b4a;
    --text-color: #27303f;
    --muted-color: #657184;
    --page-background: #ffffff;
    --soft-background: #f4f7f8;
    --content-width: 1080px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-color);
    background: var(--page-background);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.62;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.public-main {
    min-height: 40vh;
}

.template-content h1,
.template-content h2,
.template-content h3 {
    color: var(--brand-blue);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
    letter-spacing: 0;
}

.template-content h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-align: center;
}

.template-content h2 {
    font-size: 1.45rem;
}

.template-content h3 {
    font-size: 1.1rem;
}

.template-content p {
    margin: 0 0 1rem;
}

.content-section {
    width: min(var(--content-width), calc(100% - 2rem));
    margin: 0 auto;
    padding: 3.5rem 0;
}

.content-section + .content-section {
    border-top: 1px solid #e3e8ed;
}

.template-content ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}

.template-content li + li {
    margin-top: .45rem;
}

.brand-pill {
    display: inline-block;
    padding: .08rem .35rem;
    color: #ffffff;
    background: var(--brand-orange);
    font-weight: 700;
}

.template-special {
    width: min(var(--content-width), calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

@media (max-width: 720px) {
    .content-section {
        width: min(100% - 1.25rem, var(--content-width));
        padding: 2.25rem 0;
    }

    .template-content h1 {
        font-size: 2rem;
    }
}
