/* =========================================================
   SYMBIONT — NEWS ARCHIVE CLEAN FEED
   /news/ = all posts by date
========================================================= */

.symb-news-page,
.symb-news-page * {
    box-sizing: border-box;
}

.symb-news-page {
    --news-text: #101824;
    --news-muted: rgba(16,24,36,.66);
    --news-line: rgba(7,254,221,.18);
    --news-cyan: #07fedd;
    --news-blue: #70e7ff;
    --news-green: #18e6bd;
    --news-dark: #07131a;
    --news-dark-2: #202126;

    position: relative;
    left: 50%;
    transform: translateX(-50%);

    width: min(1180px, calc(100vw - 64px));
    max-width: min(1180px, calc(100vw - 64px));

    padding: 18px 0 110px;

    color: var(--news-text);
}

.symb-news-page a {
    text-decoration: none !important;
}

/* Hide default page title */
body:has(.symb-news-page) .entry-header,
body:has(.symb-news-page) .entry-title,
body:has(.symb-news-page) h1.entry-title,
body:has(.symb-news-page) .page-title,
body:has(.symb-news-page) .single-page-title,
body:has(.symb-news-page) .post-title {
    display: none !important;
}

/* Remove theme width/padding restrictions */
body:has(.symb-news-page) #primary,
body:has(.symb-news-page) .site-content,
body:has(.symb-news-page) .content-area,
body:has(.symb-news-page) .primary-content,
body:has(.symb-news-page) article.page,
body:has(.symb-news-page) .entry-content,
body:has(.symb-news-page) .wp-block-post-content {
    width: 100% !important;
    max-width: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Hidden semantic h1 */
.symb-news-hidden-title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.symb-news-page h1,
.symb-news-page h2,
.symb-news-page h3 {
    margin: 0;
    font-family: "Tektur", system-ui, sans-serif;
    color: var(--news-text);
}

/* =========================================================
   GRID
========================================================= */

.symb-news-grid-section {
    margin-top: 0 !important;
}

.symb-news-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: dense !important;
    gap: 18px !important;
    align-items: stretch !important;
}

/* =========================================================
   CARD BASE
========================================================= */

.symb-news-card {
    display: flex !important;
    flex-direction: column !important;

    height: 100% !important;
    overflow: hidden !important;

    border-radius: 14px !important;
    border: 1px solid rgba(7,254,221,.14) !important;

    background:
        radial-gradient(circle at 8% 0%, rgba(7,254,221,.055), transparent 34%),
        rgba(255,255,255,.82) !important;

    box-shadow:
        0 16px 42px rgba(0,70,100,.055),
        inset 0 1px 0 rgba(255,255,255,.72) !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.symb-news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(7,254,221,.28) !important;
    box-shadow:
        0 22px 58px rgba(0,70,100,.10),
        inset 0 1px 0 rgba(255,255,255,.76) !important;
}

.symb-news-card-cover {
    position: relative;
    display: block;
    overflow: hidden;

    flex: 0 0 auto;

    width: 100%;
    aspect-ratio: 16 / 9.2;

    border-radius: 13px 13px 0 0;
    background: #07131a;
}

.symb-news-card-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(180deg, rgba(7,19,26,.02), rgba(7,19,26,.20));
    pointer-events: none;
}

.symb-news-card-cover img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    transform: scale(1.01);

    transition:
        transform .35s ease,
        filter .35s ease;
}

.symb-news-card:hover .symb-news-card-cover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.04);
}

/* =========================================================
   HUD CORNERS
   separated neon corner marks
========================================================= */

.symb-news-hud-corner {
    position: absolute;
    z-index: 3;

    width: 42px;
    height: 42px;

    pointer-events: none;
}

.symb-news-hud-corner::before,
.symb-news-hud-corner::after {
    content: "";
    position: absolute;

    background: var(--news-cyan);

    box-shadow:
        0 0 7px rgba(7,254,221,.72),
        0 0 16px rgba(7,254,221,.28);
}

.symb-news-hud-corner::before {
    width: 26px;
    height: 2px;
}

.symb-news-hud-corner::after {
    width: 2px;
    height: 26px;
}

.symb-news-hud-corner.is-tl {
    top: 12px;
    left: 12px;
}

.symb-news-hud-corner.is-tr {
    top: 12px;
    right: 12px;
}

.symb-news-hud-corner.is-bl {
    bottom: 12px;
    left: 12px;
}

