a,
a:active,
a:hover,
a:visited {
    color: var(--accent-color)
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
    background: var(--content-bg);
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}
.article-title {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem
}
.keywords-label {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: .75rem
}

.keyword-button {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
}

.keyword-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
}

.article-content {
    line-height: 1.8;
    color: var(--primary-color);
    font-size: 1.05rem
}

.article-content p {
    margin-bottom: 1.5rem
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee
}
.footer {
    background-color: var(--content-bg)
}

@media (max-width:768px) {
.article-title {
        font-size: 1.7rem
    }
}

@media (max-width:480px) {
.article-content {
        font-size: 1rem
    }

    .keyword-button {
        padding: .4rem .8rem;
        font-size: .8rem
    }
}

:root {
    --sidebar-bg: #ecf0f1;
    --topbar-height: 56px;
    --max-content-width: 1200px
}

.top-bar {
    height: var(--topbar-height);
    padding: 0 1.5rem;
    background-color: #131b31;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000
}

.page-title {
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0
}
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}
.news-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem
}

.news-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    padding: 1.5rem;
    transition: transform .3s ease
}

.news-item:hover {
    transform: translateY(-5px)
}
@media (max-width:768px) {

    .news-items,
    .news-list {
        grid-template-columns: 1fr
    }

    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem
    }
}
.container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 1rem
}

h1 {
    font-size: 2rem
}

.meta,
h1 {
    margin-bottom: 1.5rem
}

.meta {
    font-size: .9rem;
    color: var(--secondary-color)
}

.meta strong {
    font-weight: 600
}

.news-body {
    font-size: 1.1rem;
    margin-bottom: 2rem
}

a.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    text-decoration: none;
    color: #fff;
    background-color: var(--accent-color);
    padding: .6rem 1rem;
    border-radius: 5px;
    transition: background-color .2s ease;
    text-align: center
}

a.back-link:hover {
    background-color: #2980b9
}

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

.news-item {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fafafa;
    transition: background-color .2s ease
}

.news-item:hover {
    background-color: #e9f1fb
}

.news-item a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500
}

.news-item a:hover {
    color: var(--accent-color)
}

.footer {
    background-color: #fff;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 1rem;
    font-size: .9rem;
    color: var(--secondary-color)
}

.footer a {
    color: var(--accent-color);
    text-decoration: none
}

.footer a:hover {
    text-decoration: underline
}

.footer-links-main {
    line-height: 1.8
}

.footer-link-icon {
    display: inline-flex;
    align-items: center;
    gap: .3rem
}

.footer-link-icon-svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    flex: 0 0 auto
}

@media (max-width:768px) {
    h1 {
        font-size: 1.5rem
    }

    .news-article {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem 1rem;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
    }
.article-title {
        font-size: 2rem;
        line-height: 1.3;
        color: #2c3e50;
        margin-bottom: 1.5rem
    }
.keywords-container {
        padding: 1rem;
        background: #f8fafc;
        border-radius: 6px
    }

    .keywords-label {
        margin-bottom: .5rem
    }
.article-content {
        line-height: 1.8;
        color: #334155;
        font-size: 1.05rem
    }

    .article-content p {
        margin-bottom: 1.5rem
    }

    .article-content img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
        margin: 1.5rem 0
    }

    .article-footer {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #eee
    }
@media (max-width:768px) {
        .news-article {
            padding: 1.5rem
        }

        .article-title {
            font-size: 1.7rem
        }
}

    @media (max-width:480px) {
        .article-title {
            font-size: 1.5rem
        }

        .article-content {
            font-size: 1rem
        }
    }

    .keywords-container {
        margin: 1.5rem 0
    }

    .keywords-label {
        display: block;
        font-weight: 600;
        color: #7f8c8d;
        margin-bottom: .75rem
    }

    .keywords-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem
    }

    .keyword-button {
        display: inline-block;
        padding: .5rem 1rem;
        background-color: #e0f2fe;
        color: #0369a1;
        border: 1px solid #bae6fd;
        border-radius: 6px;
        font-size: .85rem;
        font-weight: 500;
        text-align: center;
        cursor: pointer;
        transition: all .2s ease;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
    }

    .keyword-button:hover {
        background-color: #bae6fd;
        color: #075985;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
    }

    .keyword-button:active {
        transform: translateY(0);
        box-shadow: 0 1px 2px rgba(0, 0, 0, .05)
    }

    @media (max-width:480px) {
        .keyword-button {
            padding: .4rem .8rem;
            font-size: .8rem
        }
    }
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem
}

.page-heading {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem
}

.category-card {
    background: var(--content-bg);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--primary-color);
    border: 1px solid #eaeaea
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
    border-color: var(--accent-color)
}

.category-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: .5rem;
    color: #fff
}

.article-count {
    font-size: .9rem
}

.article-count,
.article-index {
    color: var(--secondary-color);
    background: #f1f5f9;
    padding: .25rem .75rem;
    border-radius: 20px;
    align-self: flex-start
}

.article-index {
    font-size: 1.5rem
}
@media (max-width:768px) {
    .page-heading {
        font-size: 1.7rem
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr))
    }
}

