/* ==========================================================================
   News Single Page
   ========================================================================== */
.news-hero {
    padding: 5rem 0 3.5rem;
    color: var(--wp--preset--color--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 140, 0.95) 0%, rgba(13, 22, 80, 0.98) 100%);
    z-index: 0;
}

.news-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.news-hero__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.news-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--flashgl-radius-sm);
    font-size: var(--wp--preset--font-size--xs);
    font-weight: 600;
}

.news-badge--news {
    background-color: var(--wp--preset--color--accent);
    color: var(--wp--preset--color--white);
}

.news-badge--insight {
    background-color: #6C5CE7;
    color: var(--wp--preset--color--white);
}

.news-badge--press {
    background-color: #00B894;
    color: var(--wp--preset--color--white);
}

.news-badge--featured {
    background-color: #FDCB6E;
    color: var(--wp--preset--color--gray-800);
}

.news-hero__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    opacity: 0.55;
}

.news-hero__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.news-hero__title {
    font-size: var(--wp--preset--font-size--5xl);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--wp--preset--color--white);
}

.news-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: var(--wp--preset--font-size--sm);
    color: rgba(255, 255, 255, 0.85);
}

.news-hero__date,
.news-hero__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.news-hero__date svg,
.news-hero__reading-time svg {
    display: inline;
    flex-shrink: 0;
}

.news-hero__meta a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--flashgl-transition-fast) ease;
}

.news-hero__meta a:hover {
    color: var(--wp--preset--color--white);
}

@media (max-width: 640px) {
    .news-hero {
        padding: 3.5rem 0 2.5rem;
    }
    .news-hero__title {
        font-size: var(--wp--preset--font-size--4xl);
    }
    .news-hero__meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.75rem;
        justify-content: center;
    }
}

.news-hero__updated {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.news-hero__print {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-left: 0.5rem;
}

.news-hero__print:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--flashgl-primary, #1A2B8C), var(--flashgl-accent, #D00020));
    z-index: 9999;
    transition: width 0.1s linear;
}

.news-content {
    padding: 4rem 0;
}

.news-content__layout {
    max-width: 800px;
    margin: 0 auto;
}