.symb-news-hud-corner.is-br {
    bottom: 12px;
    right: 12px;
}

.symb-news-hud-corner.is-tl::before {
    top: 0;
    left: 12px;
}

.symb-news-hud-corner.is-tl::after {
    top: 12px;
    left: 0;
}

.symb-news-hud-corner.is-tr::before {
    top: 0;
    right: 12px;
}

.symb-news-hud-corner.is-tr::after {
    top: 12px;
    right: 0;
}

.symb-news-hud-corner.is-bl::before {
    bottom: 0;
    left: 12px;
}

.symb-news-hud-corner.is-bl::after {
    bottom: 12px;
    left: 0;
}

.symb-news-hud-corner.is-br::before {
    bottom: 0;
    right: 12px;
}

.symb-news-hud-corner.is-br::after {
    bottom: 12px;
    right: 0;
}

/* =========================================================
   CARD BODY
========================================================= */

.symb-news-card-body {
    display: flex;
    flex-direction: column;

    flex: 1 1 auto;

    padding: 15px 16px 17px;
}

.symb-news-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;

    margin-bottom: 10px;
}

.symb-news-card-meta a,
.symb-news-card-meta span {
    display: inline-flex;
    align-items: center;

    min-height: 22px;
    padding: 4px 8px;

    border-radius: 999px;
    border: 1px solid rgba(7,254,221,.14);

    background: rgba(7,254,221,.04);

    color: rgba(16,24,36,.56) !important;

    font-family: "Ruda", system-ui, sans-serif;
    font-size: 10.5px;
    line-height: 1;
    font-weight: 700;
}

.symb-news-card h3 {
    margin: 0;

    font-family: "Tektur", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.004em;
}

.symb-news-card h3 a {
    color: var(--news-text) !important;
}

.symb-news-card p {
    margin: 9px 0 0;

    color: var(--news-muted);

    font-family: "Ruda", system-ui, sans-serif;
    font-size: 11.5px;
    line-height: 1.42;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/* =========================================================
   EDITORIAL LAYOUT
========================================================= */

@media (min-width: 981px) {
    .symb-news-card-wide-left,
    .symb-news-card-wide-right {
        grid-column: span 2 !important;
    }

    .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-card-wide-right .symb-news-card-cover {
        aspect-ratio: 16 / 7.6 !important;
    }

    .symb-news-card-wide-left h3,
    .symb-news-card-wide-right h3 {
        font-size: 18px !important;
        line-height: 1.12 !important;
    }

    .symb-news-card-wide-left p,
    .symb-news-card-wide-right p {
        -webkit-line-clamp: 2 !important;
    }

    .symb-news-card-vertical-side {
        display: flex !important;
        flex-direction: column !important;
        min-height: 100% !important;
    }

    .symb-news-card-vertical-side .symb-news-card-cover {
        flex: 1 1 auto !important;
        min-height: 320px !important;
        aspect-ratio: auto !important;
    }

    .symb-news-card-vertical-side .symb-news-card-body {
        flex: 0 0 auto !important;
    }

    .symb-news-card-vertical-side h3 {
        font-size: 14px !important;
        line-height: 1.14 !important;
    }

    .symb-news-card-vertical-side p {
        -webkit-line-clamp: 3 !important;
    }
}

/* =========================================================
   PAGINATION
========================================================= */

.symb-news-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;

    margin-top: 34px;
}

.symb-news-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 999px;
    border: 1px solid rgba(7,254,221,.22);

    background: rgba(255,255,255,.64);

    color: #079f88 !important;

    font-family: "Tektur", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 950;
}

.symb-news-pagination a.is-active {
    color: #06110f !important;

    background:
        radial-gradient(circle at 10% 0%, rgba(255,255,255,.56), transparent 34%),
        linear-gradient(135deg, #07fedd, #70e7ff);
}

/* =========================================================
   EMPTY
========================================================= */

.symb-news-empty {
    padding: 42px;

    border-radius: 18px;
    border: 1px solid rgba(7,254,221,.18);

    background: rgba(255,255,255,.76);
}

/* =========================================================
   DARK MODE
========================================================= */

body.digital_newspaper_dark_mode .symb-news-page,
.digital_newspaper_dark_mode .symb-news-page {
    --news-text: rgba(255,255,255,.94);
    --news-muted: rgba(255,255,255,.62);
    --news-line: rgba(7,254,221,.16);
}

body.digital_newspaper_dark_mode .symb-news-card,
.digital_newspaper_dark_mode .symb-news-card {
    border-color: rgba(7,254,221,.15) !important;

    background:
        radial-gradient(circle at 8% 0%, rgba(7,254,221,.06), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.058), rgba(255,255,255,.028)) !important;

    box-shadow:
        0 18px 48px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.06) !important;
}