@media (max-width:480px) {
    .page-heading {
        font-size: 1.5rem
    }

    .categories-grid {
        grid-template-columns: 1fr
    }

    .category-card {
        padding: 1.25rem
    }
}

.news-item-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}
.news-item-content.vertical {
    flex-direction: column;
    align-items: flex-start
}

.logo-image {
    height: calc(var(--topbar-height) - 2px);
    width: auto;
    max-height: none;
    display: block;
    object-fit: contain
}

.category-card {
    position: relative;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .7);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    overflow: hidden
}

.category-card .category-overlay {
    background: rgba(0, 0, 0, .4);
    padding: 1rem;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--content-bg);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .1)
}

.contact-description {
    margin-bottom: 2rem;
    color: var(--secondary-color)
}

.contact-form .form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: .5rem
}

.form-input,
.form-textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9fafb;
    transition: border-color .2s ease
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent-color);
    outline: 0;
    background-color: #fff
}

.submit-button {
    background-color: var(--accent-color);
    color: #fff;
    padding: .75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .2s ease
}

.submit-button:hover {
    background-color: #2980b9
}

.form-message {
    margin-top: 1rem;
    font-size: 1rem;
    padding: .75rem 1rem;
    border-radius: 6px;
    display: none
}

.form-message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981
}

.form-message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171
}
.pagination-nav {
    text-align: center
}

.page-link,
.page-link:visited {
    display: inline-block;
    margin: 0 .3rem;
    padding: .5rem .75rem;
    color: #fff;
    background-color: var(--accent-color);
    border-radius: 4px;
    text-decoration: none;
    transition: background-color .2s ease
}

.page-link.current,
.page-link:hover {
    background-color: var(--accent-color-dark, #444)
}

.page-link.current {
    font-weight: 700;
    cursor: default
}

.page-link.dots {
    background-color: transparent;
    color: #999;
    cursor: default
}

a.back-link,
a.back-link:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    text-decoration: none;
    color: #fff;
    background-color: var(--accent-color);
    padding: .6rem 1rem;
    border-radius: 5px;
    transition: background-color .2s ease;
    text-align: center
}

.social-share {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: .75rem
}

.social-share a img,
.social-share button img {
    width: 28px;
    height: 28px;
    transition: transform .2s ease, filter .2s ease
}

.social-share a:hover img,
.social-share button:hover img {
    transform: translateY(-2px);
    filter: brightness(1.1)
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden
    }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .05);
    padding: 1rem 2rem;
    font-family: Segoe UI, sans-serif;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 9999
}

#cookie-banner p {
    margin: 0;
    font-size: 1rem;
    flex: 1 1 60%;
    color: #333
}

#cookie-banner button {
    margin-left: .5rem;
    padding: .5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    cursor: pointer;
    transition: background-color .2s ease
}

#cookie-banner button:hover {
    opacity: .9
}

#cookie-banner button:first-of-type {
    background-color: #4caf50;
    color: #fff
}

#cookie-banner button:nth-of-type(2) {
    background-color: #f44336;
    color: #fff
}

#cookie-banner button:last-of-type {
    background-color: #e0e0e0;
    color: #333
}

#cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center
}

#cookie-modal>div {
    background: #fff;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    font-family: Segoe UI, sans-serif
}

#cookie-modal h2 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #222
}

#cookie-modal label {
    display: block;
    margin: 1rem 0;
    font-size: 1rem;
    color: #555
}

#cookie-modal input[type=checkbox] {
    margin-right: .5rem
}

#cookie-modal button {
    background-color: #1976d2;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .6rem 1.2rem;
    font-size: .95rem;
    margin-top: 1rem;
    cursor: pointer
}

#cookie-modal button:hover {
    background-color: #1565c0
}

.language-dropdown-toggle img {
    margin-right: 8px;
    width: 20px;
    height: 20px
}

.language-dropdown-menu a {
    text-decoration: none
}

@media (max-width:600px) {
    .language-dropdown-menu {
        left: auto;
        right: 0;
        width: max-content;
        max-width: calc(100vw - 14px);
        overflow-x: hidden
    }

    .language-dropdown-menu a {
        white-space: normal;
        word-break: break-word
    }
}

.top-bar {
    padding: .5rem 1rem
}
.language-dropdown {
    margin-left: 1rem
}

#top-live-results {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 11;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
    margin-top: 8px
}
#top-search-icon img {
    display: block;
    width: 25px;
    height: 25px
}

@media (max-width:600px) {
.language-dropdown {
        margin-left: 0;
        align-self: flex-start
    }

    #top-live-results {
        width: 100%;
        right: 0;
        left: 0
    }

    #top-search-icon img {
        width: 24px;
        height: 24px
    }
}

#search-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px
}

#search-input {
    min-width: 200px
}

#clear-btn,
#search-input,
#search-submit {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px
}

#clear-btn,
#search-submit {
    background: #f0f0f0;
    cursor: pointer
}

#clear-btn:hover,
#search-submit:hover {
    background-color: #e0e0e0
}

