:root {
    --red: #2f9e55;
    --black: #0c2231;
    --dark: #102b38;
    --muted: #667678;
    --line: #d9e5df;
    --soft: #eef6f1;
    --white: #fff;
    --accent: #f4c542;
    --accent-soft: #fff7db;
    --green: #2f9e55;
    --green-dark: #1f7a44;
    --blue-dark: #0c2231;
    --blue: #1673a5;
    --surface: #f7faf8;
    --surface-strong: #edf5f0;
    --ink: #183035;
    --font-main: Aptos, Inter, "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Plus Jakarta Sans", Aptos, Inter, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-main); color: #1b2b2d; background: #e9f0ec; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, .site-brand, .header-ad, .lead-story h1, .section-label, .widget h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.top-strip {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px max(18px, calc((100vw - 1180px) / 2));
    background: var(--surface-strong);
    color: var(--muted);
    font-size: 12px;
}

.brand-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px max(18px, calc((100vw - 1180px) / 2));
    background: var(--white);
}

.site-brand { display: flex; align-items: center; gap: 14px; font-weight: 900; font-size: 30px; }
.site-brand img { width: 170px; }
.header-ad {
    min-width: 320px;
    padding: 18px 28px;
    background: linear-gradient(110deg, var(--blue-dark) 0 66%, var(--green) 66% 100%);
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 0 max(18px, calc((100vw - 1180px) / 2));
    background: var(--black);
}

.main-nav a {
    padding: 16px 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}
.main-nav a:first-child { background: var(--red); }
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a::after {
    content: "▾";
    margin-left: 7px;
    font-size: 10px;
}
.nav-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 30;
    display: none;
    min-width: 230px;
    background: #fff;
    border-top: 3px solid var(--red);
    box-shadow: 0 15px 35px rgba(0,0,0,.18);
}
.nav-submenu a {
    display: block;
    padding: 12px 14px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    line-height: 1.25;
}
.nav-submenu a:hover,
.nav-submenu a:focus {
    background: var(--surface-strong);
    color: var(--red);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: block;
}
.main-nav form { margin-left: auto; display: flex; align-items: center; }
.main-nav input { width: 190px; border: 0; padding: 10px; }
.main-nav button, .search-large button {
    border: 0;
    padding: 10px 13px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}

.header-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}
.portal-header {
    position: relative;
    z-index: 50;
    background: #fff;
    box-shadow: 0 6px 22px rgba(0,0,0,.06);
}
.portal-topbar {
    background: var(--surface);
    color: var(--muted);
    font-size: 12px;
}
.portal-topbar .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 34px;
}
.topbar-news {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}
.topbar-news strong {
    flex: 0 0 auto;
    color: var(--red);
    text-transform: uppercase;
}
.topbar-ticker-window {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}
.topbar-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    min-width: max-content;
    animation: ticker-scroll 42s linear infinite;
}
.topbar-ticker-track a,
.topbar-ticker-track span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}
.topbar-ticker-track a {
    text-decoration: underline;
    text-decoration-color: rgba(47, 158, 85, .45);
    text-underline-offset: 3px;
}
.topbar-ticker-track a::after,
.topbar-ticker-track span::after {
    content: "";
    position: absolute;
    right: -17px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    transform: translateY(-50%);
}
.topbar-ticker-track em {
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 2px 6px;
    border-radius: 3px;
    background: #eaf7ee;
    color: var(--red);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}