body.digital_newspaper_dark_mode .symb-news-card h3 a,
.digital_newspaper_dark_mode .symb-news-card h3 a {
    color: rgba(255,255,255,.94) !important;
}

body.digital_newspaper_dark_mode .symb-news-card p,
.digital_newspaper_dark_mode .symb-news-card p {
    color: rgba(255,255,255,.62) !important;
}

body.digital_newspaper_dark_mode .symb-news-card-meta a,
body.digital_newspaper_dark_mode .symb-news-card-meta span,
.digital_newspaper_dark_mode .symb-news-card-meta a,
.digital_newspaper_dark_mode .symb-news-card-meta span {
    color: rgba(255,255,255,.56) !important;
    background: rgba(255,255,255,.04) !important;
    border-color: rgba(7,254,221,.13) !important;
}

body.digital_newspaper_dark_mode .symb-news-pagination a,
.digital_newspaper_dark_mode .symb-news-pagination a {
    background: rgba(255,255,255,.045) !important;
    border-color: rgba(7,254,221,.14) !important;
    color: rgba(7,254,221,.82) !important;
}

body.digital_newspaper_dark_mode .symb-news-pagination a.is-active,
.digital_newspaper_dark_mode .symb-news-pagination a.is-active {
    color: #06110f !important;
    background: linear-gradient(135deg, #07fedd, #70e7ff) !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .symb-news-page {
        width: min(1080px, calc(100vw - 48px));
        max-width: min(1080px, calc(100vw - 48px));
    }

    .symb-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .symb-news-card-wide-left,
    .symb-news-card-wide-right {
        grid-column: span 2 !important;
    }

    .symb-news-card-vertical-side .symb-news-card-cover {
        min-height: auto !important;
        aspect-ratio: 16 / 9.2 !important;
    }
}

@media (max-width: 720px) {
    .symb-news-page {
        width: calc(100vw - 22px);
        max-width: calc(100vw - 22px);

        padding-top: 14px;
        padding-bottom: 80px;
    }

    .symb-news-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .symb-news-card-wide-left,
    .symb-news-card-wide-right {
        grid-column: span 1 !important;
    }

    .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-card-wide-right .symb-news-card-cover,
    .symb-news-card-vertical-side .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
    }

    .symb-news-card-wide-left h3,
    .symb-news-card-wide-right h3,
    .symb-news-card-vertical-side h3,
    .symb-news-card h3 {
        font-size: 15px !important;
    }

    .symb-news-hud-corner {
        width: 34px;
        height: 34px;
    }

    .symb-news-hud-corner::before {
        width: 22px;
    }

    .symb-news-hud-corner::after {
        height: 22px;
    }
}
/* =========================================================
   NEWS ARCHIVE — FINAL GRID PATTERN
   1 wide + 5 standard + 1 wide + 3 standard
========================================================= */

/* Убираем вертикальный режим, если старые классы где-то остались */
.symb-news-page .symb-news-card-vertical-side {
    grid-column: span 1 !important;
}

.symb-news-page .symb-news-card-vertical-side .symb-news-card-cover {
    aspect-ratio: 16 / 9.2 !important;
    min-height: auto !important;
}

/* Основная сетка */
.symb-news-page .symb-news-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: dense !important;
    gap: 18px !important;
    align-items: stretch !important;
}

/* Широкие карточки */
@media (min-width: 981px) {
    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right {
        grid-column: span 2 !important;
    }

    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover {
        aspect-ratio: 16 / 7.6 !important;
    }

    .symb-news-page .symb-news-card-wide-left h3,
    .symb-news-page .symb-news-card-wide-right h3 {
        font-size: 18px !important;
        line-height: 1.12 !important;
    }

    .symb-news-page .symb-news-card-wide-left p,
    .symb-news-page .symb-news-card-wide-right p {
        -webkit-line-clamp: 2 !important;
    }
}

/* Обычные карточки */
.symb-news-page .symb-news-card-standard .symb-news-card-cover {
    aspect-ratio: 16 / 9.2 !important;
}