#live-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000
}
.no-results {
    padding: 10px 12px;
    color: #888;
    font-style: italic
}

.search-results-page {
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.result-card {
    display: flex;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .04);
    transition: box-shadow .2s ease
}

.result-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08)
}

.image-wrapper {
    flex-shrink: 0;
    width: 160px;
    height: 100%;
    overflow: hidden
}

.result-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.result-content h3 {
    margin: 0;
    font-size: 1.2rem
}

.result-content h3 a {
    text-decoration: none;
    color: #333
}

.result-content p {
    margin: .5rem 0;
    color: #555;
    font-size: .95rem
}

.read-more {
    align-self: start;
    text-decoration: none;
    font-weight: 700;
    color: #06c;
    font-size: .9rem;
    margin-top: auto
}

@media (max-width:600px) {
    .result-card {
        flex-direction: column
    }

    .image-wrapper {
        width: 100%;
        height: 200px
    }
}
:root {
    --primary-color: #2c3e50;
    --secondary-color: #2c3e50;
    --accent-color: #2c3e50;
    --background-color: #f4f4f4;
    --content-bg: #fff;
    --topbar-height: 60px
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

a {
    color: var(--accent-color);
    text-decoration: none
}

.top-bar {
    justify-content: space-between;
    background-color: #0f172a;
    padding: 0 1rem;
    border-bottom: none;
    min-height: var(--topbar-height)
}

.top-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.top-bar .logo,
.top-bar .page-title {
    display: flex;
    align-items: center;
    height: 100%
}

.language-dropdown {
    position: relative;
    display: inline-block;
    font-family: sans-serif
}

.language-dropdown-toggle {
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: #fff
}

.ui-icon {
    font-size: 15px;
    margin-right: 6px;
    opacity: .9
}

.language-dropdown-toggle img {
    margin-right: 6px;
    border-radius: 50%;
    width: 24px;
    height: 24px
}

.language-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    z-index: 999;
    border-radius: 6px;
    padding: 8px 0
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    font-size: 14px;
    white-space: nowrap
}

.language-dropdown-menu a img {
    margin-right: 10px;
    border-radius: 50%;
    width: 20px;
    height: 20px
}

.language-dropdown-menu a:hover {
    background-color: #f0f0f0
}

.language-dropdown:hover .language-dropdown-menu {
    display: block
}

@media (max-width:600px) {
    .language-dropdown:hover .language-dropdown-menu {
        display: none;
    }

    .language-dropdown.is-open .language-dropdown-menu {
        display: block;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .3rem;
        padding-top: .25rem;
        padding-bottom: .35rem
    }

    .logo-image {
        height: calc(var(--topbar-height) - 10px)
    }

    .language-dropdown {
        align-self: center;
        margin-left: 0;
        margin-right: 0
    }
}

.hidden {
    transform: translateY(100%)
}

.category-bar {
    background: #fff;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 50
}

.category-bar::-webkit-scrollbar {
    height: 6px
}

.category-bar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 3px
}

.category-bar__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0 auto
}

.category-bar__item,
.category-bar__item_fixed {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    border-right: 1px solid #eee;
    flex-shrink: 0
}

.cat-nav-icon {
    display: inline-block;
    margin-right: .38rem;
    opacity: .85
}

.cat-nav-icon-svg {
    width: 15px;
    height: 15px;
    margin-right: .42rem;
    display: inline-block;
    vertical-align: text-bottom
}

.category-bar__item_fixed {
    color: var(--accent-color)
}

.category-bar__item:last-child,
.category-bar__item_fixed:last-child {
    border-right: none
}

.category-bar__item:hover,
.category-bar__item_fixed:hover {
    background: #f5f5f5;
    color: #000
}

.category-bar__item.current,
.category-bar__item:focus,
.category-bar__item:visited {
    color: #333;
    background: 0 0
}

.category-bar__item_fixed.current,
.category-bar__item_fixed:focus,
.category-bar__item_fixed:visited {
    color: var(--accent-color);
    background: 0 0
}
.category-bar__more {
    position: relative;
    display: inline-flex;
    align-items: stretch;
    flex-shrink: 0
}

.category-bar__more-btn {
    display: inline-flex;
    align-items: center;
    padding: .75rem 1rem;
    font-size: .875rem;
    font-weight: 700;
    color: #333;
    border: 0;
    border-left: 1px solid #eee;
    background: 0 0;
    cursor: pointer;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none
}

.category-bar__more-btn:focus-visible,
.category-bar__more-btn:hover {
    background: #f5f5f5;
    outline: 0
}

#top-search-wrapper,
#top-search-wrapper.hidden {
    display: none
}

.language-dropdown {
    position: relative;
    z-index: 10000
}

.language-dropdown-menu {
    z-index: 10001
}

#top-search-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: .25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    white-space: nowrap;
    z-index: 50
}

#top-search-input {
    font-size: .875rem;
    margin: 0 .25rem
}

#top-clear-btn,
#top-search-submit {
    font-size: .875rem;
    padding: 0 .4rem;
    background: 0 0;
    border: none;
    cursor: pointer
}
.search-results-page h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #2c3e50
}