.topbar-ticker-track span em {
    background: #eaf3f8;
    color: var(--blue);
}
.topbar-news:hover .topbar-ticker-track {
    animation-play-state: paused;
}
.topbar-social {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}
.topbar-social a,
.topbar-social button {
    display: grid;
    place-items: center;
    min-width: 28px;
    height: 24px;
    border: 1px solid #e1e5ec;
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}
.topbar-social a svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.topbar-social .share-page-button {
    display: inline-flex;
    gap: 5px;
    width: auto;
    padding: 0 9px;
    color: var(--red);
}
.share-page-button svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}
.topbar-social a:hover,
.topbar-social button:hover {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}
.portal-header .brand-bar {
    display: block;
    padding: 0;
    background: var(--white);
}
.brand-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 118px;
    padding: 18px 0;
}
.site-brand {
    min-width: 0;
}
.site-brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header-ad {
    width: min(520px, 48vw);
    min-width: 0;
    font-size: clamp(18px, 2vw, 26px);
    letter-spacing: .5px;
}
.mobile-menu-button,
.mobile-search-button {
    display: none;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: #111;
    font-weight: 900;
}
.mobile-menu-button {
    width: 42px;
    height: 42px;
    place-items: center;
    gap: 4px;
    padding: 10px;
}
.mobile-menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue-dark);
}
.mobile-search-button {
    width: 42px;
    height: 42px;
    font-size: 24px;
}
.portal-header .main-nav {
    display: block;
    padding: 0;
}
.nav-inner {
    display: flex;
    align-items: stretch;
    gap: 1px;
}
.home-link,
.nav-scroll > a,
.nav-dropdown > a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.home-link {
    background: var(--red);
}
.nav-scroll {
    display: flex;
    align-items: stretch;
    min-width: 0;
    flex: 1;
}
.nav-dropdown > a::after {
    content: "v";
    margin-left: 8px;
    font-size: 10px;
}
.nav-scroll > a:hover,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
    background: #173747;
}
.nav-mega {
    width: min(760px, calc(100vw - 36px));
    padding: 18px;
    grid-template-columns: 200px 1fr;
    gap: 18px;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega {
    display: grid;
}
.mega-links {
    display: grid;
    align-content: start;
    gap: 4px;
    min-width: 190px;
}
.mega-links strong {
    margin-bottom: 8px;
    color: var(--red);
    font-size: 14px;
    text-transform: uppercase;
}
.mega-links a,
.nav-submenu > a {
    display: block;
    padding: 10px 0;
    color: #111;
    border-bottom: 1px solid #eee;
    font-weight: 900;
}
.mega-posts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.mega-posts a {
    display: grid;
    gap: 8px;
}
.mega-posts img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.mega-posts span {
    color: #111;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
}
.nav-search {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 12px;
}
.nav-search input {
    width: 210px;
    border: 0;
    padding: 11px;
}
.nav-search button,
.mobile-panel form button {
    border: 0;
    padding: 11px 14px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.mobile-panel,
.mobile-backdrop {
    display: none;
}

.ticker {
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 12px 0;
    font-size: 13px;
    overflow: hidden;
}
.ticker strong {
    flex: 0 0 auto;
    color: var(--red);
}
.ticker-window {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    min-width: max-content;
    animation: ticker-scroll 34s linear infinite;
}
.ticker-track a,
.ticker-track span {
    position: relative;
    color: #111;
}
.ticker-track a::after,
.ticker-track span::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    transform: translateY(-50%);
}
.ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

main { width: min(1180px, calc(100% - 36px)); margin: 0 auto 50px; }

.headline-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 18px;
    margin-bottom: 24px;
}

.lead-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--blue-dark);
}
.lead-story {
    position: absolute;
    inset: 0;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: 32px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity .55s ease, transform .7s ease, visibility .55s ease;
}
.lead-story.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.lead-story::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,.78));
}
.lead-story > * { position: relative; z-index: 1; }
.lead-story span, .news-card small { width: fit-content; padding: 5px 8px; background: var(--red); color: #fff; font-size: 12px; font-weight: 900; }
.lead-story h1 { margin: 0; width: min(720px, 100%); font-size: clamp(32px, 5vw, 54px); line-height: 1.04; }
.lead-story p { width: min(760px, 100%); margin: 0; color: #eee; line-height: 1.5; }
.lead-slider-controls {
    position: absolute;
    right: 22px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.lead-slider-controls button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.48);
    cursor: pointer;
}
.lead-slider-controls button.is-active {
    background: var(--red);
}

.headline-rail {
    display: grid;
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 12px;
    min-height: 520px;
}
.headline-rail a {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    gap: 10px;
    background: #102b38;
    color: #fff;
    padding: 8px;
    min-height: 0;
    overflow: hidden;
}
.headline-rail img { width: 92px; height: 74px; object-fit: cover; }
.headline-rail span { align-self: center; font-weight: 900; line-height: 1.25; }

.content-layout, .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
}

