*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --green: #129E7B;
    --green-h: #1DAC86;
    --green-50: #EDFCF6;
    --green2: #76BE57;
    --bg: #FFFFFF;
    --fg1: #111111;
    --fg2: #6B7280;
    --border: #E8E8E6;
    --max-w: 1400px;
}

.news-hero-wrap {
    padding: 36px 80px 64px;
    background: linear-gradient(180deg, #F2FBF7 0%, #ECFAF4 68%, #EDFCF6 100%);
    position: relative;
    overflow: hidden;
}

.news-hero-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 900px 500px at 18% 100%, rgba(18, 158, 123, .14) 0%, transparent 70%),
        radial-gradient(ellipse 700px 400px at 82% 90%, rgba(118, 190, 87, .12) 0%, transparent 72%);
    z-index: 0;
}

.news-hero {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 80px 0 20px;
}

.news-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -1.8px;
    line-height: 1.08;
    color: var(--fg1);
    max-width: 820px;
    margin: 0;
}

.news-title .m {
    color: var(--green);
    display: block;
    margin-top: 4px;
}

.news-sub {
    font-size: 18px;
    color: var(--fg2);
    line-height: 1.75;
    margin: 24px 0 0;
    max-width: 560px;
}

.news-section {
    padding: 48px 80px 120px;
    background: var(--bg);
}

.news-section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-row-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-row {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 120px;
    align-items: center;
    padding: 96px 0;
    border-bottom: .5px solid var(--border);
    transition: border-color 200ms;
}

.news-row-link:hover .news-row {
    border-bottom-color: rgba(18, 158, 123, .3);
}

.news-row-link:last-child .news-row {
    border-bottom: none;
}

.news-row-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    min-width: 0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.news-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.news-date {
    font-size: 14px;
    color: var(--fg2);
    font-weight: 500;
}

.news-headline {
    font-size: 34px;
    font-weight: 700;
    color: var(--fg1);
    line-height: 1.3;
    letter-spacing: -.6px;
}

.news-row-link:hover .news-headline {
    color: var(--green);
}

.news-summary {
    font-size: 17px;
    color: var(--fg2);
    line-height: 1.75;
    max-width: 720px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    margin-top: 8px;
    transition: gap 150ms;
}

.news-row-link:hover .news-read-more {
    gap: 10px;
}

.news-row-img {
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    align-self: center;
    background: linear-gradient(135deg, #EDFCF6 0%, #DBF5E8 100%);
}

.news-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.news-row-link:hover .news-row-img img {
    transform: scale(1.04);
}

.news-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green);
}

.news-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    border: .5px solid var(--border);
    border-radius: 16px;
    color: var(--fg2);
    font-weight: 600;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 56px;
}

.news-page-link,
.news-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: .5px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--fg2);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms, border-color 150ms, color 150ms;
}

.news-page-link:hover,
.news-page-current {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.news-page-link.is-disabled {
    pointer-events: none;
    opacity: .35;
}

@media (min-width: 1025px) and (max-width: 1399px) {
    .news-row {
        grid-template-columns: 1fr 420px;
        gap: 80px;
    }

    .news-row-img {
        height: 280px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .news-hero-wrap {
        padding: 24px 32px 48px;
    }

    .news-hero {
        padding: 24px 0 12px;
    }

    .news-title {
        font-size: 44px;
        letter-spacing: -1.2px;
    }

    .news-section {
        padding: 32px 32px 80px;
    }

    .news-row {
        grid-template-columns: 1fr 300px;
        gap: 40px;
        padding: 56px 0;
    }

    .news-row-img {
        height: 220px;
    }

    .news-headline {
        font-size: 26px;
    }

    .news-summary {
        font-size: 15px;
    }
}

@media (max-width: 1024px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    img,
    svg,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }

    h1,
    h2,
    h3,
    .h1,
    .h2,
    .h3,
    .page-hero .h1,
    .hero-title {
        white-space: normal;
        word-break: keep-all;
    }
}

@media (max-width: 640px) {
    .news-hero-wrap {
        padding: 32px 20px 36px;
    }

    .news-hero {
        padding: 12px 0 8px;
    }

    .news-title {
        font-size: 28px;
        letter-spacing: -.6px;
        line-height: 1.2;
    }

    .news-sub {
        font-size: 14px;
        margin-top: 14px;
        line-height: 1.5;
    }

    .news-section {
        padding: 20px 16px 60px;
    }

    .news-list {
        gap: 14px;
    }

    .news-row-link {
        background: #fff;
        border: .5px solid var(--border);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(15, 42, 27, .05);
    }

    .news-row,
    .news-row-link .news-row {
        display: flex;
        flex-direction: column;
        padding: 0;
        border-bottom: none;
        gap: 0;
    }

    .news-row-img {
        width: 100%;
        height: 220px;
        min-height: auto;
        border-radius: 0;
        order: 0;
    }

    .news-row-left {
        display: grid;
        grid-template-columns: auto auto 1fr;
        grid-template-areas:
            "title title title"
            "meta meta meta"
            "summary summary summary"
            "more more more";
        column-gap: 8px;
        row-gap: 6px;
        align-items: center;
        padding: 16px 16px 18px;
        order: 1;
    }

    .news-meta {
        grid-area: meta;
        gap: 6px;
    }

    .news-row-left .news-headline {
        grid-area: title;
        font-size: 17px;
        line-height: 1.35;
        letter-spacing: -.3px;
        margin-bottom: 2px;
    }

    .news-row-left .news-cat {
        font-size: 11.5px;
    }

    .news-row-left .news-cat::after {
        content: "·";
        color: var(--fg2);
        margin-left: 6px;
        font-weight: 400;
        opacity: .6;
    }

    .news-row-left .news-date {
        font-size: 11.5px;
        margin: 0;
        padding: 0;
    }

    .news-row-left .news-summary {
        grid-area: summary;
        font-size: 13.5px;
        line-height: 1.55;
        margin-top: 8px;
    }

    .news-row-left .news-read-more {
        grid-area: more;
        font-size: 13px;
        margin-top: 6px;
    }

    .news-pagination {
        gap: 6px;
        margin-top: 32px;
    }

    .news-page-link,
    .news-page-current {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }
}