.results-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-bottom: 2rem
}

.result-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05)
}

.image-wrapper {
    flex: 0 0 120px;
    overflow: hidden
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.result-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.result-content h2 {
    margin: 0 0 .5rem;
    font-size: 1.125rem
}

.result-content p {
    flex: 1;
    margin: 0 0 1rem;
    color: #555
}

.result-footer {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.read-more {
    text-decoration: none;
    color: #007bff;
    font-weight: 500
}

.read-more:hover {
    text-decoration: underline
}

.score {
    font-size: .875rem;
    padding: .25rem .5rem;
    border-radius: 4px
}

.score.high {
    background: #d4edda;
    color: #155724
}

.no-results {
    text-align: center;
    color: #777;
    margin-top: 2rem
}
.live-search-bar {
    background: #fafafa;
    border-bottom: 1px solid #ddd;
    padding: .5rem
}

@media (min-width:981px) {
    .nav-stack {
        position: sticky;
        top: var(--topbar-height, 60px);
        z-index: 90;
        transition: transform .2s ease, opacity .2s ease;
        will-change: transform, opacity;
    }

    .nav-stack.desktop-nav-hidden {
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
    }
}

.live-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto
}

.live-search-input-wrap {
    position: relative;
    width: 100%
}

.search-input-icon {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2
}

.search-input-icon-svg {
    width: 16px;
    height: 16px;
    display: block
}

#live-search-input {
    width: 100%;
    padding: .5rem 1rem .5rem 2.2rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .1)
}

.live-search-results {
    position: absolute;
    top: calc(100% + .25rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    z-index: 100;
    display: none
}

.live-search-results .item {
    padding: .5rem;
    cursor: pointer;
    border-bottom: 1px solid #eee
}

.live-search-results .item:last-child {
    border-bottom: none
}

.live-search-results .item:hover {
    background: #f5f5f5
}

.similar-news-section {
    margin: 2rem 0
}
.similar-news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.similar-news-tile {
    flex: 1 1 calc(33.333% - 1rem);
    background: #f8f8f8;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    transition: transform .2s
}

.similar-news-tile:hover {
    transform: translateY(-4px)
}

.tile-img {
    display: block;
    width: 100%;
    height: auto
}

.tile-title {
    font-size: .9rem;
    padding: .5rem;
    color: #333
}

@media (max-width:768px) {
    .similar-news-tile {
        flex: 1 1 calc(50% - 1rem)
    }
}

@media (max-width:480px) {
    .similar-news-tile {
        flex: 1 1 100%
    }
}

.similar-news-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start
}

.similar-news-tile {
    flex: 0 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem)
}

@media (max-width:768px) {
    .similar-news-tile {
        flex: 0 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem)
    }
}

@media (max-width:480px) {
    .similar-news-tile {
        flex: 0 1 100%;
        max-width: 100%
    }
}

.author-profile .card {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08)
}

.author-profile .card-body {
    padding: 1.5rem
}

.author-profile .card-title {
    font-size: 2rem;
    margin-bottom: .75rem;
    color: #1a1a1a
}

.author-profile h5 {
    font-size: 1.25rem;
    margin-top: 1rem;
    color: #333
}

.author-profile p {
    line-height: 1.6;
    color: #555
}

.author-profile .breadcrumbs {
    margin: 1rem 0;
    font-size: .9rem
}

.author-profile .breadcrumbs a {
    color: #06c;
    text-decoration: none
}

.author-profile .breadcrumbs a:hover {
    text-decoration: underline
}

.author-profile .container {
    padding-top: 2rem;
    padding-bottom: 2rem
}
@media (max-width:576px) {
    .author-profile .card-title {
        font-size: 1.5rem
    }

    .author-profile h2 {
        font-size: 1.5rem
    }
}

.author-profile .card-title.ms-3 {
    margin-left: 1rem !important
}

.author-profile .profile-picture {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden
}

.author-profile .card-body.d-flex {
    display: flex !important;
    align-items: center
}

.author-profile .card-title {
    margin: 0
}

.card-title.ms-3,
h5.ms-3 {
    margin-left: 1rem !important
}

