:root {
    --primary-blue: #004a95;
    --primary-gradient: linear-gradient(135deg, #004a95 0%, #0072bc 100%);
    --secondary-blue: #0072bc;
    --dark-blue: #036;
    --light-blue: #f0f7ff;
    --accent-gold: #f9a825;
    --text-main: #1a1a2e;
    --text-muted: #535c68;
    --white: #fff;
    --bg-gray: #f4f7f6;
    --border-color: #e0e0e0;
    --card-shadow: 0 10px 30px #0000000d;
    --header-height: 120px;
    --nav-height: 60px;
    --transition: all .4s cubic-bezier(.165, .84, .44, 1);
    --container-width: 1296px
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes reveal {
    0% {
        clip-path: inset(0 100% 0 0)
    }

    to {
        clip-path: inset(0)
    }
}

.reveal-anim {
    opacity: 0;
    transition: all .8s cubic-bezier(.165,.84,.44,1);
    transform: translateY(30px)
}

    .reveal-anim.visible {
        opacity: 1;
        transform: translateY(0)
    }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden
}

body {
    color: var(--text-main);
    background-color: var(--bg-gray) !important;
    font-family: Roboto,Inter,system-ui,-apple-system,sans-serif;
    line-height: 1.6
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

@media (width<=768px) {
    .container {
        padding: 0 16px
    }
}

@media (width<=480px) {
    .container {
        padding: 0 12px
    }
}

.glass {
    -webkit-backdrop-filter: blur(15px);
    background: #ffffffb3;
    border: 1px solid #ffffff4d
}

.section-padding {
    padding: 80px 0
}

.back-to-top-btn {
    z-index: 9999;
    background: var(--primary-gradient);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    transition: all .3s;
    animation: .3s fadeInUp;
    display: flex;
    position: fixed;
    bottom: 32px;
    right: 32px;
    box-shadow: 0 4px 16px #004a9566
}

    .back-to-top-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px #004a958c
    }



.icon-btn {
    color: var(--text-muted);
    background: 0 0;
    border: none;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    padding: 5px;
    transition: all .3s;
    display: flex
}

    .icon-btn:hover {
        background: var(--light-blue);
        color: var(--primary-blue);
        transform: scale(1.1)
    }

.hamburger-btn {
    cursor: pointer;
    z-index: 1001;
    background: 0 0;
    border: none;
    padding: 10px;
    display: none
}

.hamburger-icon {
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    display: flex;
    position: relative
}

    .hamburger-icon span {
        background-color: var(--primary-blue);
        width: 100%;
        height: 2px;
        transition: all .3s;
        display: block
    }

    .hamburger-icon.open span:first-child {
        transform: translateY(8px)rotate(45deg)
    }

    .hamburger-icon.open span:nth-child(2) {
        opacity: 0
    }

    .hamburger-icon.open span:nth-child(3) {
        transform: translateY(-8px)rotate(-45deg)
    }

@media (width<=992px) {
    .hamburger-btn {
        display: block
    }

    .nav-menu {
        top: var(--nav-height);
        width: 100%;
        height: calc(100vh - var(--nav-height));
        z-index: 1000;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        transition: transform .3s;
        position: fixed;
        left: 0;
        overflow-y: auto;
        transform: translate(-100%);
        box-shadow: 0 10px 15px #0000001a
    }

        .nav-menu.show {
            transform: translate(0)
        }

        .nav-menu li {
            width: 100%;
            margin: 0
        }

            .nav-menu li a {
                border-bottom: 1px solid #0000000d;
                height: auto;
                padding: 15px 30px;
                font-size: 1rem
            }

                .nav-menu li a:after {
                    display: none
                }

    .nav-actions {
        gap: 8px
    }
}

.hero-carousel-wrap {
    width: 100vw;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
    background-color: #0d1525;
    margin-left: -50vw;
    margin-right: -50vw;
    position: relative;
    left: 50%;
    right: 50%;
    overflow: hidden
}

.hero-track {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
    transition: transform .55s cubic-bezier(.4,0,.2,1);
    display: flex
}

.hero-slide-item {
    width: 100%;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
    flex: 0 0 100%;
    display: flex;
    position: relative;
    overflow: hidden
}

    .hero-slide-item.brand-item {
        justify-content: center;
        align-items: center
    }

    .hero-slide-item.news-item {
        background-color: #0000;
        justify-content: flex-start;
        align-items: center;
        position: relative
    }

        .hero-slide-item.news-item:before {
            content: "";
            z-index: 1;
            background-image: linear-gradient(#003778e0,#003778e0),url(../img/bright_tech_pattern_bg.png);
            background-position: 50%;
            background-repeat: no-repeat;
            background-size: cover;
            width: 35%;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0
        }

        .hero-slide-item.news-item:after {
            content: "";
            z-index: 3;
            pointer-events: none;
            background: linear-gradient(#0000,#ffd766 10% 90%,#0000);
            width: 4px;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 35%;
            transform: translate(-50%);
            box-shadow: 0 0 10px #ffd76666
        }

.hero-slide-bg {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    inset: 0
}

    .hero-slide-bg.brand-bg {
        background-image: linear-gradient(135deg,#c86e148c 0%,#19378c8c 55%,#8c3c1473 100%),url(../img/bright_tech_pattern_bgv2.png) !important
    }

    .hero-slide-bg.news-bg {
        background-position: 100%;
        width: 65%;
        left: 35%;
        right: 0;
        -webkit-mask-image: none;
        mask-image: none
    }

        .hero-slide-bg.news-bg:after {
            content: none
        }

.hero-slide-content {
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    position: relative
}

.news-container {
    z-index: 2;
    align-items: center;
    width: 35%;
    padding-left: calc(max(40px,50vw - 850px));
    padding-right: 40px;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0
}

.hero-brand-content {
    justify-content:center;
    height:100%;
    text-align: center;
    color: #fff;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
    display: flex
}

.hero-main-title {
    text-shadow: 0 2px 20px #0009,0 0 40px #ffb43c33;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    margin-bottom: 12px;
    font-family: Roboto,sans-serif;
    font-size: clamp(1.7rem,3.8vw + 1rem,3.2rem);
    font-weight: 900;
    line-height: 1.15
}

.hero-sub-title {
    color: #ffc85e;
    text-shadow: 0 2px 10px #00000080;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: Roboto,sans-serif;
    font-size: 1.85rem;
    font-weight: 700
}

.hero-divider-center {
    background: linear-gradient(90deg,#0000,#ffc85e,#0000);
    width: 100px;
    height: 4px;
    margin-bottom: 28px
}

.hero-description {
    color: #f0e8d8;
    text-shadow: 0 2px 4px #0009;
    max-width: 700px;
    margin-bottom: 36px;
    font-family: Inter,sans-serif;
    font-size: 1.1rem;
    line-height: 1.75
}

.hero-news-content {
    width: 100%;
    box-shadow: none;
    z-index: 2;
    background: 0 0;
    border-top: none;
    border-radius: 0;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    position: relative
}

.hero-news-category {
    color: #1a1a1a;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: #ffc83cf2;
    border-left: none;
    border-radius: 4px;
    width: fit-content;
    padding: 6px 14px;
    font-family: Roboto,sans-serif;
    font-size: .8rem;
    font-weight: 800;
    display: inline-block
}

.hero-news-title {
    color: #fff;
    text-shadow: 0 1px 4px #00000080;
    margin: 0;
    font-family: Roboto,sans-serif;
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.35
}

.hero-news-desc {
    color: #ffffffd9;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-width: 100%;
    margin: 0;
    font-family: Inter,sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden
}

.hero-news-meta {
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    display: flex
}

.hero-news-date {
    color: #ffffffbf;
    font-family: Inter,sans-serif;
    font-size: .95rem
}

.hero-btn-ghost.hero-news-btn {
    color: #fff;
    border-color: #ffffff4d
}

    .hero-btn-ghost.hero-news-btn:hover {
        color: #024;
        background: #fff;
        border-color: #fff
    }

.hero-cta-group {
    justify-content: center;
    display: flex
}

.hero-btn-ghost {
    color: #fff;
    letter-spacing: .5px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    cursor: pointer;
    background: 0 0;
    border: 2px solid #ffc85ecc;
    border-radius: 8px;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: Roboto,sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all .3s;
    display: inline-flex
}

    .hero-btn-ghost:hover {
        color: #ffc85e;
        background: #ffc85e2e;
        border-color: #ffc85e;
        transform: translateY(-2px)
    }

.hero-news-btn {
    border-color: #fff9;
    padding: 12px 28px;
    font-size: .95rem
}

    .hero-news-btn:hover {
        color: #ffc85e;
        border-color: #ffc85e
    }

.btn-ghost-icon {
    font-size: 1.1rem
}

.hero-arrow {
    z-index: 10;
    color: #ffffffa6;
    cursor: pointer;
    background: 0 0;
    border: none;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    transition: all .25s;
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

    .hero-arrow svg {
        filter: drop-shadow(0 2px 4px #00000080);
        width: 38px;
        height: 38px;
        transition: all .25s
    }

    .hero-arrow:hover {
        color: #fff;
        background: 0 0;
        transform: translateY(-50%)scale(1.15)
    }

.hero-arrow-prev {
    left: 28px
}

.hero-arrow-next {
    right: 28px
}

.hero-dots {
    z-index: 10;
    gap: 10px;
    display: flex;
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translate(-50%)
}

.hero-dot {
    cursor: pointer;
    background: 0 0;
    border: 2px solid #fff9;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    padding: 0;
    transition: all .25s
}

    .hero-dot.active {
        background: #ffc85e;
        border-color: #ffc85e;
        transform: scale(1.3)
    }

    .hero-dot:hover:not(.active) {
        background: #fff6
    }

.hero-progress-bar {
    z-index: 10;
    background: #ffffff26;
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0
}

.hero-progress-fill {
    background: #ffc85e;
    width: 0%;
    height: 100%;
    animation: linear forwards progressFill
}

@keyframes progressFill {
    0% {
        width: 0%
    }

    to {
        width: 100%
    }
}

.hero-scroll-fab {
    z-index: 10;
    color: #fff;
    cursor: pointer;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: #ffffff1f;
    border: 2px solid #ffffff80;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    transition: all .3s;
    animation: 2.2s infinite fab-bounce;
    display: flex;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%)
}

    .hero-scroll-fab:hover {
        color: #ffc85e;
        background: #ffc85e40;
        border-color: #ffc85e
    }

@keyframes fab-bounce {
    0%,to {
        transform: translate(-50%)translateY(0)
    }

    50% {
        transform: translate(-50%)translateY(8px)
    }
}

@media (width<=992px) {
    .hero-slide-item {
        height: auto;
        min-height: 500px;
        padding: 10px
    }

    .hero-carousel-wrap {
        width: 100%;
        min-height: auto;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0
    }

    .hero-brand-content {
        max-width: 100%;
        margin-top: -60px;
        padding: 0 10px
    }

    .hero-main-title {
        letter-spacing: 1.5px;
        margin-bottom: 8px;
        line-height: 1.25;
        white-space: normal !important;
        font-size: clamp(1.4rem,6vw + .5rem,2.2rem) !important
    }

    .hero-sub-title {
        margin-bottom: 15px;
        font-size: 1.3rem !important
    }

    .hero-description {
        margin-bottom: 25px;
        line-height: 1.6;
        font-size: .95rem !important
    }

    .hero-slide-item.news-item {
        background: #002b5c;
        flex-direction: column;
        justify-content: flex-end
    }

        .hero-slide-item.news-item:before {
            z-index: 2;
            width: 100%;
            height: 45%;
            top: auto;
            bottom: 0
        }

    .hero-slide-bg.news-bg {
        z-index: 1;
        background-position: 50%;
        width: 100%;
        height: 55% !important;
        top: 0;
        left: 0
    }

    .news-container {
        z-index: 3;
        pointer-events: auto;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 55%;
        display: flex;
        position: relative;
        top: auto;
/*        bottom: -190px;*/
        bottom: -275px;
        transform: translateY(-25px);
        padding: 10px 15px !important
    }

    .hero-slide-item.news-item:after {
        background: linear-gradient(90deg,#0000,#ffd766 15% 85%,#0000);
        width: 100%;
        height: 3px;
        top: 55%;
        left: 0;
        transform: translateY(-50%)
    }

    .hero-news-content {
        gap: 8px !important
    }

    .hero-news-category {
        margin-top: -10px !important;
        margin-bottom: 10px !important
    }

    .hero-news-title {
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 2px !important;
        font-size: 1.25rem !important
    }

    .hero-news-desc {
        -webkit-line-clamp: 2;
        line-height: 1.45;
        margin-bottom: 4px !important;
        font-size: .88rem !important
    }

    .hero-news-meta {
        margin-top: 2px;
        gap: 10px !important
    }

    .hero-arrow {
        width: 40px;
        height: 40px
    }

        .hero-arrow svg {
            width: 28px;
            height: 28px
        }

    .hero-arrow-prev {
        left: 10px
    }

    .hero-arrow-next {
        right: 10px
    }

    .hero-dots {
        gap: 8px;
        bottom: 25px
    }

    .hero-dot {
        width: 8px;
        height: 8px
    }

    .hero-scroll-fab {
        display: none
    }
}

.featured-news-block {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 20px
}

.featured-news-header {
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    display: flex;
    position: relative
}

.featured-news-title {
    color: var(--primary-blue);
    text-transform: uppercase;
    font-family: Roboto,sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    position: relative
}

    .featured-news-title:after {
        content: "";
        background: #c62828;
        width: 100%;
        height: 3px;
        position: absolute;
        bottom: -8px;
        left: 0
    }

.featured-news-line {
    background: #e0e0e0;
    flex: 1;
    height: 1px
}

.featured-news-grid {
    grid-template-columns: 2fr 4.5fr 2fr;
    gap: 30px;
    display: grid
}

.fn-small-img, .fn-massive-img, .fn-medium-img {
    border-radius: 6px;
    overflow: hidden
}

    .fn-small-img img, .fn-massive-img img, .fn-medium-img img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform .5s;
        display: block
    }

.fn-small-card:hover img, .fn-massive-card:hover img, .fn-medium-card:hover img {
    transform: scale(1.05)
}

.fn-date {
    color: #999;
    margin-top: 8px;
    font-family: Inter,sans-serif;
    font-size: .75rem;
    display: block
}

.fn-col-left {
    flex-direction: column;
    gap: 20px;
    display: flex
}

.fn-small-card {
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 20px;
    display: flex
}

    .fn-small-card:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

.fn-small-img {
    aspect-ratio: 4/3;
    flex-shrink: 0;
    width: 110px
}

.fn-small-text h4 {
    color: #333;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0;
    font-family: Inter,sans-serif;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color .3s;
    display: -webkit-box;
    overflow: hidden;
    text-align:justify;
}

.fn-small-card:hover h4 {
    color: var(--primary-blue)
}

.fn-col-center {
    flex-direction: column;
    display: flex
}

.fn-massive-card {
    cursor: pointer
}

.fn-massive-img {
    aspect-ratio: 16/9;
    width: 100%;
    margin-bottom: 20px
}

.fn-massive-content h3 {
    color: #004a95;
    margin: 0 0 15px;
    font-family: Roboto,sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.35;
    transition: color .3s;
    text-align:justify;
}

.fn-massive-card:hover h3 {
    color: #c62828
}

.fn-massive-content p {
    color: #444;
    margin: 0 0 15px;
    font-family: Inter,sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align:justify;
}

.fn-col-right {
    flex-direction: column;
    gap: 30px;
    display: flex
}

.fn-medium-card {
    cursor: pointer
}

.fn-medium-img {
    aspect-ratio: 16/10;
    width: 100%;
    margin-bottom: 12px
}

.fn-medium-content h4 {
    color: #222;
    margin: 0;
    font-family: Inter,sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color .3s;
    text-align:justify;
}

.fn-medium-card:hover h4 {
    color: var(--primary-blue)
}

@media (width<=1200px) {
    .featured-news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .fn-col-center {
        order: -1;
        grid-column: span 2;
        margin-bottom: 20px
    }
}

@media (width<=768px) {
    .featured-news-block {
        padding: 0 15px
    }

    .featured-news-grid {
        grid-template-columns: 1fr
    }

    .fn-col-center {
        grid-column: span 1
    }

    .fn-massive-content h3 {
        font-size: 1.35rem;
        line-height: 1.3
    }

    .fn-massive-img {
        margin-bottom: 15px
    }

    .fn-small-card {
        gap: 12px
    }

    .fn-small-img {
        width: 90px
    }

    .fn-small-text h4 {
        font-size: .88rem
    }

    .featured-news-header {
        margin-bottom: 20px
    }
}

.main-editorial {
    grid-template-columns: 320px 1fr;
    gap: 40px;
    padding-bottom: 20px;
    display: grid
}

.sidebar-col {
    flex-direction: column;
    grid-area: 1/1;
    gap: 30px;
    display: flex
}

.news-content-col {
    flex-direction: column;
    grid-area: 1/2;
    gap: 50px;
    display: flex
}

.sidebar-widget {
    background: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    overflow: hidden
}

.widget-header {
    background: var(--primary-blue);
    color: #fff;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    display: flex
}

    .widget-header .icon {
        font-size: 1.1rem
    }

.widget-title {
    letter-spacing: .5px;
    font-size: 1.05rem;
    font-weight: 900;
    font-family: Roboto, sans-serif;
    color: #fff;
}

.announcement-list {
    padding: 15px 20px;
    list-style: none
}

.announcement-item {
    border-bottom: 1px dashed var(--border-color);
    padding: 12px 0
}

    .announcement-item:last-child {
        border-bottom: none
    }

    .announcement-item a {
        color: var(--text-main);
        font-family: Inter,sans-serif;
        font-size: .95rem;
        font-weight: 500;
        line-height: 1.5;
        transition: color .2s;
        display: block
    }

    .announcement-item:hover a {
        color: var(--primary-blue)
    }

.side-btn-premium .motif {
    opacity: .45;
    pointer-events: none;
    filter: brightness(2)contrast(1.5)grayscale(.5);
    z-index: 1;
    background-image: url(/banner-header-op1-0199f18f3c9e70d695b6c4b5ac835259.jpg);
    background-position: 85%;
    background-size: 500px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%)
}

.banner-float {
    display: block
}

    .banner-float img {
        border-radius: 8px;
        width: 100%;
        transition: all .3s;
        box-shadow: 0 4px 10px #00000014
    }

    .banner-float:hover img {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px #00000026
    }

.news-editorial-section {
    background: var(--white);
    box-shadow: var(--card-shadow);
    border-radius: 12px;
    padding: 30px
}

.section-header-editorial {
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    display: flex
}

.section-title-editorial {
    color: var(--primary-blue);
    text-transform: uppercase;
    white-space: nowrap;
    font-family: Roboto,sans-serif;
    font-size: 1.4rem;
    font-weight: 900
}

.line-accent {
    background: linear-gradient(to right, var(--primary-blue), #e0e0e0);
    flex: 1;
    height: 3px
}

.editorial-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    display: grid
}

.editorial-featured {
    flex-direction: column;
    gap: 15px;
    display: flex
}

.featured-img-wrap {
    aspect-ratio: 16/10;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px #0000001a
}

    .featured-img-wrap img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform .5s
    }

.editorial-featured:hover .featured-img-wrap img {
    transform: scale(1.03)
}

.featured-badge {
    color: #fff;
    background: #d32f2f;
    border-radius: 4px;
    padding: 4px 12px;
    font-family: Roboto,sans-serif;
    font-size: .75rem;
    font-weight: 800;
    position: absolute;
    top: 15px;
    left: 15px
}

.news-date {
    color: var(--text-muted);
    font-family: Inter,sans-serif;
    font-size: .8rem;
    font-weight: 600;
    display: block
}

.featured-title h3 {
    color: var(--primary-blue);
    margin: 8px 0;
    font-family: Roboto,sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    transition: color .2s
}

.featured-title:hover h3 {
    color: var(--accent-gold)
}

.featured-summary {
    color: #444;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-family: Inter,sans-serif;
    font-size: .95rem;
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden
}

.editorial-list {
    border-left: 1px solid #eee;
    flex-direction: column;
    gap: 0;
    padding-left: 30px;
    display: flex
}

.editorial-list-item {
    border-bottom: 1px dashed #e0e0e0;
    padding: 15px 0
}

    .editorial-list-item:first-child {
        padding-top: 0
    }


    .editorial-list-item h4 {
        color: var(--text-main);
        margin-top: 8px;
        font-family: Roboto,sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.4;
        transition: color .2s
    }

    .editorial-list-item:hover h4 {
        color: var(--primary-blue)
    }

.sidebar-banners-cinematic {
    flex-direction: column;
    gap: 15px;
    display: flex
}

.banner-float {
    border-radius: 8px;
    transition: all .3s;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 10px #00000014
}

    .banner-float:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px #00000026
    }

    .banner-float img {
        border-radius: 8px;
        width: 100%;
        display: block
    }

.sidebar-actions {
    flex-direction: column;
    gap: 12px;
    display: flex
}

.side-btn-premium {
    background: var(--primary-gradient);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    width: 100%;
    height: 60px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px #0000001a
}

    .side-btn-premium:hover {
        transform: translate(4px);
        box-shadow: 0 6px 15px #004a9540
    }

    .side-btn-premium .btn-inner {
        z-index: 2;
        text-align: left;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
        font-family: Roboto,sans-serif;
        font-size: .95rem;
        font-weight: 700;
        display: flex;
        position: relative
    }

    .side-btn-premium .motif {
        opacity: .35;
        pointer-events: none;
        z-index: 1;
        background-image: url(../img/bright_tech_pattern_bgv2.png);
        background-position: 85%;
        background-size: 500px;
        border-radius: 50%;
        width: 140px;
        height: 140px;
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%)
    }

.stats-widget {
    overflow: hidden
}

.stats-widget-header {
    background: var(--primary-blue);
    color: #fff;
    text-align: center;
    letter-spacing: .5px;
    padding: 12px 20px;
    font-family: Roboto,sans-serif;
    font-size: 1rem;
    font-weight: 800
}

.stats-widget-body {
    background: #fff;
    padding: 15px 20px
}

.link-dropdown {
    border: 1px solid var(--border-color);
    width: 100%;
    color: var(--text-main);
    cursor: pointer;
    background: #f9f9f9;
    border-radius: 6px;
    outline: none;
    padding: 10px 12px;
    font-family: Inter,sans-serif;
    font-size: .9rem
}

    .link-dropdown:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px #004a951a
    }

.stat-row {
    color: var(--text-main);
    align-items: center;
    gap: 10px;
    font-family: Inter,sans-serif;
    font-size: .95rem;
    display: flex
}

.stat-icon {
    font-size: 1.3rem
}

.stat-count {
    color: #c62828;
    font-size: 1.1rem;
    font-weight: 800
}

@media (width<=992px) {
    .main-editorial {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px
    }

    .sidebar-col {
        order: 1;
        grid-area: 1/1
    }

    .news-content-col {
        order: 2;
        grid-area: 2/1;
        gap: 20px
    }

    .editorial-layout {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .editorial-list {
        border-top: 1px solid #eee;
        border-left: none;
        padding-top: 15px;
        padding-left: 0
    }

    .news-editorial-section {
        padding: 15px
    }
}

@media (width<=768px) {
    .section-title-editorial {
        font-size: 1.2rem
    }

    .featured-title h3 {
        font-size: 1.25rem
    }

    .featured-summary {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: .9rem
    }

    .editorial-list-item h4 {
        font-size: .95rem
    }

    .side-btn-premium .btn-inner {
        padding: 0 15px;
        font-size: .88rem
    }
}

.media-block {
    padding: 0 20px 40px
}

.media-block-header {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    display: flex
}

.media-block-title-wrap {
    align-items: center;
    gap: 15px;
    display: flex
}

.media-block-title {
    color: var(--primary-blue);
    text-transform: uppercase;
    white-space: nowrap;
    font-family: Roboto,sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    position: relative
}

    .media-block-title:after {
        content: "";
        background: #c62828;
        width: 100%;
        height: 3px;
        position: absolute;
        bottom: -6px;
        left: 0
    }

.media-line-accent {
    background: #e0e0e0;
    flex: 1;
    min-width: 40px;
    height: 1px
}

.media-tabs {
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    flex-shrink: 0;
    gap: 0;
    display: flex;
    overflow: hidden
}

.media-tab {
    color: var(--primary-blue);
    cursor: pointer;
    background: 0 0;
    border: none;
    align-items: center;
    gap: 7px;
    padding: 10px 28px;
    font-family: Roboto,sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: all .25s;
    display: flex
}

    .media-tab.active {
        background: var(--primary-blue);
        color: #fff
    }

    .media-tab:hover:not(.active) {
        background: var(--light-blue)
    }

.media-white-card {
    box-shadow: var(--card-shadow);
    background: #fff;
    border-radius: 12px;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 30px;
    padding: 30px;
    display: grid
}

.media-inner-divider {
    display: none
}

.media-featured-row {
    flex-direction: column;
    gap: 18px;
    height: 100%;
    display: flex
}

.media-featured-img-wrap {
    aspect-ratio: 16/10;
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

    .media-featured-img-wrap img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: transform .5s
    }

    .media-featured-img-wrap:hover img {
        transform: scale(1.04)
    }

.media-featured-content {
    flex-direction: column;
    flex: 1;
    gap: 12px;
    display: flex
}

.media-featured-title {
    color: var(--primary-blue);
    font-family: Roboto,sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.4;
    transition: color .2s
}

    .media-featured-title:hover {
        color: #c62828
    }

.media-featured-sapo {
    color: #444;
    font-family: Inter,sans-serif;
    font-size: .93rem;
    line-height: 1.6
}

.media-grid {
    flex-direction: column;
    gap: 16px;
    display: flex
}

.media-card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    flex-direction: row;
    align-items: stretch;
    transition: all .3s;
    display: flex;
    overflow: hidden
}

    .media-card:hover {
        transform: translate(3px);
        box-shadow: 0 6px 18px #0000001a
    }

.media-card-img-wrap {
    flex-shrink: 0;
    width: 200px;
    position: relative;
    overflow: hidden
}

    .media-card-img-wrap img {
        aspect-ratio: 16 / 10;
        object-fit: cover;
        width: 100%;
        transition: transform .5s
    }

.media-card:hover .media-card-img-wrap img {
    transform: scale(1.06)
}

.media-cat-badge {
    color: #fff;
    letter-spacing: .5px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: #004a95d9;
    border-radius: 4px;
    padding: 3px 10px;
    font-family: Inter,sans-serif;
    font-size: .68rem;
    font-weight: 700;
    position: absolute;
    top: 10px;
    left: 10px
}

.media-card-body {
    flex-direction: column;
    flex: 1;
    gap: 8px;
    padding: 16px 18px;
    display: flex
}

.media-card-title {
    color: var(--primary-blue);
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: Roboto,sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
    transition: color .2s;
    display: -webkit-box;
    overflow: hidden
}

.media-card:hover .media-card-title {
    color: #c62828
}

.media-card-sapo {
    color: #555;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    flex: 1;
    font-family: Inter,sans-serif;
    font-size: .85rem;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden
}

.media-card-meta {
    color: #888;
    border-top: 1px solid #eee;
    gap: 16px;
    padding-top: 10px;
    font-family: Inter,sans-serif;
    font-size: .8rem;
    display: flex
}

@media (width<=992px) {
    .media-block {
        padding: 0 15px 30px
    }

    .media-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .media-tabs {
        white-space: nowrap;
        width: 100%;
        display: flex;
        overflow-x: auto
    }

    .media-tab {
        flex: 1;
        justify-content: center;
        padding: 8px 15px;
        font-size: .88rem
    }

    .media-white-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px
    }

    .media-card-img-wrap {
        width: 110px
    }

    .media-card-body {
        padding: 12px
    }

    .media-card-title {
        font-size: .95rem
    }
}

