/* ═══════════════════════════════════════════════════════════════
   NEWS-STYLES.CSS  |  Sovereign Architect v2.0 (фиолетовый CTA)
   Stitch redesign 2026-05-05
   News listing, sidebar, search, categories, contact widget,
   sidebar tools, news cards (regular + featured + no-img placeholder),
   pagination, responsive.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Локальные токены страницы /news/ ──────────────────────────
   Маппинг: акцент = brand v2.0 (#8083ff/#6568e0), нейтральные —
   токены SA из /css/design-tokens.css. Цвет тени — тёмно-синий
   (брендбук: rgba(15,23,42,…)), не серый.
   ─────────────────────────────────────────────────────────────── */
.news-content,
.breadcrumbs {
    /* Палитра — единое фиолетовое семейство (brandbook v2.0 + Stitch-градации) */
    --acc-50:  #f4f1ff;       /* очень бледный лавандовый */
    --acc-100: #e8e1ff;       /* бледный лавандовый */
    --acc-200: #d3c4ff;       /* средний бледный */
    --acc-300: #b29bff;       /* средний */
    --acc-400: #8a6cf0;       /* приглушённый brand */
    --acc-500: #8083ff;       /* brand v2.0 — primary */
    --acc-600: #6568e0;       /* brandD v2.0 — hover */
    --acc-700: #4a4dc7;       /* deep brand */
    --acc-800: #3a1d80;
    --acc-900: #2a1660;
    --brand-tint: rgba(128, 131, 255, 0.06);  /* фон категория-чипа (брендбук v2.0) */

    --ink:    #131b2e;
    --ink-2:  #434652;
    --ink-3:  #747783;
    --line:   rgba(195, 198, 211, 0.4);
    --line-2: rgba(195, 198, 211, 0.25);
    --bg:     #faf8ff;
    --bg-2:   #f2f3ff;
    --white:  #ffffff;
    --ok:     #16a34a;

    --shadow-card:    0 4px 20px rgba(15, 23, 42, 0.04);
    --shadow-lifted:  0 16px 36px rgba(15, 23, 42, 0.10);
    --shadow-cta:     0 6px 16px rgba(128, 131, 255, 0.25);
    --shadow-cta-h:   0 8px 22px rgba(128, 131, 255, 0.35);
    --shadow-featured: 0 12px 32px rgba(128, 131, 255, 0.18);
}

/* ─── Breadcrumbs ─────────────────────────────────────────────── */
.breadcrumbs {
    background: var(--bg-2);
    padding: 14px 0;
    font-size: 13px;
    border-bottom: none;
    margin-top: 0;
}
.breadcrumbs .container {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--acc-600);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: color 0.2s;
}
.breadcrumbs a:hover {
    color: var(--acc-700);
    text-decoration: underline;
}
.breadcrumbs span {
    margin: 0;
    color: #c3c6d7;
    font-size: 13px;
}
.breadcrumbs .container > span:last-child,
.breadcrumbs .container > span:not(.sep):last-of-type {
    color: var(--ink-3);
    font-weight: 500;
}

/* ─── Main layout ─────────────────────────────────────────────── */
.news-content {
    padding: 40px 0 64px;
    background: var(--bg);
}
.news-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ─── News header (h1 + meta-line) ────────────────────────────── */
.news-header {
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.news-header h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}
.news-header .meta-line {
    color: var(--ink-3);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.news-header .meta-line strong {
    color: var(--acc-600);
    font-weight: 700;
}
.category-description {
    color: var(--ink-3);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.search-results {
    color: var(--acc-600);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin: 0;
}

/* ─── News toolbar (фильтры + сортировка) ─────────────────────── */
.news-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.news-toolbar .left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--ink-3);
    flex: 1;
    min-width: 0;
}
.news-toolbar .chip-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.news-toolbar .chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 50px;
    background: var(--bg-2);
    color: var(--ink-2);
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
}
.news-toolbar .chip:hover {
    background: var(--acc-50);
    color: var(--acc-600);
    text-decoration: none;
}
.news-toolbar .chip.active {
    background: var(--acc-500);
    color: #fff;
}
.news-toolbar .chip .material-symbols-outlined {
    font-size: 14px;
}
.news-toolbar .right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink-3);
}
.news-toolbar .sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}
.news-toolbar select {
    padding: 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

/* ─── Sidebar ─────────────────────────────────────────────────── */
.news-sidebar {
    position: sticky;
    top: 24px;
}
.sidebar-widget {
    background: var(--white);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}
.sidebar-widget h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: none;
    position: relative;
}
.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--acc-500), var(--acc-200));
    border-radius: 2px;
}