.author-profile .profile-picture {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.author-profile .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.social-share-box {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
    margin: 1.5rem 0
}

.social-share-box .keywords-label {
    display: block;
    font-weight: 600;
    margin-bottom: .5rem
}

.social-share-box .social-share .clipboard-btn,
.social-share-box .social-share a {
    margin-right: .75rem
}

.author-bio-box {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1.5rem
}

.author-bio-box .profile-picture {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.author-bio-box .profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-bio-box .bio-text {
    flex-grow: 1;
    margin-left: 1rem
}

.author-bio-box .bio-text h5 {
    margin: 0 0 .5rem;
    font-size: 1.25rem
}

.author-bio-box .bio-text p {
    margin: 0 0 .75rem;
    color: #555;
    line-height: 1.5
}

.author-bio-box .read-more-link {
    font-weight: 500;
    color: #06c;
    text-decoration: none
}

.author-bio-box .read-more-link:hover {
    text-decoration: underline
}

@media (max-width:576px) {
    .author-bio-box {
        flex-direction: column;
        text-align: center
    }

    .author-bio-box .profile-picture {
        margin: 0 auto 1rem
    }

    .author-bio-box .bio-text {
        margin: 0
    }
}

.social-share-box .clipboard-btn {
    background: 0 0;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: 0
}

.social-share-box .clipboard-btn img {
    display: inline-block;
    border: none;
    background: 0 0
}

.social-share-box .social-share .clipboard-btn img,
.social-share-box .social-share a img {
    vertical-align: middle
}

.author-bio-box {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    background: #fff;
    padding: 1rem;
    margin-bottom: 1.5rem
}

.author-bio-box .bio-text {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 1rem
}

@media (max-width:576px) {
    .author-bio-box {
        flex-direction: column;
        text-align: center;
        flex-wrap: wrap
    }

    .author-bio-box .profile-picture {
        margin: 0 auto 1rem
    }

    .author-bio-box .bio-text {
        margin-left: 0
    }
}

.tile-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

.tile-img-wrapper .tile-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover
}

.tile-img-wrapper .tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    padding: .5rem
}

.tile-img-wrapper .tile-overlay-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .7)
}

.language-links {
    text-align: center;
    margin: 1rem 0;
    font-size: .9rem
}

.language-links a {
    display: inline-block;
    margin: 0 .5rem;
    padding: .25rem .5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: background .2s, color .2s
}

.language-links a:hover {
    background: rgba(0, 0, 0, .05);
    color: #000
}

.language-links {
    text-align: center;
    margin: 1rem 0
}

.language-links a {
    display: inline-block;
    margin: 0 .5rem;
    transition: transform .2s, opacity .2s
}

.language-links a img {
    width: clamp(16px, 5vw, 25px);
    height: clamp(16px, 5vw, 25px);
    object-fit: contain;
    display: block
}

.language-links a:hover {
    transform: scale(1.1);
    opacity: .8
}

.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0
}

.author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color, #333);
    padding: 1rem;
    background: var(--card-bg, #fff);
    border: 1px solid var(--card-border, #ddd);
    border-radius: .5rem;
    transition: transform .2s, box-shadow .2s
}

.author-card:link,
.author-card:visited {
    color: var(--text-color, #333)
}

.author-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1)
}

.author-card__photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: .5rem
}

.author-card__name {
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    word-break: break-word;
    margin-bottom: .25rem
}

.author-card__excerpt {
    font-size: .9rem;
    text-align: center;
    margin-bottom: .25rem
}

.author-card__country {
    font-size: .8rem;
    color: #666;
    text-transform: uppercase;
    text-align: center
}

@media (max-width:600px) {
    .authors-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr))
    }
}

.article-content ol,
.article-content ul {
    margin: .25em 0 .75em;
    padding-left: 1.5rem;
    list-style-position: outside
}

.article-content li {
    margin-bottom: .25em
}

.article-content ol ol,
.article-content ul ul {
    padding-left: 2.5rem
}

.tile-link {
    display: block
}

.tile-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1200/630;
    background: #eee
}

.tile-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.tile-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 12px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
    pointer-events: none
}

.tile-overlay-title {
    display: inline-block;
    font-weight: 600;
    padding: .35rem .6rem;
    border-radius: .75rem;
    background: rgba(0, 0, 0, .6)
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 1px, 1px);
    white-space: nowrap;
    border: 0
}

.article-hero {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #eee;
    margin: 1rem 0 1.25rem
}

.article-hero img {
    width: 100%;
    height: auto;
    display: block
}

.article-hero {
    margin: 1.25rem 0 2rem;
    border-radius: 14px;
    overflow: hidden;
    background: #f6f7f9
}

.article-hero img {
    display: block;
    width: 100%;
    height: auto
}

@supports (overflow-x:clip) {
    body {
        overflow-x: clip
    }
}

.admin-toolbar {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .5rem
}

.admin-toolbar>* {
    display: inline-flex;
    flex: 0 0 auto;
    margin: 0
}

.admin-toolbar .btn,
.admin-toolbar button,
.admin-toolbar select {
    margin: 0
}

.breadcrumbs {
    font-size: .9rem;
    margin: .5rem 0 1rem;
    color: var(--text-muted, #6b7280)
}

.breadcrumbs ol {
    display: flex;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap
}

.breadcrumbs li a {
    text-decoration: none
}

.breadcrumbs li::after {
    content: "›";
    margin-left: .5rem;
    opacity: .6
}

.breadcrumbs li:last-child::after {
    content: ""
}

.crypto-card {
    position: absolute;
    z-index: 9999;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
    padding: 12px 14px;
    font: 14px/1.35 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    border: 1px solid rgba(0, 0, 0, .08)
}

.crypto-card h4 {
    margin: 0 0 6px 0;
    font-size: 15px
}

.crypto-row {
    display: flex;
    justify-content: space-between;
    margin-top: 4px
}

.crypto-up {
    color: #0a8f3e;
    font-weight: 600
}

.crypto-down {
    color: #c62828;
    font-weight: 600
}

.crypto-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0
}