.section-label {
    margin: 0 0 14px;
    padding: 10px 13px;
    background: #fff;
    border-left: 6px solid var(--red);
    color: var(--red);
    font-weight: 900;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.news-card {
    background: #fff;
    border: 1px solid #d5d5d5;
}
.news-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.news-card small { margin: 12px 14px 0; display: inline-block; }
.news-card h2 { margin: 10px 14px; font-size: 22px; line-height: 1.2; }
.news-card p { margin: 0 14px 16px; color: var(--muted); line-height: 1.5; }

.list-news { display: grid; gap: 14px; margin-bottom: 24px; }
.list-news a {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    padding: 12px;
    background: #fff;
}
.list-news img { width: 210px; height: 130px; object-fit: cover; }
.list-news strong, .list-news em { display: block; }
.list-news strong { font-size: 22px; margin-bottom: 8px; }
.list-news em { color: var(--muted); font-style: normal; line-height: 1.5; }

.sidebar { display: grid; align-content: start; gap: 18px; }
.widget {
    background: #fff;
    border: 1px solid #d5d5d5;
    padding: 14px;
}
.widget h3 {
    margin: -14px -14px 12px;
    padding: 10px 14px;
    background: var(--black);
    color: #fff;
    font-size: 15px;
}
.widget a, .widget span {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-weight: 800;
}

.village-menu-widget {
    display: grid;
    gap: 12px;
}
.village-menu-widget h3 {
    margin-bottom: 2px;
}
.village-menu-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 62px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    overflow: hidden;
    padding: 16px !important;
    border: 0 !important;
    border-radius: 7px;
    color: #fff;
    background: var(--blue-dark);
    isolation: isolate;
}
.village-menu-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.36)),
        var(--menu-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform .2s ease;
}
.village-menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(47,158,85,.3), transparent 48%, rgba(12,34,49,.28));
}
.village-menu-card:hover::before {
    transform: scale(1.1);
}
.village-menu-icon {
    display: grid !important;
    place-items: center;
    width: 58px;
    height: 58px;
    padding: 0 !important;
    border: 3px solid var(--accent) !important;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    color: #fff;
}
.village-menu-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.village-menu-card strong {
    min-width: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.village-digital {
    --menu-bg:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='160' viewBox='0 0 420 160'%3E%3Crect width='420' height='160' fill='%23121a2c'/%3E%3Cg fill='none' stroke='%234d8cff' stroke-width='3' opacity='.55'%3E%3Cpath d='M228 35h62v46h-62zM245 112h28M259 81v31M238 48h42M238 64h28'/%3E%3Cpath d='M45 30h90v90H45zM62 48h56v54H62zM75 122h30' opacity='.35'/%3E%3C/g%3E%3Ccircle cx='355' cy='42' r='52' fill='%23f04a32' opacity='.45'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #0c2231 0%, #174f72 52%, #2f9e55 100%);
}
.village-bumdes {
    --menu-bg:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='160' viewBox='0 0 420 160'%3E%3Crect width='420' height='160' fill='%23182416'/%3E%3Cg fill='none' stroke='%23a5e36f' stroke-width='4' opacity='.5'%3E%3Cpath d='M220 75h110M235 75v58M275 75v58M315 75v58M210 132h132M220 75l55-38 55 38'/%3E%3Cpath d='M58 94c35-42 66-42 101 0' opacity='.32'/%3E%3C/g%3E%3Ccircle cx='355' cy='45' r='58' fill='%23f04a32' opacity='.36'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #0c2231 0%, #28623f 52%, #2f9e55 100%);
}
.village-pamsimas {
    --menu-bg:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='160' viewBox='0 0 420 160'%3E%3Crect width='420' height='160' fill='%2310242f'/%3E%3Cg fill='none' stroke='%2361d7ff' stroke-width='4' opacity='.58'%3E%3Cpath d='M275 28s42 45 42 78a42 42 0 0 1-84 0c0-33 42-78 42-78Z'/%3E%3Cpath d='M252 105a22 22 0 0 0 22 22'/%3E%3Cpath d='M42 115c48-26 96 26 144 0s96-26 144 0' opacity='.32'/%3E%3C/g%3E%3Ccircle cx='360' cy='44' r='52' fill='%23f04a32' opacity='.32'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #0c2231 0%, #167a9a 52%, #2f9e55 100%);
}
.village-kopdes {
    --menu-bg:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='160' viewBox='0 0 420 160'%3E%3Crect width='420' height='160' fill='%23241705'/%3E%3Cg fill='none' stroke='%23ffd35f' stroke-width='4' opacity='.55'%3E%3Cpath d='M218 88l27 27 38-38 28 28'/%3E%3Cpath d='M188 70l38-38 48 48M362 70l-38-38-48 48'/%3E%3Cpath d='M194 106l52 34a38 38 0 0 0 42 0l66-46'/%3E%3C/g%3E%3Ccircle cx='360' cy='42' r='56' fill='%23f04a32' opacity='.34'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #0c2231 0%, #6d5a13 52%, #2f9e55 100%);
}

.weather-widget {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 20%, rgba(244,197,66,.2), transparent 24%),
        linear-gradient(135deg, #0c2231 0%, #145071 56%, #2f9e55 100%);
    color: #fff;
    border: 0;
    padding: 18px;
}
.weather-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 900;
}
.weather-head span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255,255,255,.55);
    border-radius: 50%;
    color: rgba(255,255,255,.72);
}
.weather-current {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 10px;
}
.weather-temp {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 5px;
}
.weather-temp strong {
    font-size: 78px;
    line-height: .9;
    letter-spacing: 0;
}
.weather-temp span {
    padding-top: 8px;
    border: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}