/* ─── Search ──────────────────────────────────────────────────── */
.search-form {
    display: flex;
    align-items: stretch;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.search-form:focus-within {
    border-color: var(--acc-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(128, 131, 255, 0.12);
}
.search-form input {
    flex: 1;
    padding: 11px 18px;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
}
.search-form input::placeholder {
    color: var(--ink-3);
}
.search-form button {
    background: var(--acc-500);
    color: #fff;
    border: 0;
    padding: 0 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.search-form button:hover {
    background: var(--acc-600);
}
.search-form button .material-symbols-outlined {
    font-size: 18px;
}

/* ─── Categories list ─────────────────────────────────────────── */
.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 480px;
    overflow-y: auto;
}
.categories-list::-webkit-scrollbar {
    width: 4px;
}
.categories-list::-webkit-scrollbar-track {
    background: transparent;
}
.categories-list::-webkit-scrollbar-thumb {
    background: rgba(195, 198, 214, 0.5);
    border-radius: 4px;
}
.categories-list li {
    margin-bottom: 2px;
}
.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--ink-2);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    line-height: 1.4;
    transition: background 0.15s, color 0.15s;
}
.categories-list a:hover {
    background: var(--acc-50);
    color: var(--acc-600);
    text-decoration: none;
}
.categories-list a.active {
    background: var(--acc-500);
    color: #fff;
    font-weight: 600;
}
.categories-list a.active .count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.categories-list .count {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 50px;
    background: var(--bg-2);
    color: var(--ink-3);
    font-weight: 600;
}

/* ─── Contact widget (тёмный фиолетовый градиент) ────────────── */
.contact-widget {
    background: linear-gradient(135deg, #0B1220 0%, #2A2D6F 50%, #4a4dc7 100%) !important;
    color: #e6dcff !important;
    border-color: transparent !important;
    position: relative;
    overflow: hidden;
}
.contact-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--acc-400), var(--acc-200));
}
.contact-widget h3 {
    color: #fff !important;
    border-color: transparent;
}
.contact-widget h3::after {
    background: linear-gradient(90deg, var(--acc-300), rgba(255, 255, 255, 0.2));
}
.contact-widget p {
    color: rgba(230, 220, 255, 0.85);
    margin: 0 0 18px;
    font-size: 13.5px;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #e6dcff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.contact-phone:hover,
.contact-email:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    text-decoration: none;
}
.contact-phone .material-symbols-outlined,
.contact-email .material-symbols-outlined {
    font-size: 18px;
    color: var(--acc-200);
}

/* ─── Sidebar CTA button ─────────────────────────────────────── */
.contact-widget .btn,
.contact-widget .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 10px;
    padding: 12px 22px;
    background: var(--acc-500) !important;
    border: 0 !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(138, 108, 240, 0.35);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.contact-widget .btn:hover,
.contact-widget .btn-primary:hover {
    background: var(--acc-400) !important;
    border: 0 !important;
    box-shadow: 0 0 32px rgba(138, 108, 240, 0.5);
    transform: translateY(-1px);
}

/* ─── Sidebar tools ───────────────────────────────────────────── */
.sidebar-tools {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sidebar-tools-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(230, 220, 255, 0.95);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sidebar-tools-title .material-symbols-outlined {
    font-size: 18px;
    color: var(--acc-200);
}
.sidebar-tools-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sidebar-tool-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #e6dcff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}
.sidebar-tool-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
.sidebar-tool-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(138, 108, 240, 0.3), rgba(74, 77, 199, 0.2));
    font-size: 18px;
    color: var(--acc-200);
}
.sidebar-tool-arrow {
    margin-left: auto;
    opacity: 0.5;
    font-size: 0.85rem;
    color: var(--acc-200);
    transition: opacity 0.2s;
}
.sidebar-tool-link:hover .sidebar-tool-arrow {
    opacity: 1;
}

/* ─── News main ───────────────────────────────────────────────── */
.news-main {
    min-width: 0;
}

/* ─── News grid ───────────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

/* ─── News card ───────────────────────────────────────────────── */
.news-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lifted);
    border-color: var(--acc-200);
}

/* Featured (во всю ширину, 2 колонки картинка+текст) */
.news-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border: 2px solid var(--acc-500);
    box-shadow: var(--shadow-featured);
}
.news-card.featured .news-image,
.news-card.featured .news-card__image {
    height: auto;
    min-height: 340px;
}
.news-card.featured .news-card .news-content,
.news-card.featured > .news-content,
.news-card.featured .news-card__body {
    padding: 36px;
    gap: 14px;
}
.news-card.featured .news-title a {
    font-size: 1.7rem;
    -webkit-line-clamp: 3;
}
.news-card.featured .news-excerpt {
    font-size: 1rem;
    -webkit-line-clamp: 4;
}