.crypto-chip {
    padding: 8px 10px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px
}

.crypto-chip-price {
    margin-left: 8px
}

.crypto-chip-delta {
    margin-left: 8px
}

.crypto-chip-delta.up {
    color: #0a8f3e;
    font-weight: 600
}

.crypto-chip-delta.down {
    color: #c62828;
    font-weight: 600
}



.category-bar {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 50
}

.category-bar__more {
    position: relative;
    display: inline-flex;
    align-items: center
}

.category-bar__more-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    min-width: 220px;
    max-height: 60vh;
    overflow: auto;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(120, 120, 120, .25);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    z-index: 99999
}

.category-bar__more.is-open .category-bar__more-menu {
    display: block
}

.category-bar__more-item {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    line-height: 1.1;
    font-weight: 600
}

.category-bar__more-item:focus-visible,
.category-bar__more-item:hover {
    background: rgba(0, 0, 0, .06);
    outline: 0
}

.breadcrumb,
.breadcrumbs {
    margin-bottom: 8px !important;
    padding-bottom: 0 !important
}
.breadcrumbs {
    margin: 6px auto 8px !important;
    padding: 0 1rem !important
}

.breadcrumbs ol {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25
}

.breadcrumbs li {
    margin: 0 !important
}

.breadcrumbs+.news-article,
.breadcrumbs+main.news-article {
    margin-top: 0 !important;
    padding-top: 0 !important
}

#content {
    padding-top: 0 !important
}

/* Modern list pages: /{lang}/news and /{lang}/articles */
.page-latest-list .v2-main {
    gap: .45rem;
}

.list-page {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-toggle-wrap,
.mobile-nav-menu {
    display: none;
}

.mobile-nav-toggle {
    display: none;
}

@media (max-width:980px) {
    .nav-stack {
        position: sticky;
        top: var(--topbar-height, 62px);
        z-index: 116;
        background: rgba(255, 255, 255, .86);
        border-bottom: 1px solid #e8edf5;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-nav-toggle-wrap {
        display: block;
        padding: .45rem .75rem;
        background: transparent;
        border-bottom: 1px solid #e8edf5;
        position: sticky;
        top: var(--topbar-height, 62px);
        z-index: 117;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: .55rem;
        border: 1px solid #d6dfed;
        background: #f8fbff;
        color: #0e2a4a;
        border-radius: 10px;
        padding: .55rem .8rem;
        font-weight: 700;
        font-size: .95rem;
        cursor: pointer;
    }

    .mobile-nav-toggle__icon {
        width: 16px;
        height: 2px;
        background: currentColor;
        box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
        border-radius: 2px;
    }

    .mobile-nav-menu {
        display: block;
        background: rgba(255, 255, 255, .96);
        border: 1px solid #dfe5ef;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
        position: fixed;
        top: calc(var(--topbar-height, 62px) + 52px);
        left: 10px;
        right: 10px;
        z-index: 120;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-nav-menu[hidden] {
        display: none !important;
    }

    .mobile-nav-menu__inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2px;
        max-height: 58vh;
        overflow: auto;
        padding: .3rem;
    }

    .mobile-nav-menu__item {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        text-decoration: none;
        color: #1b3655;
        font-weight: 700;
        border-radius: 8px;
        padding: .65rem .6rem;
        background: #f6f9ff;
    }

    .mobile-nav-menu__item--category {
        font-weight: 600;
        color: #27476d;
        background: #fff;
        border: 1px solid #edf2fa;
    }

    .mobile-nav-menu__item:hover,
    .mobile-nav-menu__item:focus-visible {
        background: #eaf3ff;
        outline: 0;
    }

    .live-search-bar {
        position: static;
        top: auto;
        z-index: auto;
        padding: .5rem .55rem;
        background: transparent;
    }

    .live-search-container {
        display: flex;
        align-items: center;
        gap: .5rem;
        max-width: none;
    }

    .live-search-input-wrap {
        flex: 1 1 auto;
    }

    .category-bar {
        display: none;
    }
}

.list-page__hero {
    padding: 1.1rem 1.1rem 1rem;
}

.list-page__title {
    margin: 0 0 .35rem;
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.list-page__subtitle {
    margin: 0;
    color: var(--v2-muted);
}

.list-page__stats {
    margin: .5rem 0 0;
    color: var(--v2-muted);
    font-size: .95rem;
}

.list-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .7rem;
}

/* Category page hero: title badge centered on image */
.v2-category .list-page__hero .v2-cat-hero--headline {
    position: relative;
    margin: .35rem 0 .95rem;
}

.v2-category .list-page__hero .v2-cat-hero--headline img {
    width: 100%;
    height: min(42vw, 250px);
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.v2-category .list-page__hero .list-page__title--badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: .45rem .9rem;
    background: rgba(11, 25, 53, .68);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
    white-space: nowrap;
    max-width: calc(100% - 1.25rem);
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(1.1rem, 2.2vw, 1.95rem);
}

.list-page__chip {
    border: 1px solid var(--v2-stroke);
    border-radius: 999px;
    padding: .28rem .62rem;
    text-decoration: none;
    color: var(--v2-ink);
    background: rgba(255, 255, 255, .75);
    font-size: .83rem;
}

.list-page__chip:hover {
    border-color: rgba(26, 85, 230, .3);
    color: var(--v2-accent);
}

.list-page__results {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.list-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: .9rem;
    padding: .65rem;
}

.list-card__media {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--v2-stroke);
    background: #e9eef7;
    min-height: 132px;
}

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