@media (width<=768px) {
    .media-block-title {
        font-size: 1.2rem
    }

    .media-card-sapo {
        display: none
    }

    .media-card-meta {
        gap: 10px;
        font-size: .75rem
    }
}

.info-bar-section {
    border-top: 3px solid var(--primary-blue);
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 28px 0
}

.info-bar-inner {
    align-items: center;
    gap: 0;
    display: flex
}

.info-bar-block {
    flex: 1;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    display: flex
}

    .info-bar-block:first-child {
        padding-left: 0
    }

    .info-bar-block:last-child {
        padding-right: 0
    }

.info-bar-label {
    white-space: nowrap;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: .5px;
    align-items: center;
    gap: 8px;
    font-family: Roboto,sans-serif;
    font-size: .9rem;
    font-weight: 800;
    display: flex
}

.info-bar-icon {
    font-size: 1.1rem
}

.info-bar-dropdown {
    border: 1.5px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    background: #f8faff;
    border-radius: 8px;
    outline: none;
    flex: 1;
    min-width: 240px;
    padding: 10px 14px;
    font-family: Inter,sans-serif;
    font-size: .92rem;
    transition: border-color .2s,box-shadow .2s
}

    .info-bar-dropdown:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px #004a951a
    }

.info-bar-divider {
    background: #dde4ed;
    flex-shrink: 0;
    width: 1px;
    height: 50px
}