.weather-place {
    display: grid;
    gap: 5px;
    margin-top: 4px;
    text-align: center;
}
.weather-place strong {
    font-size: 28px;
    line-height: 1;
}
.weather-place span {
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.weather-detail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 16px 0 18px;
    font-size: 13px;
}
.weather-detail span {
    min-height: 46px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    color: #fff;
    font-weight: 800;
    line-height: 1.25;
    background: rgba(0,0,0,.16);
}
.weather-forecast {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}
.weather-forecast div {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 8px 4px;
    border-radius: 8px;
    background: rgba(0,0,0,.18);
}
.weather-forecast strong,
.weather-forecast small {
    color: #fff;
    font-weight: 900;
}
.weather-forecast small { font-size: 12px; }
.weather-icon,
.mini-weather-icon {
    position: relative;
    display: block;
}
.weather-icon {
    width: 88px;
    height: 88px;
}
.mini-weather-icon {
    width: 26px;
    height: 26px;
}
.weather-icon-sun::before,
.mini-weather-icon.weather-icon-sun::before {
    content: "";
    position: absolute;
    inset: 22%;
    border: 8px solid #ffbd24;
    border-radius: 50%;
    box-shadow: 0 -30px 0 -11px #ffbd24, 0 30px 0 -11px #ffbd24, 30px 0 0 -11px #ffbd24, -30px 0 0 -11px #ffbd24, 22px 22px 0 -12px #ffbd24, -22px 22px 0 -12px #ffbd24, 22px -22px 0 -12px #ffbd24, -22px -22px 0 -12px #ffbd24;
}
.mini-weather-icon.weather-icon-sun::before {
    border-width: 3px;
    box-shadow: 0 -11px 0 -4px #ffbd24, 0 11px 0 -4px #ffbd24, 11px 0 0 -4px #ffbd24, -11px 0 0 -4px #ffbd24, 8px 8px 0 -5px #ffbd24, -8px 8px 0 -5px #ffbd24, 8px -8px 0 -5px #ffbd24, -8px -8px 0 -5px #ffbd24;
}
.weather-icon-cloud::before,
.weather-icon-rain::before,
.weather-icon-storm::before,
.mini-weather-icon.weather-icon-cloud::before,
.mini-weather-icon.weather-icon-rain::before,
.mini-weather-icon.weather-icon-storm::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 10%;
    bottom: 25%;
    height: 34%;
    border-radius: 999px;
    background: #fff;
    box-shadow: 16px -15px 0 2px #fff, 38px -8px 0 6px #fff;
}
.mini-weather-icon.weather-icon-cloud::before,
.mini-weather-icon.weather-icon-rain::before,
.mini-weather-icon.weather-icon-storm::before {
    box-shadow: 5px -5px 0 1px #fff, 12px -3px 0 2px #fff;
}
.weather-icon-rain::after,
.mini-weather-icon.weather-icon-rain::after {
    content: "";
    position: absolute;
    left: 35%;
    bottom: 4%;
    width: 5px;
    height: 18px;
    border-radius: 6px;
    background: #61d7ff;
    box-shadow: 15px 0 0 #61d7ff, 30px 0 0 #61d7ff;
}
.mini-weather-icon.weather-icon-rain::after {
    width: 2px;
    height: 7px;
    box-shadow: 5px 0 0 #61d7ff, 10px 0 0 #61d7ff;
}
.weather-icon-storm::after,
.mini-weather-icon.weather-icon-storm::after {
    content: "";
    position: absolute;
    left: 42%;
    bottom: 1%;
    width: 18px;
    height: 28px;
    background: #ffd336;
    clip-path: polygon(45% 0, 100% 0, 62% 42%, 100% 42%, 28% 100%, 45% 55%, 0 55%);
}
.mini-weather-icon.weather-icon-storm::after {
    width: 8px;
    height: 12px;
}