.news-content__body {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.news-content__body img,
.news-content__body iframe,
.news-content__body table {
    max-width: 100%;
    height: auto;
}

.news-content__layout--with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.news-content__layout--with-sidebar .news-content__main {
    min-width: 0;
}

.news-content__thumbnail {
    margin-bottom: 2rem;
    border-radius: var(--flashgl-radius-md);
    overflow: hidden;
}

.news-content__thumbnail img {
    width: 100%;
    height: auto;
}

.news-content__body {
    line-height: 1.8;
}

/* ── Table of Contents ─────────────────────────────────────────────── */

.toc {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--wp--preset--color--light, #F5F7FA);
    border-radius: var(--flashgl-radius-md, 8px);
    border-left: 3px solid var(--wp--preset--color--primary, #1A2B8C);
}

.toc__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
    color: var(--wp--preset--color--primary, #1A2B8C);
    padding: 0;
    width: 100%;
}

.toc__chevron {
    margin-left: auto;
    transition: transform 0.2s;
}

.toc__toggle[aria-expanded="true"] .toc__chevron {
    transform: rotate(180deg);
}

.toc__list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.toc__item {
    margin-bottom: 0.25rem;
}

.toc__item--h3 {
    padding-left: 1.25rem;
}

.toc__link {
    display: block;
    padding: 0.2rem 0;
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
    color: var(--wp--preset--color--gray-600, #4A5568);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.15s;
}

.toc__link:hover,
.toc__link.is-active {
    color: var(--wp--preset--color--primary, #1A2B8C);
}

/* ── Inline CTA Banner ────────────────────────────────────────────── */

.news-content__inline-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--flashgl-primary, #1A2B8C) 0%, #0D1545 100%);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 43, 140, 0.15);
}

.news-content__inline-cta-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.news-content__inline-cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
}

.news-content__inline-cta-text strong {
    display: block;
    margin-bottom: 0.15rem;
    font-size: var(--wp--preset--font-size--base, 1rem);
    font-weight: 700;
}

.news-content__inline-cta-text span {
    opacity: 0.75;
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
}

@media (max-width: 640px) {
    .news-hero__inner {
        padding: 0 1rem;
    }
    .news-content {
        padding: 2rem 0;
    }
    .news-content__layout,
    .news-content__layout--with-sidebar {
        max-width: 100%;
    }
    .news-content__main {
        min-width: 0;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .news-content__body img,
    .news-content__body figure,
    .news-content__body table,
    .news-content__body iframe,
    .news-content__body .wp-block-image,
    .news-content__body .wp-block-table,
    .news-content__body .wp-block-media-text,
    .news-content__body [style*="width"] {
        max-width: 100% !important;
        height: auto;
    }
    .news-content__body .wp-block-table {
        display: block;
    }
    .news-content__body pre {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .news-content__inline-cta {
        flex-direction: column;
        text-align: center;
    }
    .news-content__inline-cta-text {
        align-items: center;
    }
}

.news-content__body h2 {
    position: relative;
    margin-top: 2.75rem;
    margin-bottom: 1.5rem;
    padding-left: 1.1rem;
    font-size: var(--wp--preset--font-size--2xl, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--wp--preset--color--primary, #1A2B8C);
}

.news-content__body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 5px;
    border-radius: 2px;
    background: var(--wp--preset--color--gray-100, #E2E8F0);
}

.news-content__body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: var(--wp--preset--font-size--lg, 1.125rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--wp--preset--color--primary, #1A2B8C);
}

.news-content__body p {
    margin-bottom: 1rem;
}

.news-content__body ul,
.news-content__body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.news-content__body ol {
    list-style: decimal;
}

.news-content__body blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--wp--preset--color--primary);
    background-color: var(--wp--preset--color--light);
    font-style: italic;
    border-radius: 0 var(--flashgl-radius-sm) var(--flashgl-radius-sm) 0;
}

.news-content__footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--wp--preset--color--gray-100);
}

.news-content__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--wp--preset--color--gray-100, #EDF2F7);
    margin-bottom: 1.25rem;
    font-size: var(--wp--preset--font-size--sm);
    color: var(--wp--preset--color--gray-500);
}

.news-content__tags-icon,
.entry-content__tags-icon {
    display: inline;
    flex-shrink: 0;
    color: var(--wp--preset--color--gray-400);
}