.info-bar-stats {
    align-items: center;
    gap: 30px;
    display: flex
}

.stat-item {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    display: flex
}

.stat-label {
    color: #777;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-family: Inter,sans-serif;
    font-size: .78rem
}

.stat-value {
    color: var(--primary-blue);
    font-family: Roboto,sans-serif;
    font-size: 1.25rem;
    font-weight: 800
}

.stat-item.highlight .stat-value {
    color: #c62828;
    font-size: 1.4rem
}

.stat-item.highlight .stat-label {
    color: #555;
    font-weight: 600
}

@media (width<=768px) {
    .info-bar-inner {
        flex-direction: column;
        padding: 0 15px
    }

    .info-bar-block {
        text-align: center;
        border-bottom: 1px solid #eee;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 20px 0
    }

        .info-bar-block:last-child {
            border-bottom: none
        }

    .info-bar-divider {
        display: none
    }

    .info-bar-dropdown {
        width: 100%;
        min-width: 0
    }

    .info-bar-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px
    }
}
/* simax css*/
.tin-phu ul {
    height: 500px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.khoi-thong-bao ul {
    height: 325px;
    overflow-y: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.media-grid ul {
    height: 550px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.featured-news-grid .fn-col-left ul {
    height: 580px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .tin-phu ul::-webkit-scrollbar,
    .khoi-thong-bao ul::-webkit-scrollbar,
    .media-grid ul::-webkit-scrollbar,
    .featured-news-grid .fn-col-left ul::-webkit-scrollbar {
        display: none;
    }
.hero-carousel-wrap .slick-list,
.hero-carousel-wrap .slick-track,
.hero-carousel-wrap .slick-slide,
.hero-carousel-wrap .slick-slide > div {
    height: 100%;
}

.hero-carousel-wrap {
    height: calc(100vh - var(--header-height) - var(--nav-height));
}

.section-header-editorial {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
}

    .section-header-editorial a {
        flex: 0 1 auto !important;
        min-width: 0 !important; 
        max-width: 100% !important;
    }

.section-title-editorial {
    white-space: normal !important;
    word-wrap: break-word !important;
    line-height: 1.4 !important;
}

.line-accent {
    flex: 1 1 0% !important;
    min-width: 0 !important;
}