.article {
    background: #fff;
    padding: clamp(22px, 4vw, 42px);
    line-height: 1.7;
}
.article-image { width: 100%; max-height: 430px; object-fit: cover; margin-bottom: 18px; }
.article h1 { margin: 8px 0 14px; font-size: clamp(32px, 5vw, 54px); line-height: 1.08; }
.meta { color: var(--red); font-weight: 900; }
.page-content {
    display: grid;
    gap: 22px;
}
.html-sandbox-frame {
    width: 100%;
    min-height: min(900px, 82vh);
    border: 0;
    background: #fff;
}
.page-builder-hero {
    padding: clamp(28px, 5vw, 58px);
    background: linear-gradient(135deg, #111, #2d2d2d 60%, var(--red) 60%);
    color: #fff;
}
.page-builder-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
}
.page-builder-hero p {
    max-width: 720px;
    margin: 0;
    color: #f1f1f1;
}
.builder-hero-light {
    background: linear-gradient(135deg, #fff 0 72%, #dff2e5 72%);
    color: #111;
    border: 1px solid var(--line);
}
.builder-hero-light p { color: #555; }
.builder-section {
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid var(--line);
    background: #fff;
}
.builder-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.builder-three-col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.builder-three-col > div,
.builder-doc-list,
.builder-faq details {
    border-left: 5px solid var(--red);
    background: #f7f7f7;
    padding: 18px;
}
.builder-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.builder-card-grid article {
    padding: 18px;
    border-top: 5px solid var(--red);
    background: #f6f6f6;
}
.builder-media {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) 1fr;
    gap: 22px;
    align-items: center;
}
.builder-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.builder-hero-media {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
    gap: 28px;
    align-items: center;
    background: var(--blue-dark);
    color: #fff;
}
.builder-hero-media span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 10px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.builder-hero-media h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.05;
}
.builder-hero-media p { color: #e6e6e6; }
.builder-hero-media a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.builder-hero-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.builder-alert {
    border-left: 8px solid var(--red);
    background: #fff8f6;
}
.builder-alert strong {
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 20px;
}
.builder-alert-large h2 {
    margin: 4px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
}
.builder-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.builder-stat-grid article {
    display: grid;
    gap: 4px;
    padding: 20px;
    background: var(--blue-dark);
    color: #fff;
    border-bottom: 6px solid var(--red);
}
.builder-stat-grid strong {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1;
}
.builder-stat-grid span {
    color: #ddd;
    font-weight: 900;
}
.builder-doc-list ul {
    margin: 12px 0 0;
    padding-left: 20px;
}
.builder-steps {
    display: grid;
    gap: 14px;
}
.builder-steps ol {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    counter-reset: step;
    list-style: none;
}
.builder-steps li {
    position: relative;
    padding: 44px 14px 14px;
    background: #f6f6f6;
    border-top: 5px solid var(--red);
    font-weight: 800;
}
.builder-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 12px;
    left: 14px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.builder-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--blue-dark);
    color: #fff;
}
.builder-contact p { color: #ddd; }
.builder-contact a,
.builder-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 16px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
}
.builder-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.builder-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.builder-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.builder-product-grid article {
    background: #fff;
    border: 1px solid var(--line);
}
.builder-product-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.builder-product-grid h3,
.builder-product-grid p {
    margin-left: 16px;
    margin-right: 16px;
}
.builder-video,
.builder-map {
    display: grid;
    gap: 12px;
}
.builder-video iframe,
.builder-map iframe {
    width: 100%;
    border: 0;
}
.builder-video iframe {
    aspect-ratio: 16 / 9;
}
.builder-map iframe {
    min-height: 320px;
}
.builder-faq {
    display: grid;
    gap: 12px;
}
.builder-faq summary {
    cursor: pointer;
    font-weight: 900;
}
.builder-table {
    overflow-x: auto;
}
.builder-table table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
}
.builder-table th,
.builder-table td {
    padding: 12px;
    border: 1px solid var(--line);
    text-align: left;
}
.builder-table th {
    background: var(--blue-dark);
    color: #fff;
}
.builder-quote {
    margin: 0;
    padding: clamp(24px, 4vw, 42px);
    border-left: 9px solid var(--red);
    background: var(--blue-dark);
    color: #fff;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.18;
}
.builder-cta {
    display: grid;
    justify-items: start;
    gap: 10px;
    background: linear-gradient(135deg, #111 0 62%, var(--red) 62%);
    color: #fff;
}
.builder-cta p { color: #f3f3f3; }
.search-large { display: flex; margin: 18px 0; border: 1px solid var(--line); }
.search-large input { flex: 1; min-width: 0; border: 0; padding: 12px; font: inherit; }
.result-list { display: grid; gap: 12px; }
.result-list a { display: grid; gap: 5px; padding: 14px; border: 1px solid var(--line); }
.result-list span { color: var(--muted); }

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, .95fr) repeat(3, minmax(0, .85fr));
    gap: 28px;
    padding: 46px max(18px, calc((100vw - 1180px) / 2)) 0;
    background:
        radial-gradient(circle at 9% 0%, rgba(119, 214, 79, .16), transparent 34%),
        linear-gradient(135deg, #0c2231 0%, #102b38 54%, #143824 100%);
    color: #fff;
}
.site-footer p { color: #c8c8c8; }
.site-footer strong {
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: 17px;
}
.footer-main,
.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 11px;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    width: fit-content;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    background: rgba(255,255,255,.94);
}
.footer-brand img {
    width: min(270px, 100%);
    max-width: 100%;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.22));
}
.footer-brand strong {
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.05;
}
.footer-copy {
    max-width: 420px;
    margin: 0;
    line-height: 1.6;
}
.footer-links a,
.footer-contact p {
    margin: 0;
    color: #c8c8c8;
    line-height: 1.45;
}
.footer-links a {
    width: fit-content;
    border-bottom: 1px solid transparent;
}
.footer-links a:hover {
    color: #fff;
    border-color: #7fd34e;
}
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-social a,
.footer-share-button {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(196,231,174,.24);
    border-radius: 5px;
    background: rgba(255,255,255,.07);
    color: #fff;
}
.footer-social a:hover,
.footer-share-button:hover {
    border-color: #91dc5b;
    background: #1f8f4d;
}
.footer-social svg,
.footer-share-button svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-share-button {
    display: inline-flex;
    gap: 8px;
    width: fit-content;
    min-height: 40px;
    padding: 0 13px;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}
