
.srn-related-news {
    --srn-accent: #d71920;
    --srn-accent-soft: #d71920;
    --srn-text: #111827;
    --srn-muted: #6b7280;
    --srn-border: rgba(15, 23, 42, .08);
    --srn-surface: #ffffff;
    --srn-surface-soft: #fbfbfd;
    box-sizing: border-box;
    position: relative;
    margin: 1.2em 0;
    padding: 16px 16px 3px;
    border: 1px solid var(--srn-border);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--srn-surface) 0%, var(--srn-surface-soft) 100%);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06), 0 3px 10px rgba(15, 23, 42, .04);
    overflow: hidden;
}

.srn-related-news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c62828 0%, #e53935 45%, #ff8a80 100%);
}

.srn-related-news *,
.srn-related-news *::before,
.srn-related-news *::after {
    box-sizing: border-box;
}

.srn-heading {
    position: relative;
    margin: 0 0 10px;
    padding: 0;
    font-size: 1.5em;
    text-align: center;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.2;
    color: var(--srn-text);
}

.srn-heading::after {
    display: none;
    content: none;
}

.srn-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.srn-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 0;
    margin: 0;
    padding: 10px 16px 5px;
    border: 0;
    border-right: 1px solid var(--srn-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: none;
}

.srn-item:nth-child(3n) {
    border-right: 0;
}

.srn-item:hover,
.srn-item:focus-within {
    transform: none;
    background: transparent;
    box-shadow: none;
}

.srn-link {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
    overflow-wrap: anywhere;
    font-weight: 700;
    font-size: 1.08em;
    line-height: 1.35;
    text-decoration: none;
    color: var(--srn-accent);
    transition: color .15s ease;
}



.srn-link:hover,
.srn-link:focus,
.srn-link:focus-visible {
    color: #111111;
}

.srn-link:focus-visible {
    outline: 2px solid rgba(215, 25, 32, .22);
    outline-offset: 2px;
    border-radius: 4px;
}

.srn-date {
    display: block;
    margin-top: 3px;
    font-size: .8em;
    color: var(--srn-muted);
}

.srn-thumb {
    flex: 0 0 92px;
    width: 92px;
    height: 68px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .08);
}

.srn-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.srn-copy {
    min-width: 0;
    flex: 0 1 auto;
}

.srn-layout-compact .srn-item::before {
    content: "→";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    background: var(--srn-accent-soft);
}

.srn-layout-cards .srn-item {
    align-items: flex-start;
    padding: 10px 14px 5px;
}

@media (max-width: 700px) {
    .srn-related-news {
        padding: 14px 12px 4px;
        border-radius: 14px;
    }

    .srn-heading {
        margin-bottom: 8px;
        font-size: 1.32em;
    }

    .srn-list {
        grid-template-columns: 1fr;
    }

    .srn-item,
    .srn-item:nth-child(3n) {
        gap: 9px;
        padding: 8px 2px 6px;
        border-right: 0;
        border-bottom: 1px solid var(--srn-border);
    }

    .srn-item:last-child {
        border-bottom: 0;
    }

    .srn-copy {
        max-width: calc(100% - 29px);
    }

    .srn-link {
        font-size: 1.04em;
        line-height: 1.32;
    }

    .srn-thumb {
        flex-basis: 78px;
        width: 78px;
        height: 58px;
    }

    .srn-layout-compact .srn-item::before {
        flex-basis: 20px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}
