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

body {
    font-family: "Inter", Arial, sans-serif;
    background: #070b16;
    color: #fff;
    line-height: 1.3;
}

img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.main-header {
    height: 82px;
    background: rgba(7, 11, 22, .95);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
}

.logo img {
    height: 50px;
    max-width: 200px;
    aspect-ratio: auto;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #b8c2d4;
    font-size: 15px;
    transition: .3s;
    font-weight: bold;
}

.main-nav a:hover {
    color: #00d4ff;
}

.header-tools button {
    background: #101827;
    border: 1px solid #263247;
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
}

.mobile-button {
    display: none;
}

.breaking-news {
    background: #00d4ff;
    color: #00131c;
    height: 42px;
    overflow: hidden;
}

.breaking-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.breaking-label {
    font-weight: 800;
    padding-right: 25px;
}

.breaking-track {
    overflow: hidden;
    flex: 1;
}

.breaking-content {
    white-space: nowrap;
    animation: newsMove 25s linear infinite;
}

@keyframes newsMove {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero-carousel {
    margin: 35px 0;
}

.carousel-box {
    min-height: 390px;
    max-height: 500px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}

.carousel-overlay {
    padding: 20px 30px;
    z-index: 5;
    background: #393939;
}

.carousel-tag {
    display: inline-block;
    background: #00d4ff;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 700;
}

.carousel-overlay h1 {
    font-size: 36px;
    line-height: 1.3;
    margin: 15px 0;
}

.carousel-overlay p {
    font-size: 17px;
    color: #d1d8e5;
}

.carousel-overlay button {
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    background: white;
    cursor: pointer;
    font-weight: bold;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #0008;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: white;
    opacity: .4;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.dot.active {
    opacity: 1;
}

/* =========================
SECTION
========================= */

section {
    margin-top: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 28px;
}

.section-header span, .section-header a {
    color: #00d4ff;
}

/* =========================
MARKET
========================= */

.market-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
}

.market-item {
    border-radius: 20px;
    border: 1px solid #1e293b;
    width: 100%;
    background: #101827;
    position: relative;
}

.market-item img {
    border-radius: 20px;
}

.article-img {
    width: 100%;
    aspect-ratio: 16/9;
}

.article-cate, .article-category {
    font-weight: bold;
    color: #5aaaff;
}

.market-item:after, .large-news-card:after, .investment-item:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .85));
}

.market-card {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
    width: 100%;
    z-index: 11;
}

.market-card strong {
    display: block;
    font-size: 34px;
    margin: 15px 0;
}

.green {
    color: #00e676;
    font-weight: bold;
    margin-top: .3rem;
}

.read-more {
    margin-top: .6rem;
    color: #00d4ff;
    font-weight: bold;
}

/* =========================================
SEARCH PANEL
========================================= */

.search-panel {
    position: fixed;
    inset: 0;
    z-index: 3000;
    visibility: hidden;
    opacity: 0;
    transition: opacity .3s ease, visibility .3s ease;
}

.search-panel.active {
    visibility: visible;
    opacity: 1;
}

.search-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 15, .78);
    backdrop-filter: blur(10px);
}

.search-container {
    position: relative;
    z-index: 2;
    width: min(900px, 92%);
    margin: 90px auto 0;
    background: #101827;
    border: 1px solid #263247;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
    transform: translateY(-20px);
    transition: transform .35s ease;
}

.search-panel.active .search-container {
    transform: translateY(0);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
}

.search-close,
.menu-close {
    width: 40px;
    height: 40px;
    border: 1px solid #2a374c;
    border-radius: 50%;
    background: #0b1220;
    color: white;
    font-size: 26px;
    cursor: pointer;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #070d19;
    border: 1px solid #263247;
    border-radius: 16px;
}

.search-icon {
    font-size: 25px;
    color: #00d4ff;
    padding-left: 12px;
}

.search-input-wrapper input {
    flex: 1;
    height: 55px;
    border: 0;
    outline: 0;
    background: transparent;
    color: white;
    font-size: 17px;
}

.search-input-wrapper input::placeholder {
    color: #66748a;
}

