* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    color: #333;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 150%;
}

.wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    display: block;
}

.logo img {
    height: 128px;
    display: block;
}

nav a {
    color: #333;
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
}

nav a:hover {
    color: #0c52bb;
}

main {
    padding: 40px 0 80px;
}

.breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 28px;
}

.breadcrumb a {
    color: #777;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #0c52bb;
}

h1 {
    font-family: "Source Serif 4", serif;
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    color: #333;
    margin-bottom: 32px;
    text-align: left;
}

h2 {
    font-family: "Source Serif 4", serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    color: #333;
    margin: 40px 0 16px;
}

h3 {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    margin: 24px 0 8px;
}

.subtitle {
    font-size: 16px;
    color: #777;
    margin-top: -20px;
    margin-bottom: 32px;
}

.lead {
    font-size: 18px;
    line-height: 150%;
}

p {
    font-size: 16px;
    line-height: 150%;
    color: #333;
    margin-bottom: 24px;
}

a {
    color: #333;
    text-decoration: underline;
    text-decoration-color: #cfcfcf;
    text-underline-offset: 2px;
}

a:hover {
    color: #0c52bb;
    text-decoration-color: #0c52bb;
}

ul,
ol {
    margin: 0 0 24px 20px;
}

li {
    font-size: 16px;
    line-height: 150%;
    color: #333;
    margin-bottom: 10px;
}

dl {
    margin-bottom: 24px;
}

dt {
    font-weight: 500;
    color: #333;
    margin-top: 16px;
}

dd {
    color: #555;
    margin: 4px 0 0 0;
}

.bio {
    margin-top: 48px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.bio h2 {
    margin-top: 0;
    font-size: 16px;
}

.bio p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.note-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 28px;
}

.related {
    margin-top: 40px;
    font-size: 14px;
}

.related a {
    display: inline-block;
    margin-right: 18px;
}

.cardlist {
    list-style: none;
    margin-left: 0;
}

.cardlist li {
    margin-bottom: 18px;
}

.disclaimer {
    margin-top: 56px;
    font-size: 13px;
    line-height: 150%;
    color: #777;
}

.disclaimer p {
    font-size: 13px;
    color: #777;
}

footer {
    padding: 24px 0 48px;
    font-size: 13px;
    border-top: 1px solid #e3e3e3;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-bottom: 14px;
}

footer a {
    color: #777;
    text-decoration: none;
}

footer a:hover {
    color: #0c52bb;
}

.footer-legal {
    color: #999;
    font-size: 12px;
}

form {
    margin-top: 16px;
}

label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
}

.field {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #333;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 12px;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #0c52bb;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #ffffff;
    background: #333;
    border: none;
    border-radius: 3px;
    padding: 11px 28px;
    cursor: pointer;
}

button:hover {
    background: #0c52bb;
}

.status {
    margin-top: 16px;
    font-size: 14px;
    color: #777;
    display: none;
}

@media (max-width: 600px) {
    h1 {
        font-size: 18px;
    }

    .logo img {
        height: 88px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    h1 {
        font-size: 22px;
    }
}