.list-card__body {
    min-width: 0;
}

.list-card .admin-toolbar {
    margin-bottom: .35rem;
}

.list-card__meta {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--v2-muted);
    font-size: .9rem;
    margin-bottom: .25rem;
}

.list-card__meta a {
    color: inherit;
    text-decoration: none;
}

.list-card__meta a:hover {
    color: var(--v2-accent);
}

.list-card__title {
    margin: 0 0 .35rem;
    font-size: clamp(1.1rem, 1.6vw, 1.42rem);
    line-height: 1.24;
}

.list-card__title a {
    text-decoration: none;
    color: var(--v2-ink);
}

.list-card__title a:hover {
    text-decoration: underline;
}

.list-card__summary {
    margin: 0;
    color: var(--v2-muted);
}

.list-card__footer {
    margin-top: .45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    flex-wrap: wrap;
}

.list-card__readmore {
    text-decoration: none;
    font-weight: 700;
    color: var(--v2-accent);
}

.list-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.list-card__chip {
    text-decoration: none;
    font-size: .78rem;
    color: var(--v2-muted);
    border: 1px solid var(--v2-stroke);
    border-radius: 999px;
    padding: .2rem .5rem;
}

.list-card__chip:hover {
    color: var(--v2-accent);
    border-color: rgba(26, 85, 230, .3);
}

@media (max-width: 860px) {
    .list-card {
        grid-template-columns: 1fr;
    }

    .list-card__media {
        min-height: 200px;
    }
}

@media (max-width: 430px) {
    .list-page__hero {
        padding: .85rem .85rem .75rem;
    }

    .list-page__title {
        font-size: 1.22rem;
        line-height: 1.22;
    }

    .list-page__subtitle,
    .list-page__stats {
        font-size: .9rem;
        line-height: 1.4;
    }

    .list-card {
        padding: .55rem;
        gap: .65rem;
    }

    .list-card__meta {
        font-size: .82rem;
    }

    .list-card__title {
        font-size: 1rem;
        line-height: 1.28;
    }

    .list-card__summary {
        font-size: .92rem;
        line-height: 1.42;
    }
}

@media (max-width: 768px) {
    .list-card__meta {
        font-size: .8rem;
    }

    .list-card__title {
        font-size: .98rem;
        line-height: 1.28;
    }

    .list-card__summary {
        font-size: .88rem;
        line-height: 1.4;
    }

    .list-card__readmore,
    .list-card__chip,
    .list-page__chip {
        font-size: .8rem;
    }

    .catx__name {
        font-size: 1.02rem;
        line-height: 1.25;
    }

    .catx__intro {
        font-size: .9rem;
        line-height: 1.4;
    }

    .catx__link {
        font-size: .92rem;
    }

    /* Homepage main cards (mobile) */
    .v2-feature__title {
        font-size: 1.02rem !important;
        line-height: 1.24 !important;
    }

    .v2-feature__summary,
    .v2-card__summary,
    .v2-latest-summary {
        font-size: .84rem !important;
        line-height: 1.36 !important;
    }

    .v2-card__title,
    .v2-latest-title,
    .v2-row__title {
        font-size: .94rem !important;
        line-height: 1.26 !important;
    }

    .v2-meta,
    .v2-row__meta,
    .v2-latest-meta {
        font-size: .76rem !important;
    }

    /* Right sidebar cards (daily summary / finance / most read) */
    .v2-sidecard__title {
        font-size: .96rem !important;
        line-height: 1.24 !important;
    }

    .v2-sidecard__text {
        font-size: .82rem !important;
        line-height: 1.34 !important;
    }

    .v2-side .v2-cta {
        font-size: .84rem !important;
        padding: 8px 10px !important;
    }

    .v2-side .crypto-chip {
        font-size: .8rem !important;
        padding: 7px 9px !important;
    }

    .v2-side .crypto-chip strong,
    .v2-side .crypto-chip a {
        font-size: .82rem !important;
    }

    .v2-side .crypto-chip-price,
    .v2-side .crypto-chip-delta {
        font-size: .8rem !important;
    }

    /* Legacy summary/list pages */
    .news-item {
        padding: .8rem;
    }

    .news-item a,
    .news-title {
        font-size: .94rem !important;
        line-height: 1.26 !important;
    }

    .news-item p,
    .news-text p {
        font-size: .84rem !important;
        line-height: 1.38 !important;
    }

    .news-meta,
    .article-count,
    .tile-overlay-title {
        font-size: .76rem !important;
        line-height: 1.3 !important;
    }

    .article-index {
        font-size: 1.08rem !important;
    }

    .keyword-button {
        font-size: .8rem !important;
        padding: .38rem .68rem !important;
    }

    /* Footer */
    .footer {
        font-size: .78rem !important;
        line-height: 1.35 !important;
        padding: .75rem !important;
    }

    .footer p,
    .footer a {
        font-size: .78rem !important;
    }

    .language-links {
        margin: .55rem 0 !important;
    }

    /* Author cards and bio boxes */
    .authors-grid {
        gap: .7rem;
    }

    .author-card {
        padding: .75rem;
    }

    .author-card__name {
        font-size: .9rem;
    }

    .author-card__excerpt {
        font-size: .8rem;
    }

    .author-card__country {
        font-size: .72rem;
    }

    .author-bio-box .bio-text h5 {
        font-size: 1rem;
    }

    .author-bio-box .bio-text p,
    .author-bio-box .read-more-link {
        font-size: .84rem;
    }
}