/* Планшет и мобильная версия: всё становится обычной сеткой */
@media (max-width: 980px) {
    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right {
        grid-column: span 1 !important;
    }

    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-standard .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
    }

    .symb-news-page .symb-news-card-wide-left h3,
    .symb-news-page .symb-news-card-wide-right h3 {
        font-size: 15px !important;
    }

    .symb-news-page .symb-news-card-wide-left p,
    .symb-news-page .symb-news-card-wide-right p {
        -webkit-line-clamp: 3 !important;
    }
}
/* =========================================================
   NEWS ARCHIVE — VERTICAL SIDE CARD FIX
   Removes empty white space near wide cards
========================================================= */

@media (min-width: 981px) {

    /* Вертикальная карточка рядом с широкой */
    .symb-news-page .symb-news-card-vertical-side {
        display: grid !important;
        grid-template-rows: minmax(0, 1fr) auto !important;

        min-height: 100% !important;
        height: 100% !important;
    }

    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover {
        height: 100% !important;
        min-height: 330px !important;

        aspect-ratio: auto !important;
        flex: none !important;
    }

    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .symb-news-page .symb-news-card-vertical-side .symb-news-card-body {
        flex: none !important;
        padding: 14px 15px 16px !important;
    }

    .symb-news-page .symb-news-card-vertical-side .symb-news-card-meta {
        margin-bottom: 8px !important;
    }

    .symb-news-page .symb-news-card-vertical-side h3 {
        font-size: 14px !important;
        line-height: 1.12 !important;
    }

    .symb-news-page .symb-news-card-vertical-side p {
        margin-top: 8px !important;

        font-size: 11px !important;
        line-height: 1.38 !important;

        -webkit-line-clamp: 2 !important;
    }

    /* Чтобы широкая и вертикальная карточки визуально были одной высоты */
    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right,
    .symb-news-page .symb-news-card-vertical-side {
        align-self: stretch !important;
    }
}

/* На планшете и мобильном вертикальная карточка снова становится обычной */
@media (max-width: 980px) {
    .symb-news-page .symb-news-card-vertical-side {
        display: flex !important;
        flex-direction: column !important;
    }

    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover img {
        height: 100% !important;
    }

    .symb-news-page .symb-news-card-vertical-side h3 {
        font-size: 15px !important;
    }

    .symb-news-page .symb-news-card-vertical-side p {
        -webkit-line-clamp: 3 !important;
    }
}
/* =========================================================
   NEWS ARCHIVE — FINAL SYMMETRIC EDITORIAL GRID
   Pattern:
   1 wide-left / 2 vertical-right / 3-5 standard
   6 vertical-left / 7 wide-right / 8-10 standard
========================================================= */

@media (min-width: 981px) {
    .symb-news-page .symb-news-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-auto-flow: row !important;
        gap: 18px !important;
        align-items: stretch !important;
    }

    /* Сброс старой вертикальной логики, если где-то осталась */
    .symb-news-page .symb-news-card-vertical-side {
        grid-column: span 1 !important;
    }

    /* 1 / 11 / 21 — двойная слева */
    .symb-news-page .symb-news-card-wide-left {
        grid-column: 1 / span 2 !important;
    }

    /* 2 / 12 / 22 — вертикальная справа */
    .symb-news-page .symb-news-card-vertical-right {
        grid-column: 3 / span 1 !important;
    }

    /* 6 / 16 / 26 — вертикальная слева */
    .symb-news-page .symb-news-card-vertical-left {
        grid-column: 1 / span 1 !important;
    }

    /* 7 / 17 / 27 — двойная справа */
    .symb-news-page .symb-news-card-wide-right {
        grid-column: 2 / span 2 !important;
    }

    /* Обычные карточки */
    .symb-news-page .symb-news-card-standard {
        grid-column: span 1 !important;
    }

    /* Двойные карточки */
    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover {
        aspect-ratio: 16 / 7.6 !important;
    }

    .symb-news-page .symb-news-card-wide-left h3,
    .symb-news-page .symb-news-card-wide-right h3 {
        font-size: 18px !important;
        line-height: 1.12 !important;
    }

    .symb-news-page .symb-news-card-wide-left p,
    .symb-news-page .symb-news-card-wide-right p {
        -webkit-line-clamp: 2 !important;
    }

    /* Вертикальные карточки */
    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right {
        display: grid !important;
        grid-template-rows: minmax(0, 1fr) auto !important;

        min-height: 100% !important;
        height: 100% !important;
    }

    .symb-news-page .symb-news-card-vertical-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-cover {
        height: 100% !important;
        min-height: 330px !important;

        aspect-ratio: auto !important;
        flex: none !important;
    }

    .symb-news-page .symb-news-card-vertical-left .symb-news-card-cover img,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-cover img {
        height: 100% !important;
        object-fit: cover !important;
    }

    .symb-news-page .symb-news-card-vertical-left .symb-news-card-body,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-body {
        flex: none !important;
        padding: 14px 15px 16px !important;
    }

    .symb-news-page .symb-news-card-vertical-left .symb-news-card-meta,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-meta {
        margin-bottom: 8px !important;
    }

    .symb-news-page .symb-news-card-vertical-left h3,
    .symb-news-page .symb-news-card-vertical-right h3 {
        font-size: 14px !important;
        line-height: 1.12 !important;
    }

    .symb-news-page .symb-news-card-vertical-left p,
    .symb-news-page .symb-news-card-vertical-right p {
        margin-top: 8px !important;
        font-size: 11px !important;
        line-height: 1.38 !important;
        -webkit-line-clamp: 2 !important;
    }

    /* Обычные горизонтальные карточки */
    .symb-news-page .symb-news-card-standard .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
    }
}

