.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 {
    width: 100%;
    padding: clamp(48px, 7vw, 88px) 20px;
    color: #0f172a;
    background: #f8fafc;
}

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

.snh-network__header {
    max-width: 760px;
    margin: 0 auto clamp(28px, 5vw, 48px);
    text-align: center;
}

.snh-network__header h2 {
    margin: 0 0 12px;
    color: inherit;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -.035em;
}

.snh-network__header p {
    margin: 0;
    color: #64748b;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.7;
}

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

.snh-network-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
}

.snh-network-card__image {
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.snh-network-card__content {
    display: flex;
    height: 100%;
    padding: 23px;
    flex-direction: column;
}

.snh-network-card__content h3 {
    margin: 0 0 10px;
    color: inherit;
    font-size: 21px;
    line-height: 1.25;
}

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

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

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

.snh-network-card__button {
    display: inline-flex;
    margin-top: auto;
    padding-top: 18px;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 750;
    text-decoration: none;
}

.snh-network-card__button:hover {
    text-decoration: underline;
}