@media (max-width: 430px) {
    .v2-feature__title {
        font-size: .96rem !important;
    }

    .v2-card__title,
    .v2-latest-title,
    .v2-row__title {
        font-size: .9rem !important;
    }

    .v2-feature__summary,
    .v2-card__summary,
    .v2-latest-summary,
    .v2-sidecard__text {
        font-size: .8rem !important;
    }

    .v2-sidecard__title {
        font-size: .9rem !important;
    }
}

.v2-breadcrumb-card {
    padding: .55rem .9rem;
    margin-bottom: .35rem;
    overflow: hidden;
}

.v2-breadcrumb-card .breadcrumbs {
    margin: 0 !important;
    padding: 0 !important;
}

.v2-breadcrumb-card .breadcrumbs ol {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
}

.v2-breadcrumb-card .breadcrumbs li {
    flex: 0 0 auto;
    min-width: auto;
    overflow: visible;
    text-overflow: clip;
}

.v2-breadcrumb-card .breadcrumbs li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.v2-breadcrumb-card .breadcrumbs li:last-child a,
.v2-breadcrumb-card .breadcrumbs li:last-child span {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.v2-readtime,
.v2-read-progress-label {
    color: var(--v2-muted);
    font-weight: 600;
    font-size: .95rem;
}

.v2-read-progress {
    width: 100%;
    height: 6px;
    background: rgba(26, 85, 230, .12);
    border-radius: 999px;
    margin-top: .5rem;
    overflow: hidden;
}

.v2-read-progress__fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #1a55e6 0%, #2f84ff 100%);
    transition: width .15s linear;
}

.v2-read-float {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 1200;
    min-width: 180px;
    padding: .6rem .75rem;
    border: 1px solid var(--v2-stroke);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--v2-shadow);
    backdrop-filter: blur(4px);
}

.v2-read-float__time,
.v2-read-float__pct {
    font-weight: 700;
    font-size: .9rem;
    color: var(--v2-ink);
}

.v2-read-float__pct {
    float: right;
}

.v2-read-float__bar {
    clear: both;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    margin-top: .42rem;
    background: rgba(26, 85, 230, .12);
}

.v2-read-float__fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #1a55e6 0%, #2f84ff 100%);
    transition: width .15s linear;
}

/* Tighten breadcrumb -> first content card spacing globally */
.v2-main > .v2-breadcrumb-card {
    margin-bottom: .25rem;
}

.v2-main > .v2-breadcrumb-card + .v2-richtext {
    margin-top: -.15rem;
}

/* Categories page refresh */
.catx {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.catx__hero {
    padding: 1.05rem 1.1rem;
}

.catx__title {
    margin: 0 0 .35rem;
    font-size: clamp(1.4rem, 2.1vw, 1.95rem);
}

.catx__subtitle {
    margin: 0;
    color: var(--v2-muted);
}

.catx__meta {
    margin: .45rem 0 0;
    color: var(--v2-muted);
    font-size: .95rem;
}

.catx__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: .85rem;
}

.catx__card {
    padding: .7rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.catx__media {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--v2-stroke);
    min-height: 150px;
    background: #e6edf8;
}

.catx__media img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    display: block;
}

.catx__media-title {
    position: absolute;
    left: 50%;
    top: 66.666%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: .42rem .86rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(16, 29, 55, .66);
    color: #fff;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
    backdrop-filter: blur(2px);
    z-index: 2;
    max-width: calc(100% - 1.2rem);
}

.catx__count {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: .2rem .58rem;
    border-radius: 999px;
    background: rgba(16, 29, 55, .86);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
}

.catx__body {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.catx__name {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.catx__name a {
    color: var(--v2-ink);
    text-decoration: none;
}

.catx__name a:hover {
    text-decoration: underline;
}

.catx__intro {
    margin: 0;
    color: var(--v2-muted);
}

.catx__link {
    text-decoration: none;
    color: var(--v2-accent);
    font-weight: 700;
}

.catx .v2-article-keywords {
    margin: .35rem 0 .1rem;
}

@media (max-width:600px) {
    body {
        font-size: 1.04rem;
        line-height: 1.68;
    }
}

