@font-face {
    font-family: Civic;
    src: url('/fonts/NotoSans-Regular.ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Civic;
    src: url('/fonts/NotoSans-Bold.ttf');
    font-weight: 600 900;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

body {
    margin: 0;
    color: #203a2e;
    background: #fff;
    font: 15px/1.75 Civic,system-ui,sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,summary {
    font: inherit;
}

a:focus-visible,summary:focus-visible {
    outline: 3px solid #b38b39;
    outline-offset: 5px;
}

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

h1,h2,h3 {
    line-height: 1.16;
    letter-spacing: -.045em;
}

h1 {
    font-size: clamp(36px,4.5vw,66px);
}

h2 {
    font-size: clamp(28px,3vw,42px);
}

h3 {
    font-size: 21px;
}

p {
    color: #617367;
}

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

.skip {
    position: absolute;
    top: -100px;
}

.skip:focus {
    top: 8px;
    background: white;
    z-index: 5;
    padding: 12px;
}

.civic-strip {
    background: #164637;
    color: #d6e9df;
    padding: 9px max(24px,calc((100vw - 1200px)/2));
    font-size: 10px;
    letter-spacing: .1em;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.public-header {
    max-width: 1248px;
    margin: auto;
    padding: 25px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.04em;
}

.brand img {
    width: 38px;
    height: 48px;
}

.brand small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .02em;
    margin-top: 4px;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 12px;
}

nav a {
    padding: 8px 0;
}

.nav-login {
    border: 1px solid #b8ccbf;
    padding: 10px 16px;
    border-radius: 6px;
}

.hero {
    max-width: 1248px;
    margin: 25px auto 0;
    padding: 0 24px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

.hero-copy {
    padding: 30px 0;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .13em;
    font-weight: 700;
    color: #38654f;
    margin-bottom: 22px;
}

.hero-copy>p:not(.eyebrow) {
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    gap: 32px;
    align-items: center;
    background: #246b57;
    color: white;
    padding: 15px 22px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.text-link {
    font-size: 13px;
    font-weight: 700;
}

.hero-note {
    margin-top: 42px;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #789080;
}

.hero-image {
    margin: 0;
    background: #dcefeb;
    border-radius: 140px 14px 14px 14px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero-image figcaption {
    position: absolute;
    bottom: 16px;
    left: 20px;
    background: #fffE;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 10px;
}

.section {
    max-width: 1248px;
    padding: 65px 24px;
    margin: auto;
}

.profile-grid {
    border-top: 1px solid #dde6df;
    border-bottom: 1px solid #dde6df;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
}

.lead {
    font-size: 22px;
    color: #284d3b;
    line-height: 1.5;
}

.profile-note {
    border-left: 3px solid #b89a4f;
    padding: 10px 22px;
    font-size: 13px;
    color: #4c6355;
    margin-top: 28px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
    font-size: 13px;
    margin-bottom: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service {
    border: 1px solid #dce6df;
    border-radius: 10px;
    background: #fff;
}

.service summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    cursor: pointer;
    list-style: none;
}

.service-number {
    font-size: 12px;
    color: #7b9384;
}

.service strong {
    font-size: 15px;
    flex: 1;
}

.expand {
    font-size: 23px;
    font-weight: 400;
}

.service>div {
    padding: 0 22px 22px;
}

.service h3 {
    font-size: 15px;
}

.preserve {
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.news-section {
    background: #f1f5f1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px;
}

.news-card {
    background: white;
    border: 1px solid #dfe7df;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.news-card:hover {
    box-shadow: 0 8px 22px #163c3212;
}

.news-card>img,.news-placeholder {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.news-placeholder {
    background: #dce9dd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    letter-spacing: .06em;
    color: #406452;
}

.news-placeholder span {
    font-size: 9px;
    letter-spacing: .2em;
    margin-top: 10px;
}

.news-copy {
    padding: 24px;
}

.news-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 15px;
}

.news-copy h3 {
    line-height: 1.4;
    letter-spacing: -.02em;
}

.news-copy p {
    font-size: 13px;
}

.read-more {
    font-size: 12px;
    font-weight: 700;
}

.pagination {
    margin-top: 28px;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
}

.announcement {
    border-bottom: 1px solid #dce5de;
    padding: 22px 0;
}

.announcement summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.announcement p {
    padding-top: 20px;
}

.empty {
    padding: 26px;
    border: 1px dashed #c7d6cb;
    border-radius: 8px;
    color: #617367;
    font-size: 14px;
    grid-column: 1/-1;
}

.article {
    max-width: 840px;
}

.article>.eyebrow {
    margin-top: 40px;
}

.article h1 {
    font-size: clamp(30px,4vw,48px);
    line-height: 1.25;
}

.article-image {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: 12px;
}

.publisher {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 30px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #dae4dc;
    font-size: 12px;
}

.publisher img {
    width: 36px;
}

.publisher strong {
    font-size: 18px;
}

.article-body {
    white-space: pre-line;
    overflow-wrap: anywhere;
    font-size: 17px;
    line-height: 1.9;
}

footer {
    background: #143d31;
    color: #d5e7d9;
    margin-top: 30px;
}

.footer-inner {
    max-width: 1248px;
    margin: auto;
    padding: 48px 24px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-inner strong {
    font-size: 23px;
}

.footer-inner p,.footer-inner a {
    color: #b6cdbe;
    font-size: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
    border-top: 1px solid #ffffff20;
    font-size: 10px;
    color: #a3beab;
    letter-spacing: .05em;
}

@media(max-width:900px) {

    .public-header {
        flex-wrap: wrap;
    }

    nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    .hero {
        gap: 24px;
    }

    .hero-image img {
        height: 430px;
    }

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

    .profile-grid {
        gap: 35px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media(max-width:600px) {

    .civic-strip {
        padding: 10px 18px;
    }

    .civic-strip span {
        display: none;
    }

    .public-header {
        padding: 20px 18px;
        gap: 16px;
    }

    nav {
        gap: 8px 18px;
        width: 100%;
        font-size: 11px;
    }

    nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 0 18px 36px;
        margin-top: 0;
        gap: 16px;
    }

    .hero-copy {
        padding: 22px 0 0;
    }

    .hero-note {
        margin-top: 24px;
    }

    .hero-image {
        border-radius: 60px 10px 10px 10px;
    }

    .hero-image img {
        height: 280px;
    }

    .section {
        padding: 40px 18px;
    }

    .profile-grid,.service-grid,.news-grid {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        gap: 12px;
    }

    .section-heading {
        gap: 14px;
    }

    .hero-actions {
        gap: 20px;
    }

    .footer-inner {
        flex-direction: column;
        padding: 30px 18px;
    }

    .footer-bottom {
        padding: 18px;
    }

    .article-body {
        font-size: 16px;
    }
}

@media(prefers-reduced-motion:reduce) {

    html {
        scroll-behavior: auto;
    }

    * {
        transition: none!important;
    }
}