.search-submit {
    height: 48px;
    padding: 0 25px;
    border: 0;
    border-radius: 12px;
    background: #00d4ff;
    color: #00131c;
    font-weight: 700;
    cursor: pointer;
}

.search-suggestions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    color: #8793a7;
}

.search-suggestions button {
    padding: 7px 14px;
    border: 1px solid #29364b;
    border-radius: 30px;
    background: #121c2d;
    color: #cbd5e1;
    cursor: pointer;
}

.search-suggestions button:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

.search-results {
    margin-top: 25px;
    max-height: 420px;
    overflow-y: auto;
}

.search-result {
    padding: 18px 0;
    border-bottom: 1px solid #253047;
}

.search-result span {
    color: #00d4ff;
    font-size: 12px;
    font-weight: 700;
}

.search-result h3 {
    margin-top: 5px;
    font-size: 18px;
}

.search-result p {
    color: #8996aa;
    font-size: 14px;
    margin-top: 5px;
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #718096;
}

/* =========================================
MEGA MENU
========================================= */

.menu-wrapper {
    position: fixed;
    inset: 0;
    z-index: 2500;
    visibility: hidden;
    pointer-events: none;
}

.menu-wrapper.active {
    visibility: visible;
    pointer-events: auto;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    transition: opacity .35s ease;
}


.menu-wrapper.active .menu-overlay {
    opacity: 1;

}

.mega-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: min(620px, 92vw);
    height: 100%;
    background: #080e1a;
    border-left: 1px solid #263247;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.77, 0, .18, 1);
    overflow-y: auto;
}


.menu-wrapper.active
.mega-menu {
    transform: translateX(0);

}


.mega-menu-header {
    min-height: 110px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #202d42;

}


.mega-menu-header small {
    color: #00d4ff;
    letter-spacing: 2px;
    font-size: 11px;

}


.mega-menu-header h2 {
    margin-top: 5px;
    font-size: 28px;

}


.mega-menu-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;

}


