.snh-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
}

.snh-article {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .07);
}

.snh-article__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.snh-article__content {
    padding: 22px;
}

.snh-article__title {
    margin: 0 0 12px;
    color: inherit;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.2;
}

.snh-article__title-link {
    color: inherit;
    text-decoration: none;
}

.snh-article__body {
    color: #475569;
    line-height: 1.7;
}

.snh-article__body > :first-child {
    margin-top: 0;
}

.snh-article__body > :last-child {
    margin-bottom: 0;
}

.snh-links {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.snh-link {
    padding: 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}

.snh-link a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.snh-link a:hover {
    text-decoration: underline;
}

.snh-link span {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: .9em;
    line-height: 1.5;
}

.snh-network {
    --snh-network-ink: #101827;
    --snh-network-muted: #64748b;
    --snh-network-accent: #16a34a;
    width: 100%;
    padding: clamp(54px, 7vw, 96px) 18px;
    color: var(--snh-network-ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(34, 197, 94, .11), transparent 34%),
        radial-gradient(circle at 88% 28%, rgba(56, 189, 248, .10), transparent 35%),
        #effaf7;
}

.snh-network__container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.snh-network__header {
    max-width: 820px;
    margin: 0 auto clamp(30px, 5vw, 54px);
    text-align: center;
}

.snh-network__eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #138a3b;
    background: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.snh-network__header h2 {
    margin: 0 0 16px;
    color: inherit;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.06;
    letter-spacing: -.045em;
    text-wrap: balance;
}

.snh-network__header p {
    margin: 0;
    color: var(--snh-network-muted);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.7;
}

.snh-network__list {
    display: grid;
    gap: clamp(24px, 4vw, 42px);
}

.snh-network-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid rgba(34, 197, 94, .26);
    border-radius: clamp(24px, 3vw, 36px);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .09);
}

.snh-network-card__source {
    margin-bottom: 10px;
    color: #15803d;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.snh-network-card__title {
    margin: 0 0 clamp(20px, 3vw, 34px);
    color: inherit;
    font-size: clamp(25px, 3.3vw, 40px);
    line-height: 1.12;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.snh-network-card__flow {
    display: flow-root;
}

.snh-network-card__image {
    float: left;
    display: block;
    width: clamp(190px, 25vw, 300px);
    margin: 4px clamp(24px, 3vw, 40px) 20px 0;
    overflow: hidden;
    border-radius: 20px;
    background: #e2e8f0;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .12);
}

.snh-network-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .35s ease;
}

.snh-network-card__image:hover img {
    transform: scale(1.025);
}

.snh-network-card__body {
    color: #18202d;
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.68;
}

.snh-network-card__body > :first-child {
    margin-top: 0;
}

.snh-network-card__body > :last-child {
    margin-bottom: 0;
}

.snh-network-card__body p,
.snh-network-card__body ul,
.snh-network-card__body ol,
.snh-network-card__body blockquote {
    margin: 0 0 1.25em;
}

.snh-network-card__body h2,
.snh-network-card__body h3,
.snh-network-card__body h4 {
    margin: 1.75em 0 .65em;
    color: inherit;
    line-height: 1.2;
}

.snh-network-card__body h2 { font-size: 1.55em; }
.snh-network-card__body h3 { font-size: 1.28em; }
.snh-network-card__body h4 { font-size: 1.1em; }

.snh-network-card__body a,
.snh-network-card__related a {
    color: #1264bd;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.snh-network-card__related {
    display: flex;
    clear: both;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, .1);
    flex-wrap: wrap;
    gap: 10px 20px;
}

.snh-network-card__button {
    display: inline-flex;
    clear: both;
    min-height: 50px;
    margin-top: 26px;
    padding: 13px 22px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff !important;
    background: linear-gradient(135deg, #25d32f, #0ea52a);
    box-shadow: 0 12px 28px rgba(22, 163, 74, .24);
    font-weight: 850;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.snh-network-card__button span {
    display: inline-grid;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    place-items: center;
    color: #118433;
    background: #fff;
}

.snh-network-card__button:hover,
.snh-network-card__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(22, 163, 74, .3);
}

@media (max-width: 720px) {
    .snh-network {
        padding-inline: 12px;
    }

    .snh-network-card {
        padding: 20px;
        border-radius: 24px;
    }

    .snh-network-card__image {
        float: none;
        width: 100%;
        margin: 0 0 22px;
        border-radius: 18px;
    }

    .snh-network-card__image img {
        aspect-ratio: 16 / 10;
    }

    .snh-network-card__body {
        font-size: 16px;
        line-height: 1.68;
    }

    .snh-network-card__related {
        display: grid;
        gap: 12px;
    }

    .snh-network-card__button {
        width: 100%;
    }
}