/* Featured badge (pill, фиолетовый) */
.featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--acc-500);
    color: #fff;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 14px rgba(128, 131, 255, 0.4);
}
.featured-badge .material-symbols-outlined {
    font-size: 14px;
}

/* Картинка карточки */
.news-image,
.news-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--acc-50) 0%, var(--acc-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-image img,
.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card:hover .news-image img,
.news-card:hover .news-card__image img {
    transform: scale(1.06);
}

/* Placeholder для карточек без featured_image */
.news-image.no-img,
.news-card__image.no-img {
    position: relative;
}
.news-image.no-img::after,
.news-card__image.no-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(138, 108, 240, 0.18) 0, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 77, 199, 0.15) 0, transparent 45%),
        repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(128, 131, 255, 0.04) 10px, rgba(128, 131, 255, 0.04) 11px);
}
.news-image.no-img .ph-mark,
.news-card__image.no-img .ph-mark {
    position: relative;
    z-index: 1;
    font-family: 'Manrope', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: rgba(128, 131, 255, 0.32);
    letter-spacing: -0.04em;
    text-align: center;
    line-height: 1;
}
.news-card.featured .news-image.no-img .ph-mark,
.news-card.featured .news-card__image.no-img .ph-mark {
    font-size: 4.5rem;
}

/* Тело карточки */
.news-card .news-content,
.news-card__body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-category {
    margin-bottom: 0;
}
/* Категория-чип v2.0 (брендбук): тонкая фиолетовая обводка + полупрозрачный фон */
.news-category a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--brand-tint);
    color: var(--acc-500);
    border: 1px solid rgba(128, 131, 255, 0.25);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.news-category a:hover {
    background: var(--acc-500);
    color: #fff;
    border-color: var(--acc-500);
    text-decoration: none;
}

.news-title {
    margin: 0;
    line-height: 1.35;
}
.news-title a {
    color: var(--ink);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.news-title a:hover {
    color: var(--acc-600);
}

.news-excerpt {
    color: var(--ink-2);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid var(--line-2);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--ink-3);
}
.news-date,
.news-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.news-meta .material-symbols-outlined {
    font-size: 15px;
    color: var(--acc-400);
}

/* ─── No news ─────────────────────────────────────────────────── */
.no-news {
    text-align: center;
    padding: 64px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}
.no-news h3 {
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 800;
}
.no-news p {
    color: var(--ink-3);
    font-family: 'Inter', sans-serif;
    margin-bottom: 24px;
}
.no-news .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 28px;
    background: var(--acc-500);
    border: 0;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-cta);
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.no-news .btn-primary:hover {
    background: var(--acc-600);
    box-shadow: var(--shadow-cta-h);
    transform: translateY(-1px);
}

/* ─── Pagination ──────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    background: var(--white);
    color: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}
.pagination-btn:hover {
    background: var(--acc-50);
    color: var(--acc-600);
    border-color: var(--acc-200);
    text-decoration: none;
}
.pagination-btn.active {
    background: var(--acc-500);
    color: #fff;
    border-color: var(--acc-500);
    box-shadow: 0 4px 14px rgba(128, 131, 255, 0.3);
}
.pagination-btn.dots {
    pointer-events: none;
    background: transparent;
    border: 0;
    color: var(--ink-3);
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }
    .news-card.featured {
        grid-template-columns: 1fr;
    }
    .news-card.featured .news-image,
    .news-card.featured .news-card__image {
        min-height: 240px;
    }
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .news-sidebar {
        order: -1;
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .news-header h1 {
        font-size: 1.85rem;
    }
    .pagination {
        gap: 6px;
    }
    .pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
    }
    .categories-list {
        max-height: 200px;
    }
    .news-card.featured .news-card .news-content,
    .news-card.featured > .news-content,
    .news-card.featured .news-card__body {
        padding: 24px;
    }
    .news-card.featured .news-title a {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .news-content {
        padding: 20px 0 40px;
    }
    .breadcrumbs {
        padding: 10px 0;
        font-size: 0.8rem;
    }
    .news-header h1 {
        font-size: 1.6rem;
    }
    .sidebar-widget {
        padding: 16px;
    }
    .news-grid {
        gap: 14px;
    }
    .news-card .news-content,
    .news-card__body {
        padding: 18px;
    }
    .news-title a {
        font-size: 1rem;
    }
}