.menu-feature {
    grid-column: 1 / -1;
    padding: 25px;
    border-radius: 18px;
    background: linear-gradient(135deg, #102238, #0c1525);
    border: 1px solid #263b54;

}


.menu-feature span {
    color: #00d4ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

}


.menu-feature h3 {
    margin: 10px 0;
    font-size: 23px;

}


.menu-feature p {
    color: #8996aa;
    font-size: 14px;

}


.menu-feature a {
    display: inline-block;
    margin-top: 18px;
    color: #00d4ff;
    font-weight: 600;

}


.menu-group {
    padding-bottom: 15px;

}


.menu-group h4 {
    color: #69778d;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 13px;

}


.menu-group a {
    display: block;
    padding: 8px 0;
    color: #c6cfdd;
    transition: .25s;
    font-weight: bold;
    font-size: 18px;
}


.menu-group a:hover {
    color: #00d4ff;
    transform: translateX(5px);
}


.mega-menu-footer {
    margin: 0 30px;
    padding: 25px 0;
    border-top: 1px solid #202d42;
    display: flex;
    justify-content: space-between;
    color: #68768b;
    font-size: 12px;
}


.mega-menu-footer a {
    color: #00d4ff;
}


/* =========================================
MOBILE NAV
========================================= */

@media (max-width: 1000px) {
    .main-nav {
        display: none;
    }

    .mobile-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
}


.menu-line {
    width: 17px;
    height: 2px;
    background: #fff;
    display: block;
    transition: .3s;
}


body.menu-open,
body.search-open {
    overflow: hidden;
}


@media (max-width: 600px) {
    .search-container {
        width: 94%;
        margin-top: 65px;
        padding: 20px;
        border-radius: 18px;
    }

    .search-input-wrapper {
        flex-wrap: wrap;
    }

    .search-input-wrapper input {
        min-width: 150px;
    }

    .search-submit {
        width: 100%;
    }

    .mega-menu {
        width: 94vw;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}


.news-layout {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 25px;
}


.large-news-card {
    position: relative;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
}


.news-overlay {
    position: absolute;
    bottom: 10px;
    padding: 30px 30px 10px;
    z-index: 11;
}


.news-overlay h2 {
    font-size: 34px;
    margin: 8px 0;
}


.small-news {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #243047;

}


.small-news img {
    width: 140px;
    aspect-ratio: 16/9;
    border-radius: 12px;

}


/* =========================
TOPIC CARDS
========================= */


.topic-grid {
    display: grid;
    grid-template-columns:

repeat(3, 1fr);
    gap: 25px;

}


.topic-card {
    background: #101827;
    border-radius: 20px;
    overflow: hidden;

}


.topic-card img {


}


.topic-content p {
    margin: 8px 0;
    font-size: 14px;
}

.topic-content {
    padding: 25px;

}


.topic-content a {
    color: #00d4ff;

}


/* =========================
HBM
========================= */


.hbm-layout {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 30px;
}


.hbm-main {
    background: #101827;
    border-radius: 25px;
    overflow: hidden;
}


.hbm-main img {

}


.hbm-main div {
    padding: 25px;
}

.hbm-main h2 {
    margin-bottom: 10px;
}

.hbm-list div, .hbm-list a {
    padding: 25px;
    background: #101827;
    margin-bottom: 20px;
    border-radius: 18px;
    display: block;
}


/* =========================
MAGAZINE
========================= */


.magazine-layout {
    display: grid;
    grid-template-columns:

1fr 1fr;
    gap: 50px;
    align-items: center;

}

.magazine-image img {
    height: 420px;
    border-radius: 25px;

}

.magazine-list div {
    padding: 18px 0;
    border-bottom: 1px solid #263247;
    display: flex;
    gap: 20px;

}

.magazine-list strong {
    color: #00d4ff;

}

/* =========================
MATERIAL
========================= */

.materials-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 25px;
}

.material-card {
    background: #101827;
    border-radius: 20px;
    overflow: hidden;

}

.material-card img {

}

.material-card div {
    padding: 25px;

}

/* CATEGORY */

.category-grid {
    display: grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap: 20px;
}

.category-box {
    background: linear-gradient(145deg, #111827, #0c1322);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.category-box:hover {
    transform: translateY(-8px);
}

.category-icon {
    font-size: 38px;
    margin-bottom: 20px;
}

.category-icon img {
    border-radius: 20px;
}

.category-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.category-box p {
    color: #9da8bb;
    font-size: 14px;
}

.category-box a {
    display: inline-block;
    margin-top: 20px;
    color: #00d4ff;
}

/* FEATURE */
.feature-area {
    margin-top: 70px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-image img {
    border-radius: 25px;
    height: 430px;
    width: 100%;
    object-fit: cover;
}

.feature-content h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 20px 0;
}

.feature-content p {
    color: #aeb8ca;
    font-size: 17px;
}

.feature-content ul {
    list-style: none;
    margin-top: 25px;
}

.feature-content li {
    margin: 12px 0;
    color: #dce3ef;
}

.read-btn {
    margin-top: 25px;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    background: #00d4ff;
    font-weight: 700;
    cursor: pointer;
}


/* =========================
PACKAGING
========================= */


.packaging-layout {
    display: grid;
    grid-template-columns:

repeat(2, 1fr);
    gap: 25px;

}


.packaging-card {
    background: #101827;
    border-radius: 20px;
    overflow: hidden;

}


.packaging-card img {
    height: 300px;

}


.packaging-card div {
    padding: 25px;

}


/* =========================
TIMELINE
========================= */


.timeline-container {
    border-left: 3px solid #00d4ff;

}


.timeline-item {
    display: flex; /*gap: 40px;*/
    padding: 20px 30px;
}


.timeline-year {
    font-size: 38px;
    font-weight: 800;
    color: #00d4ff;

}

.timeline-year img {
    max-width: 240px;
    border-radius: 20px 0 0 20px;
}


.timeline-content {
    background: #101827;
    padding: 25px;
    border-radius: 0 20px 20px 0;
    flex: 1;
}


/* =========================
ETF
========================= */


.investment-grid {
    display: grid;
    grid-template-columns:

repeat(3, 1fr);
    gap: 25px;

}

.investment-item {
    background: #101827;
    border-radius: 25px;
    position: relative;
}

.investment-item img {
    border-radius: 25px;
}


.investment-card {
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}

.investment-card p {
    font-size: 14px;
    margin: .3rem 0;
    color: #999;
}


.investment-number {
    font-size: 14px;
    color: #00e676;
    font-weight: 800;
    margin: 10px 0 0;
}

.newsletter-section {
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    padding: 45px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.newsletter-form {
    background: white;
    padding: 8px;
    border-radius: 40px;
}


.newsletter-form input {
    padding: 15px;
    border: none;
    outline: none;
}


.newsletter-form button {
    padding: 15px 25px;
    border-radius: 30px;
    border: none;
    background: #070b16;
    color: white;
}

footer {
    padding: 30px 0 20px;
    background: #050812;
}


.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-list a {
    text-decoration: underline;
}


footer a {
    display: block;
    color: #8d99aa;
    margin: 10px 0;
}


.copyright {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #999;
    color: #778397;
}

.header-tools {
    display: flex;
    gap: 1rem;
}

.article-header {
    padding: 0 0 15px;
}

.article-container {
    max-width: 1100px;
    margin: auto;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #68778d;
    margin-bottom: 15px;
}

.breadcrumb a:hover {
    color: #00d4ff;
}

.article-category {
    color: #00d4ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.article-header h1 {
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: -.5px;
    margin-bottom: 10px;
}

.article-deck {
    max-width: 900px;
    font-size: 20px;
    color: #9ba8ba;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    align-items: center;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #10243b;
    color: #00d4ff;
    font-weight: 800;
}

.author strong {
    display: block;
    font-size: 13px;
}

.author span {
    display: block;
    font-size: 11px;
    color: #6f7d91;
}

.meta-divider {
    width: 1px;
    height: 30px;
    background: #29364b;
}

.meta-item {
    font-size: 12px;
    color: #8794a8;
}


/* HERO */

.article-hero {
    margin-bottom: 65px;
}

.article-hero figure {
    margin: 0;
}

.article-hero img {
    height: 500px;
    max-height: 500px;
    border-radius: 24px;
}

figcaption {
    margin-top: 10px;
    font-size: 12px;
    color: #66748a;
}


/* ARTICLE LAYOUT */

.article-layout {
    display: grid;
    grid-template-columns:2.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.article-content {
    font-size: 17px;
    color: #b7c1d0;
}

.article-introduction {
    font-size: 19px;
    color: #d0d7e2;
}

.article-content h2 {
    font-size: 32px;
    line-height: 1.25;
    color: white;
    margin: 65px 0 25px;
}

.article-content h3 {
    color: white;
}

.article-list {
    padding-left: 25px;
    margin: 25px 0;
}

.article-list li {
    margin-bottom: 10px;
}

.article-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: #0e1624;
    border: 1px solid #222f43;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 17px;
    margin-bottom: 17px;
}

.toc-card a {
    display: block;
    padding: 15px 0;
    font-size: 12px;
    font-weight: bold;
    color: #7f8da1;
    border-bottom: 1px solid #1e2a3c;
    transition: .2s;
}

.toc-card a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.sidebar-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #00d4ff;
    margin-bottom: 8px;
}

.popular-list {
    padding-left: 22px;
}

.popular-list li {
    padding: 10px 0;
    font-size: 12px;
    color: #9ba7b9;
    border-bottom: 1px solid #202c3f;
}

.mini-market {
    padding: 13px 0;
    border-bottom: 1px solid #202c3f;
}

.mini-market span {
    display: block;
    font-size: 11px;
    color: #728096;
}

.mini-market strong {
    font-size: 20px;
    display: inline-block;
    margin-right: 8px;
}

.mini-market b {
    font-size: 10px;
    color: #00e676;
}


p {
    color: #9da8bb;
}

.time-str {
    margin-top: .3rem;
    color: #9d9d9d;
    font-weight: bold;
    font-size: 12px;
    display: block;
}

.article-title {
    margin-top: .3rem;
}

.search-title {

}

.search-title span {

}

.max-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.3;
}

.line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.max-line-2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.max-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.page-size {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.page-size a {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    float: left;
    background: transparent;
    border: solid 1px #ececec;
    color: #fff; /*min-width: 32px;*/
    height: 32px;
    line-height: 32px;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-decoration: auto; /*border-radius: 99px;*/
    padding: 0 15px;
}

.page-size a.is-current {
    background: #0c4b8a;
    border: solid 1px #0c4b8a;
    color: #fff;
}

.page-size span {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    float: left;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    background: #0c4b8a;
    border: solid 1px #0c4b8a;
    color: #fff; /*border-radius: 99px;*/
}

.page-size a:hover, .page-size span:hover {
    background: #0c4b8a;
    border-color: #0c4b8a;
    color: #fff;
}

.page-size ul {
    display: flex;
    gap: .5rem;
    justify-content: start;
    align-items: center;
}

.page-size ul, .page-size li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.padding-0-10 {
    padding: 0 10px;
}

.article-info p, .article-info li {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.article-info ul, .article-info li {
    list-style: disc;
}

.article-info ul {
    padding-left: 2rem;
}

.article-info table {
    width: 100%;
    font-size: 10px;
}

.article-info h1, .article-info h2, .article-info h3, .article-info h4, .article-info h5, .article-info h6 {
    font-weight: 700;
    margin: 10px 0;
    color: #000;
    line-height: 1.3;
}

.article-info h1 {
    font-size: 24px;
}

.article-info h2 {
    font-size: 22px;
}

.article-info h3 {
    font-size: 20px;
}

.article-info h4 {
    font-size: 18px;
}

.article-info h5, .article-info h6 {
    font-size: 18px;
}

.article-info a {
    color: #00e5bd;
    text-decoration: underline;
}

.article-info img {
    max-width: 450px;
    width: 100%;
    margin: 10px 0;
}

.to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: #0c4b8a;
    font-size: 2rem;
    color: #fff;
    z-index: 50;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border: none;
}

.to-top img {
    font-size: 1rem;
    height: 1rem;
    width: 1rem;
}

.to-top.show {
    opacity: 1;
    visibility: visible
}

.to-top:hover {
    opacity: .9;
    background: #00879A;
}

@media (max-width: 1000px) {
    .main-nav {
        display: none;
    }

    /*.carousel-box,*//*.carousel-slide img {*//*    height: 400px;*//*}*/
    .carousel-overlay h1 {
        font-size: 30px;
    }

    .market-grid, .topic-grid, .materials-grid, .investment-grid {
        grid-template-columns:1fr;
    }

    .news-layout, .hbm-layout, .magazine-layout, .packaging-layout {
        grid-template-columns:1fr;
    }

    .footer-grid {
        grid-template-columns:1fr;
    }

    .newsletter-section {
        flex-direction: column;
        gap: 25px;
    }

}

@media screen and (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .carousel-overlay p {
        display: none;
    }

    .carousel-overlay button {
        margin: 0;
    }

    .news-overlay h2 {
        font-size: 20px;
    }

    .news-overlay {
        padding: 15px 15px 10px;
    }

    .hbm-list div,.hbm-list a, .hbm-main div, .topic-content {
        padding: 15px;
    }

    .timeline-item {
        padding: 15px;
    }

    .timeline-year img {
        max-width: 150px;
        border-radius: 10px 0 0 10px;
    }

    .timeline-content {
        padding: 12px;
        border-radius: 0 10px 10px 0;
    }

    .mb-none {
        display: none !important;
    }

    .timeline-content h3 {
        font-size: .9rem;
    }

    .article-layout {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 24px;
    }

    section {
        margin-top: 30px;
    }
}

@media screen and (max-width: 568px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .carousel-overlay {
        padding: 10px 15px;
    }

    .carousel-overlay h1 {
        font-size: 20px;
        margin: 10px 0;
    }
}

.article-info h1, .article-info h2, .article-info h3, .article-info h4, .article-info h5, .article-info h6 {
    color: #fff;
}