.news-content__tags a {
    display: inline-block;
    padding: 0.1rem 0.25rem;
    color: var(--wp--preset--color--gray-700, #4A5568);
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
    text-decoration: none;
    transition: color var(--flashgl-transition-fast) ease;
}

.news-content__tags a:hover {
    color: var(--wp--preset--color--primary, #1A2B8C);
}

/* Author Card (below article body) */
.news-content__author-card,
.entry-content__author-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem;
    background: var(--wp--preset--color--light, #F5F7FA);
    border-radius: var(--flashgl-radius-md, 8px);
}

.news-content__author-avatar,
.entry-content__author-avatar {
    border-radius: 50%;
    flex-shrink: 0;
}

.news-content__author-info,
.entry-content__author-info {
    min-width: 0;
}

.news-content__author-name,
.entry-content__author-name {
    font-weight: 700;
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
    color: var(--wp--preset--color--primary, #1A2B8C);
}

.news-content__author-name a,
.entry-content__author-name a {
    color: inherit;
    text-decoration: none;
}

.news-content__author-name a:hover,
.entry-content__author-name a:hover {
    text-decoration: underline;
}

/* Author job title */
.news-content__author-job,
.entry-content__author-job {
    display: block;
    font-size: var(--wp--preset--font-size--xs, 0.75rem);
    color: var(--wp--preset--color--gray-500, #718096);
    font-weight: 500;
    margin-top: 0.1rem;
}

.news-content__author-bio,
.entry-content__author-bio {
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
    color: var(--wp--preset--color--gray-500, #718096);
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* Author social/contact links */
.news-content__author-links,
.entry-content__author-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.news-content__author-link,
.entry-content__author-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wp--preset--color--gray-100, #E8ECF1);
    color: var(--wp--preset--color--gray-500, #718096);
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
}

.news-content__author-link:hover,
.entry-content__author-link:hover {
    background: var(--wp--preset--color--primary, #1A2B8C);
    color: var(--wp--preset--color--white, #FFFFFF);
}

/* News Hero meta icons */
.news-hero__meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
    opacity: 0.9;
}

.news-hero__meta svg {
    vertical-align: -2px;
    margin-right: 4px;
}

.news-hero__reading-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================

/* ── Widget Base ──────────────────────────────────────────────────── */

/* ===== Extracted from base.css: Block 10 — Archive News ===== */
/* ==========================================================================
   News Archive Styles
   ========================================================================== */

/* Featured Section */
.archive-news__featured {
    padding: 4rem 0 2rem;
    background: #fff;
}

.archive-news__section-title {
    font-size: var(--wp--preset--font-size--2xl, 1.5rem);
    color: var(--wp--preset--color--gray-800);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}
.archive-news__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--wp--preset--color--accent, #D00020);
    border-radius: 2px;
}

.archive-news__featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.archive-news__featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.archive-news__featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.archive-news__featured-card-thumbnail {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.archive-news__featured-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.archive-news__featured-card:hover .archive-news__featured-card-thumbnail img {
    transform: scale(1.05);
}
.archive-news__featured-card-thumbnail--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wp--preset--color--gray-100, #E8ECF1);
    color: var(--wp--preset--color--gray-500);
}

.archive-news__featured-card-body {
    padding: 1.25rem;
}

.archive-news__featured-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: var(--wp--preset--font-size--xs);
    color: var(--wp--preset--color--gray-500);
}

.archive-news__featured-card-title {
    font-size: var(--wp--preset--font-size--xl, 1.25rem);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.archive-news__featured-card-title a {
    color: var(--wp--preset--color--gray-800);
    text-decoration: none;
}
.archive-news__featured-card-title a:hover {
    color: var(--wp--preset--color--primary);
}

.archive-news__featured-card-excerpt {
    font-size: var(--wp--preset--font-size--sm);
    color: var(--wp--preset--color--gray-500);
    line-height: 1.6;
}

/* News Grid */
.archive-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.archive-news__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.archive-news__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.archive-news__card-thumbnail {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.archive-news__card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.archive-news__card:hover .archive-news__card-thumbnail img {
    transform: scale(1.05);
}
.archive-news__card-thumbnail--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wp--preset--color--light, #F5F7FA);
    color: var(--wp--preset--color--gray-200);
}

.archive-news__card-body {
    padding: 1.25rem;
}

.archive-news__card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: var(--wp--preset--font-size--xs);
    color: var(--wp--preset--color--gray-500);
}

.archive-news__card-title {
    font-size: var(--wp--preset--font-size--lg, 1.125rem);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.archive-news__card-title a {
    color: var(--wp--preset--color--gray-800);
    text-decoration: none;
}
.archive-news__card-title a:hover {
    color: var(--wp--preset--color--primary);
}

.archive-news__card-excerpt {
    font-size: var(--wp--preset--font-size--sm);
    color: var(--wp--preset--color--gray-500);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.archive-news__card-link {
    font-size: var(--wp--preset--font-size--sm);
    color: var(--wp--preset--color--primary);
    text-decoration: none;
    font-weight: 600;
}
.archive-news__card-link:hover {
    color: var(--wp--preset--color--accent);
}

/* News Badge colors */
.news-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: var(--wp--preset--font-size--xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.news-badge--news {
    background: rgba(26, 43, 140, 0.1);
    color: var(--wp--preset--color--primary, #1A2B8C);
}
.news-badge--insight {
    background: rgba(0, 166, 118, 0.1);
    color: var(--wp--preset--color--success, #00A676);
}
.news-badge--press {
    background: rgba(208, 0, 32, 0.1);
    color: var(--wp--preset--color--accent, #D00020);
}
.news-badge--featured {
    background: rgba(245, 166, 35, 0.15);
    color: var(--wp--preset--color--warning, #F5A623);
}

@media (max-width: 768px) {
    .archive-news__featured-grid,
    .archive-news__grid {
        grid-template-columns: 1fr;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .archive-news__featured-grid,
    .archive-news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Extracted from base.css: Block 21 — News Content Related ===== */
/* Related Articles — news specific */
.news-content__related {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

.news-content__related-title {
    font-size: var(--wp--preset--font-size--lg);
    color: var(--flashgl-primary, #1A2B8C);
    margin-bottom: 1rem;
}

.news-content__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.news-content__related-card {
    text-decoration: none;
    border: 1px solid var(--wp--preset--color--gray-100);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.news-content__related-card:hover {
    box-shadow: 0 4px 12px rgba(26, 43, 140, 0.06);
}

.news-content__related-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: rgba(26, 43, 140, 0.04);
}

.news-content__related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-content__related-card:hover .news-content__related-thumb img {
    transform: scale(1.05);
}

.news-content__related-info {
    padding: 0.75rem 1rem;
}

.news-content__related-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(26, 43, 140, 0.07);
    color: var(--flashgl-primary, #1A2B8C);
    margin-bottom: 0.375rem;
}

.news-content__related-ctitle {
    display: block;
    font-size: var(--wp--preset--font-size--sm);
    font-weight: 600;
    color: var(--wp--preset--color--gray-800);
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.news-content__related-date {
    font-size: 0.6875rem;
    color: var(--wp--preset--color--gray-400);
}

@media (max-width: 768px) {
    .news-content__related-grid {
        grid-template-columns: 1fr;
    }
}

/* More Insights — bottom article list */
.news-content__more {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--gray-100);
}

.news-content__more-title {
    font-size: var(--wp--preset--font-size--lg);
    color: var(--flashgl-primary, #1A2B8C);
    margin-bottom: 1rem;
}

.news-content__more-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.news-content__more-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.news-content__more-item:hover {
    background: rgba(26, 43, 140, 0.03);
}

.news-content__more-item-date {
    font-size: var(--wp--preset--font-size--xs);
    color: var(--wp--preset--color--gray-400);
    white-space: nowrap;
    min-width: 42px;
}

.news-content__more-item-title {
    flex: 1;
    font-size: var(--wp--preset--font-size--sm);
    font-weight: 500;
    color: var(--wp--preset--color--gray-700);
}

.news-content__more-item:hover .news-content__more-item-title {
    color: var(--flashgl-primary, #1A2B8C);
}

.news-content__more-item svg {
    flex-shrink: 0;
    color: var(--wp--preset--color--gray-400);
    transition: transform 0.2s, color 0.2s;
}

.news-content__more-item:hover svg {
    transform: translateX(3px);
    color: var(--flashgl-primary, #1A2B8C);
}

/* ===== News Archive Pagination ===== */
.archive-news .navigation.pagination {
    margin: 3rem 0 1rem;
    text-align: center;
}

.archive-news .navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.archive-news .navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.6rem;
    border: 1px solid var(--wp--preset--color--gray-200, #E2E8F0);
    border-radius: 8px;
    background: #fff;
    color: var(--wp--preset--color--gray-700, #4A5568);
    font-size: var(--wp--preset--font-size--sm, 0.875rem);
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.archive-news .navigation.pagination .page-numbers:hover {
    border-color: var(--wp--preset--color--primary, #1A2B8C);
    color: var(--wp--preset--color--primary, #1A2B8C);
    box-shadow: 0 2px 8px rgba(26, 43, 140, 0.08);
}

.archive-news .navigation.pagination .page-numbers.current {
    background: var(--wp--preset--color--primary, #1A2B8C);
    border-color: var(--wp--preset--color--primary, #1A2B8C);
    color: #fff;
    cursor: default;
}

.archive-news .navigation.pagination .page-numbers.dots {
    border: none;
    background: none;
    color: var(--wp--preset--color--gray-400, #A0AEC0);
    min-width: auto;
    box-shadow: none;
}

@media (max-width: 480px) {
    .archive-news .navigation.pagination .page-numbers {
        min-width: 34px;
        height: 34px;
    }
}