/* Планшет и мобильная версия: всё становится обычной сеткой */
@media (max-width: 980px) {
    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right,
    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side,
    .symb-news-page .symb-news-card-standard {
        grid-column: span 1 !important;
    }

    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover,
    .symb-news-page .symb-news-card-standard .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side {
        display: flex !important;
        flex-direction: column !important;
    }

    .symb-news-page .symb-news-card-wide-left h3,
    .symb-news-page .symb-news-card-wide-right h3,
    .symb-news-page .symb-news-card-vertical-left h3,
    .symb-news-page .symb-news-card-vertical-right h3 {
        font-size: 15px !important;
    }

    .symb-news-page .symb-news-card-wide-left p,
    .symb-news-page .symb-news-card-wide-right p,
    .symb-news-page .symb-news-card-vertical-left p,
    .symb-news-page .symb-news-card-vertical-right p {
        -webkit-line-clamp: 3 !important;
    }
}
/* =========================================================
   NEWS ARCHIVE — RESPONSIVE FINAL
   desktop pattern / tablet 2-col / mobile 1-col
========================================================= */

/* ---------------------------------------------------------
   DESKTOP: фиксируем идеальную текущую сетку
--------------------------------------------------------- */

@media (min-width: 1181px) {
    .symb-news-page {
        width: min(1180px, calc(100vw - 64px)) !important;
        max-width: min(1180px, calc(100vw - 64px)) !important;
    }

    .symb-news-page .symb-news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

/* ---------------------------------------------------------
   TABLET LARGE: 2 колонки, акцентные карточки на всю ширину
--------------------------------------------------------- */

@media (min-width: 821px) and (max-width: 1180px) {
    .symb-news-page {
        width: min(960px, calc(100vw - 42px)) !important;
        max-width: min(960px, calc(100vw - 42px)) !important;
        padding-top: 16px !important;
        padding-bottom: 90px !important;
    }

    .symb-news-page .symb-news-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
        grid-auto-flow: row !important;
    }

    /* На планшете wide-карточки становятся большими на всю ширину */
    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right {
        grid-column: 1 / -1 !important;
    }

    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover {
        aspect-ratio: 16 / 7.8 !important;
        min-height: auto !important;
        height: auto !important;
    }

    /* Вертикальные карточки на планшете становятся обычными */
    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side,
    .symb-news-page .symb-news-card-standard {
        grid-column: span 1 !important;
    }

    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side {
        display: flex !important;
        flex-direction: column !important;
    }

    .symb-news-page .symb-news-card-vertical-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover,
    .symb-news-page .symb-news-card-standard .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .symb-news-page .symb-news-card-wide-left h3,
    .symb-news-page .symb-news-card-wide-right h3 {
        font-size: 18px !important;
        line-height: 1.12 !important;
    }

    .symb-news-page .symb-news-card h3 {
        font-size: 15px !important;
    }

    .symb-news-page .symb-news-card p {
        -webkit-line-clamp: 3 !important;
    }
}