.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 15px 0;
    border-top: 1px solid rgba(196,231,174,.18);
    color: #bfd2cf;
    font-size: 13px;
}

@media (max-width: 980px) {
    .brand-bar, .main-nav { flex-wrap: wrap; }
    .header-ad { min-width: 100%; }
    .nav-dropdown { position: static; }
    .nav-submenu {
        left: 18px;
        right: 18px;
        min-width: 0;
    }
    .main-nav form { width: 100%; margin: 0 0 10px; }
    .main-nav input { width: 100%; }
    .headline-layout, .content-layout, .article-layout { grid-template-columns: 1fr; }
    .builder-two-col, .builder-three-col, .builder-card-grid, .builder-media, .builder-hero-media, .builder-stat-grid, .builder-steps ol, .builder-gallery, .builder-product-grid { grid-template-columns: 1fr; }
    .builder-contact { align-items: flex-start; flex-direction: column; }
    .headline-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(112px, auto));
        min-height: 0;
    }
    .sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .top-strip, .brand-bar { flex-direction: column; align-items: stretch; }
    .site-brand { font-size: 22px; }
    .site-brand img { width: 140px; max-width: 100%; }
    .main-nav { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 12px 12px; }
    .main-nav a,
    .nav-dropdown > a { display: block; padding: 12px; }
    .nav-submenu {
        position: static;
        box-shadow: none;
        border-top: 0;
    }
    .nav-submenu a {
        padding: 10px 12px 10px 22px;
        font-size: 12px;
    }
    .main-nav form { grid-column: 1 / -1; }
    main, .ticker { width: calc(100% - 24px); }
    .ticker { align-items: flex-start; flex-direction: column; gap: 8px; }
    .ticker-window { width: 100%; }
    .lead-slider, .lead-story { min-height: 390px; }
    .lead-story { padding: 22px; }
    .lead-slider-controls { left: 22px; right: auto; bottom: 16px; }
    .headline-rail, .news-grid, .sidebar, .site-footer { grid-template-columns: 1fr; }
    .headline-rail { grid-template-rows: repeat(4, minmax(104px, auto)); }
    .headline-rail a, .list-news a { grid-template-columns: 96px 1fr; }
    .list-news img { width: 96px; height: 82px; }
    .list-news strong { font-size: 17px; }
    .search-large { flex-direction: column; }
}

