:root {
    color-scheme: light;
    --color-canvas: #f5f7f8;
    --color-surface: #ffffff;
    --color-text: #202d36;
    --color-muted: #697781;
    --color-line: #dce3e7;
    --color-accent: #246a73;
    --color-accent-dark: #164a51;
    --shadow-soft: 0 10px 28px rgba(25, 49, 61, 0.07);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--color-canvas);
}

body {
    margin: 0;
    background: var(--color-canvas);
    color: var(--color-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

a {
    color: inherit;
}

.site-shell {
    width: min(1180px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 32px 0 0;
}

.site-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.site-sidebar {
    min-width: 0;
}

.logo {
    display: flex;
    width: 250px;
    height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9d7d9;
    border-radius: 4px;
    background: linear-gradient(135deg, #e9f1f0, #fdfefe);
    box-shadow: var(--shadow-soft);
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.logo:hover {
    border-color: var(--color-accent);
    box-shadow: 0 14px 30px rgba(25, 74, 81, 0.13);
    transform: translateY(-2px);
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.logo__name {
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: 0.16em;
}

.logo__size {
    margin-top: 6px;
    color: var(--color-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.news-sidebar {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: 4px;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
}

.news-sidebar h2 {
    margin: 0 0 15px;
    color: var(--color-accent-dark);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.news-sidebar__list {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-item a {
    display: block;
    padding: 7px 9px;
    border-radius: 3px;
    color: var(--color-text);
    font-size: 0.92rem;
    line-height: 1.35;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.news-item a:hover {
    background: #edf5f4;
    color: var(--color-accent-dark);
}

.news-item--highlighted a {
    border-left: 2px solid #74a9a2;
    background: #f1f8f6;
    color: var(--color-accent-dark);
    font-weight: 650;
}

.news-item--animated a {
    animation: news-highlight 3.8s ease-in-out infinite;
}

@keyframes news-highlight {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(77, 144, 135, 0); }
    50% { box-shadow: inset 0 0 0 999px rgba(143, 199, 190, 0.13); }
}

@media (prefers-reduced-motion: reduce) {
    .news-item--animated a { animation: none; }
}

.news-sidebar__more {
    display: inline-flex;
    gap: 5px;
    margin-top: 18px;
    color: var(--color-accent);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

.news-sidebar__more:hover {
    color: var(--color-accent-dark);
}

.site-content {
    min-width: 0;
}

.site-header {
    min-height: 58px;
    border-bottom: 1px solid var(--color-line);
}

.site-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 20px;
    align-items: center;
    min-height: 58px;
}

.site-navigation a {
    position: relative;
    padding: 8px 0;
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--color-accent);
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-navigation a:hover,
.site-navigation a.is-active {
    color: var(--color-accent-dark);
}

.site-navigation a:hover::after,
.site-navigation a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-main {
    padding: clamp(34px, 6vw, 72px) 0 62px;
}

.content-page {
    max-width: 760px;
}

.content-page__eyebrow {
    margin: 0 0 8px;
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.content-page h1 {
    margin: 0 0 22px;
    color: #18262f;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    letter-spacing: -0.035em;
    line-height: 1.18;
}

.content-page p {
    margin: 0 0 17px;
}

.content-page,
.news-item a,
.site-footer {
    overflow-wrap: anywhere;
}

.content-page__body h2, .content-page__body h3, .content-page__body h4 { margin: 28px 0 12px; color: #18262f; line-height: 1.25; }.content-page__body h2 { font-size: 1.55rem; }.content-page__body h3 { font-size: 1.25rem; }.content-page__body h4 { font-size: 1.08rem; }.content-page__body ul, .content-page__body ol { margin: 0 0 17px; padding-left: 25px; }.content-page__body a { color: var(--color-accent-dark); text-decoration-thickness: 1px; }.content-page__body img { display: block; max-width: 100%; height: auto; margin: 22px 0; border-radius: 4px; }
.news-feed__item { display: block; width: 100%; padding: 24px; margin: 0 0 20px; border: 1px solid var(--color-line); border-radius: 12px; background: var(--color-surface); }.news-feed__item img { width: 180px; height: 120px; border-radius: 4px; object-fit: cover; }.news-feed__item time { color: var(--color-muted); font-size: .84rem; }.news-feed__item h2 { margin: 3px 0 8px; font-size: 1.35rem; line-height: 1.25; }.news-feed__item h2 a { color: #18262f; text-decoration: none; }.news-feed__more { color: var(--color-accent-dark); font-size: .9rem; font-weight: 650; }.news-article__image { display: block; width: 100%; max-height: 500px; margin: 0 0 24px; border-radius: 4px; object-fit: contain; }

.content-placeholder {
    display: grid;
    min-height: 220px;
    margin: 30px 0;
    overflow: hidden;
    place-items: center;
    border: 1px solid #cad7dc;
    border-radius: 4px;
    background-color: #e9eff1;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.55) 75%, transparent 75%);
    background-size: 28px 28px;
    color: #597079;
}

.content-placeholder span {
    padding: 8px 13px;
    border: 1px solid rgba(89, 112, 121, 0.25);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
    padding: 23px 0 27px;
    border-top: 1px solid var(--color-line);
    color: var(--color-muted);
    font-size: 0.84rem;
}

.site-footer a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer a:hover {
    color: var(--color-accent-dark);
}

@media (max-width: 760px) {
    .site-shell {
        width: min(100% - 32px, 560px);
        padding-top: 16px;
    }

    .site-layout {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .site-sidebar {
        display: contents;
    }

    .logo {
        width: min(250px, 100%);
        height: auto;
        aspect-ratio: 1;
        order: 0;
    }

    .site-content {
        display: contents;
    }

    .site-header {
        width: 100%;
        order: 1;
    }

    .news-sidebar {
        width: 100%;
        margin-top: 0;
        order: 2;
    }

    .site-main {
        width: 100%;
        padding: 4px 0 42px;
        order: 3;
    }

    .site-navigation {
        gap: 2px 17px;
        padding: 7px 0;
    }
}

@media (max-width: 420px) {
    .site-shell {
        width: calc(100% - 24px);
    }

    .news-sidebar {
        padding: 18px;
    }

    .site-navigation {
        gap: 0 15px;
    }

    .site-navigation a {
        font-size: 0.84rem;
    }

    .news-feed__item {
        padding: 18px;
    }

    .news-feed__item img {
        width: 100%;
        height: auto;
        max-height: 220px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}