/* ---------------------------------------------------------
   TABLET SMALL: 2 колонки, все карточки одинаковые
--------------------------------------------------------- */

@media (min-width: 641px) and (max-width: 820px) {
    .symb-news-page {
        width: calc(100vw - 32px) !important;
        max-width: calc(100vw - 32px) !important;
        padding-top: 14px !important;
        padding-bottom: 80px !important;
    }

    .symb-news-page .symb-news-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        grid-auto-flow: row !important;
    }

    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right,
    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side,
    .symb-news-page .symb-news-card-standard {
        grid-column: span 1 !important;
    }

    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover,
    .symb-news-page .symb-news-card-standard .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .symb-news-page .symb-news-card {
        border-radius: 13px !important;
    }

    .symb-news-page .symb-news-card-cover {
        border-radius: 12px 12px 0 0 !important;
    }

    .symb-news-page .symb-news-card-body {
        padding: 14px 14px 16px !important;
    }

    .symb-news-page .symb-news-card h3 {
        font-size: 14px !important;
        line-height: 1.15 !important;
    }

    .symb-news-page .symb-news-card p {
        font-size: 11px !important;
        -webkit-line-clamp: 3 !important;
    }
}

/* ---------------------------------------------------------
   MOBILE: 1 колонка, чистая лента
--------------------------------------------------------- */

@media (max-width: 640px) {
    .symb-news-page {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        padding-top: 12px !important;
        padding-bottom: 72px !important;
    }

    .symb-news-page .symb-news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        grid-auto-flow: row !important;
    }

    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right,
    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side,
    .symb-news-page .symb-news-card-standard {
        grid-column: span 1 !important;
    }

    .symb-news-page .symb-news-card-wide-left,
    .symb-news-page .symb-news-card-wide-right,
    .symb-news-page .symb-news-card-vertical-left,
    .symb-news-page .symb-news-card-vertical-right,
    .symb-news-page .symb-news-card-vertical-side {
        display: flex !important;
        flex-direction: column !important;
    }

    .symb-news-page .symb-news-card-wide-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-wide-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-left .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-right .symb-news-card-cover,
    .symb-news-page .symb-news-card-vertical-side .symb-news-card-cover,
    .symb-news-page .symb-news-card-standard .symb-news-card-cover {
        aspect-ratio: 16 / 9.2 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .symb-news-page .symb-news-card {
        border-radius: 14px !important;
    }

    .symb-news-page .symb-news-card-cover {
        border-radius: 13px 13px 0 0 !important;
    }

    .symb-news-page .symb-news-card-body {
        padding: 15px 15px 17px !important;
    }

    .symb-news-page .symb-news-card h3,
    .symb-news-page .symb-news-card-wide-left h3,
    .symb-news-page .symb-news-card-wide-right h3,
    .symb-news-page .symb-news-card-vertical-left h3,
    .symb-news-page .symb-news-card-vertical-right h3 {
        font-size: 16px !important;
        line-height: 1.15 !important;
    }

    .symb-news-page .symb-news-card p {
        font-size: 12px !important;
        line-height: 1.45 !important;
        -webkit-line-clamp: 3 !important;
    }

    .symb-news-page .symb-news-card-meta {
        gap: 6px !important;
        margin-bottom: 10px !important;
    }

    .symb-news-page .symb-news-card-meta a,
    .symb-news-page .symb-news-card-meta span {
        min-height: 22px !important;
        padding: 4px 8px !important;
        font-size: 10px !important;
    }

    /* HUD-уголки чуть компактнее на мобильном */
    .symb-news-page .symb-news-hud-corner {
        width: 34px !important;
        height: 34px !important;
    }

    .symb-news-page .symb-news-hud-corner::before {
        width: 21px !important;
        height: 2px !important;
    }

    .symb-news-page .symb-news-hud-corner::after {
        width: 2px !important;
        height: 21px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-tl {
        top: 10px !important;
        left: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-tr {
        top: 10px !important;
        right: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-bl {
        bottom: 10px !important;
        left: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-br {
        bottom: 10px !important;
        right: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-tl::before {
        left: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-tl::after {
        top: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-tr::before {
        right: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-tr::after {
        top: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-bl::before {
        left: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-bl::after {
        bottom: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-br::before {
        right: 10px !important;
    }

    .symb-news-page .symb-news-hud-corner.is-br::after {
        bottom: 10px !important;
    }
}