@media (max-width: 1080px) {
    .portal-header .main-nav {
        position: static;
    }
    .nav-search {
        display: none;
    }
    .nav-scroll {
        overflow-x: auto;
        scrollbar-width: thin;
    }
    .home-link,
    .nav-scroll > a,
    .nav-dropdown > a {
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    .portal-topbar .header-inner {
        justify-content: center;
    }
    .portal-topbar .header-inner > span:last-child {
        display: none;
    }
    .topbar-news {
        display: none;
    }
    .brand-inner {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        min-height: 82px;
        padding: 12px 0;
    }
    .mobile-menu-button,
    .mobile-search-button {
        display: grid;
    }
    .site-brand {
        justify-content: center;
        gap: 8px;
        font-size: 20px;
    }
    .site-brand img {
        width: 128px;
    }
    .site-brand strong {
        display: none;
    }
    .header-ad {
        display: none;
    }
    .portal-header .main-nav {
        display: none;
    }
    .mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(0,0,0,.46);
    }
    .mobile-panel {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 100;
        display: block;
        width: min(86vw, 360px);
        padding: 18px;
        overflow-y: auto;
        background: #18191d;
        color: #fff;
        transform: translateX(-105%);
        transition: transform .22s ease;
    }
    body.mobile-menu-open .mobile-panel {
        transform: translateX(0);
    }
    body.mobile-menu-open .mobile-backdrop {
        display: block;
    }
    .mobile-panel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .mobile-panel-head strong {
        font-size: 20px;
    }
    .mobile-panel-head button {
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 30px;
        line-height: 1;
    }
    .mobile-panel form {
        display: flex;
        margin-bottom: 14px;
    }
    .mobile-panel input {
        min-width: 0;
        flex: 1;
        border: 0;
        padding: 11px;
    }
    .mobile-panel > a,
    .mobile-panel details {
        display: block;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .mobile-panel > a,
    .mobile-panel summary {
        padding: 13px 0;
        color: #fff;
        font-weight: 900;
    }
    .mobile-panel details a {
        display: block;
        padding: 10px 0 10px 16px;
        color: rgba(255,255,255,.78);
    }
}

/* Active-state correction: only current page is red */
.portal-header .main-nav a:first-child,
.home-link {
    background: transparent;
}
.portal-header .home-link.is-active,
.portal-header .nav-scroll > a.is-active,
.portal-header .nav-dropdown.is-active > a {
    background: var(--red);
    color: #fff;
}
.portal-header .nav-scroll > a:not(.is-active):hover,
.portal-header .nav-dropdown:not(.is-active):hover > a,
.portal-header .nav-dropdown:not(.is-active):focus-within > a {
    background: #173747;
    color: #fff;
}
.portal-header .mega-links a.is-active {
    color: var(--red);
    background: #eaf7ee;
}

/* Clean portal header override */
.portal-header {
    box-shadow: 0 2px 12px rgba(15, 23, 42, .08);
}
.portal-header .header-inner {
    width: min(1180px, calc(100% - 32px));
}
.portal-topbar {
    border-bottom: 1px solid #e9edf2;
    background: #f8fafc;
}
.portal-topbar .header-inner {
    min-height: 32px;
}
.portal-topbar span,
.topbar-news span {
    color: #56616f;
}
.topbar-news {
    flex: 1;
    justify-content: center;
}
.topbar-news strong {
    padding: 3px 8px;
    border-radius: 3px;
    background: #eaf7ee;
}
.portal-header .brand-bar {
    border-bottom: 1px solid #eef1f5;
}
.brand-inner {
    min-height: 92px;
    padding: 14px 0;
}
.site-brand {
    flex: 0 1 auto;
    font-size: 24px;
}
.site-brand img {
    width: 156px;
}
.header-ad {
    width: min(430px, 42vw);
    padding: 14px 22px;
    border-radius: 0;
    font-size: clamp(16px, 1.7vw, 22px);
    line-height: 1.15;
}
.portal-header .main-nav {
    background: var(--blue-dark);
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}
.nav-inner {
    min-height: 48px;
}
.home-link,
.nav-scroll > a,
.nav-dropdown > a {
    min-height: 48px;
    padding: 0 13px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1.2;
}
.nav-scroll {
    overflow: visible;
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}
.nav-submenu,
.nav-mega {
    left: 0;
    width: 280px;
    min-width: 280px;
    padding: 10px 0;
    border-top: 3px solid var(--red);
    background: #fff;
}
.nav-dropdown:hover .nav-mega,
.nav-dropdown:focus-within .nav-mega {
    display: block;
}
.mega-links {
    display: block;
    min-width: 0;
}
.mega-links strong {
    display: block;
    padding: 9px 14px;
    margin: 0;
    color: #111;
    border-bottom: 1px solid #eef1f5;
}
.mega-links a,
.nav-submenu > a {
    padding: 11px 14px;
    border-bottom: 1px solid #f0f2f5;
    font-size: 13px;
}
.mega-links a:hover,
.nav-submenu > a:hover {
    background: #f8fafc;
    color: var(--red);
}
.mega-posts {
    display: none;
}
.nav-search {
    flex: 0 0 270px;
    padding-left: 10px;
}
.nav-search input {
    width: 100%;
    height: 36px;
    border-radius: 3px 0 0 3px;
}
.nav-search button {
    height: 36px;
    border-radius: 0 3px 3px 0;
}
.ticker {
    width: min(1180px, calc(100% - 32px));
    padding: 10px 0;
}

@media (max-width: 1180px) {
    .nav-scroll {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .nav-scroll::-webkit-scrollbar {
        display: none;
    }
    .nav-search {
        flex-basis: 220px;
    }
}

@media (max-width: 900px) {
    .portal-topbar .header-inner {
        justify-content: center;
    }
    .portal-topbar .header-inner > span:last-child,
    .topbar-news {
        display: none;
    }
    .brand-inner {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        min-height: 76px;
        padding: 10px 0;
    }
    .mobile-menu-button,
    .mobile-search-button {
        display: grid;
    }
    .site-brand {
        justify-content: center;
    }
    .site-brand img {
        width: 142px;
    }
    .site-brand strong,
    .header-ad,
    .portal-header .main-nav {
        display: none;
    }
    .mobile-panel {
        display: block;
    }
}

@media (max-width: 760px) {
    .portal-header .brand-bar {
        display: block;
        padding: 0;
    }
    .brand-inner {
        display: grid;
        align-items: center;
    }
    .mobile-panel {
        width: min(88vw, 360px);
        padding: 18px;
        background: var(--blue-dark);
    }
    .mobile-panel form {
        display: flex;
    }
    .mobile-panel > a,
    .mobile-panel summary {
        font-size: 15px;
    }
    .ticker {
        width: calc(100% - 24px);
        padding: 9px 0;
    }
}

/* Final logo sizing override */
.portal-header .site-brand img {
    width: clamp(172px, 15vw, 220px);
    max-width: 100%;
}

@media (max-width: 900px) {
    .portal-header .site-brand img {
        width: clamp(148px, 34vw, 176px);
    }
    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .portal-header .site-brand img {
        width: min(158px, 52vw);
    }
    .site-footer {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 34px;
    }
    .footer-main {
        grid-column: auto;
    }
    .footer-brand {
        justify-content: flex-start;
    }
    .footer-brand img {
        width: min(230px, 78vw);
    }
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Article rich content and gallery */
.article-content { color:var(--ink); font-size:16px; line-height:1.75; overflow-wrap:anywhere; }
.article-content h2,.article-content h3,.article-content h4 { margin:1.4em 0 .55em; line-height:1.2; }
.article-content p { margin:.8em 0; }
.article-content img { max-width:100%; height:auto; }
.article-gallery { position:relative; width:100%; margin:26px 0; }
.article-gallery--pair { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.article-gallery figure { margin:0; overflow:hidden; border-radius:6px; background:var(--soft); }
.article-gallery--pair img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.article-gallery--slider { min-height:clamp(260px,52vw,580px); overflow:hidden; border-radius:6px; background:var(--blue-dark); }
.article-gallery--slider .article-gallery-item { position:absolute; inset:0; opacity:0; visibility:hidden; transition:opacity .3s ease; }
.article-gallery--slider .article-gallery-item.is-active { opacity:1; visibility:visible; }
.article-gallery--slider img { width:100%; height:100%; object-fit:cover; }
.gallery-prev,.gallery-next { position:absolute; top:50%; z-index:2; width:42px; height:42px; border:0; border-radius:50%; background:rgba(12,34,49,.78); color:#fff; font-size:30px; cursor:pointer; transform:translateY(-50%); }
.gallery-prev{left:14px}.gallery-next{right:14px}.gallery-dots{position:absolute;z-index:2;left:50%;bottom:14px;display:flex;gap:7px;transform:translateX(-50%)}
.gallery-dots button{width:9px;height:9px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.55);cursor:pointer}.gallery-dots button.is-active{width:24px;border-radius:5px;background:var(--green)}
@media(max-width:600px){.article-gallery--pair{grid-template-columns:1fr}.article-gallery--slider{min-height:280px}.gallery-prev,.gallery-next{width:36px;height:36px}}
/* Homepage latest news flow */
.news-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.news-grid .news-card h2{font-size:19px}.news-grid .news-card p{display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:3}.list-news small{display:inline-flex;width:fit-content;margin-bottom:7px;padding:4px 7px;background:#eaf7ee;color:#1f7a44;font-size:11px;font-weight:900}@media(max-width:900px){.news-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){.news-grid{grid-template-columns:1fr}.news-grid .news-card h2{font-size:21px}}
