/* Import Variabel Colors */
@import url('variabel.css');

/* Import Google Font - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* Menggunakan variabel dari variabel.css */
    --primary-color: var(--brand-600);
    --text-white: var(--white);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter';
    color: var(--text-default);
    line-height: 1.6;
    background-color: var(--elevation-surface-default);
    overflow-x: hidden;
    width: 100%;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--elevation-surface-default);
    padding: 12px 32px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-search {
    flex: 1;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 14px 160px 14px 20px;
    border: 2px solid var(--line-default);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.search-input::placeholder {
    color: var(--text-subtle);
}

.search-button-inside {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-button-inside:hover {
    background: var(--bg-red-bold-hov);
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.search-button-inside:active {
    transform: translateY(-50%) scale(0.98);
    box-shadow: 0 2px 6px rgba(227, 30, 36, 0.2);
}

.search-button-inside:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2);
}

.mobile-search-toggle {
    display: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-search-toggle img {
    width: 20px;
    height: 20px;
}

.mobile-filter-toggle {
    display: none;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-filter-toggle:hover {
    background: var(--bg-red-bold-hov);
}

.mobile-filter-toggle img {
    width: 20px;
    height: 20px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.header-info {
    display: flex;
    gap: 12px;
}

.line-vertikal {
    padding: 1px;
    background: var(--line-default);
}

.hotline {
    font-size: 11px;
    color: var(--text-subtle);
}

.number {
    color: var(--text-default);
    font-size: 12px;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--bg-red-bold-hov);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--elevation-surface-default);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* main wrapper */
.container-wrapper {
    display: flex;
    justify-content: center;
    padding: 64px 0;
    width: 100%;
    overflow-x: hidden;
}

.wrapper-main {
    display: flex;
    gap: 16px;
    max-width: 1208px;
    width: 100%;
}

.left-content {
    max-width: 318px;
}

.right-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 874px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: var(--bg-light);
    padding: 40px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    padding: 0 12px 30px 0;
    color: var(--text-default);
    border-bottom: 1px solid var(--line-default);
}

.topics {
    margin-top: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-default);
}

.topics h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-default);
}

.topic-list {
    list-style: none;
    max-height: 214px;
    overflow-y: auto;
    padding-right: 14px;
}

/* Custom Scrollbar untuk Topic List */
.topic-list::-webkit-scrollbar {
    width: 6px;
}

.topic-list::-webkit-scrollbar-track {
    background: var(--line-subtle);
    border-radius: 10px;
}

.topic-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.topic-list::-webkit-scrollbar-thumb:hover {
    background: var(--bg-red-bold-hov);
}

/* Firefox */
.topic-list {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--line-subtle);
}

.topic-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.topic-list li a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: var(--text-default);
    transition: all 0.3s ease;
    padding: 4px 0;
    border-radius: 4px;
}

.topic-list li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-right: 12px;
}

.count {
    margin-left: auto;
    color: var(--text-default);
    font-size: 14px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    animation: slideInFromRight 0.5s ease-in-out forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Controls Container */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-right: 8px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 45px;
    height: 7px;
    border-radius: 6px;
    background: var(--line-default);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    border-radius: 5px;
}

.dot:hover {
    background: var(--secondary-color);
}

/* Carousel Navigation Arrows */
.carousel-arrows {
    display: flex;
    gap: 8px;
}

.carousel-prev,
.carousel-next {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--elevation-surface-default);
    border: 1px solid var(--line-default);
    color: var(--text-default);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.carousel-prev:hover svg path,
.carousel-next:hover svg path {
    stroke: white;
}

.carousel-prev:disabled,
.carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-light);
}

.carousel-prev i,
.carousel-next i {
    font-size: 14px;
}

/* Featured Card */
.featured-card {
    background: var(--elevation-surface-default);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    gap: 24px;
    transition: box-shadow 0.3s ease;
}


.card-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 446px;
    max-width: 100%;
    max-height: 251px;
}

.card-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.card-content {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.category {
    display: inline-block;
    color: var(--text-brand);
    font-size: 14px;
    font-weight: 600;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-default);
    line-height: 24px;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 12px;
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-brand);
}

.author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

/* Popular Articles Section */
.popular-articles {
    margin-top: 64px;
}

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

.section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-default);
}

.see-all {
    color: var(--text-brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.see-all:hover {
    gap: 12px;
}

.see-all i {
    font-size: 12px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.article-card {
    background: var(--elevation-surface-default);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid var(--line-default);
}


.article-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.article-content {
    padding-bottom: 20px;
}

.article-content .category {
    display: inline-block;
    color: var(--text-brand);
    font-size: 12px;
    font-weight: 600;
}

.article-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-default);
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content .card-meta {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-subtle);
    margin-bottom: 42px;
    align-items: center;
}

.article-content .author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-brand);
}

.article-content .author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Hidden Articles */
.hidden-article {
    display: none;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 64px;
}

.btn-load-more {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-load-more:hover {
    background: var(--text-brand);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.btn-load-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(227, 30, 36, 0.2);
}

.btn-load-more:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.2);
}


/* Seputar Ekspor Section */
.ekspor-section {
    margin-top: 64px;
}

.ekspor-content {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 16px;
}

/* Left Column - Text Articles */
.ekspor-left {
    background: var(--elevation-surface-default);
    padding-right: 16px;
    border-right: 1px solid var(--line-default);
    max-width: 270px;
    width: 100%;
}

.text-article-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-article-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-default);
    cursor: pointer;
    transition: all 0.3s ease;

}

.text-article-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}


.text-article-item .category {
    display: inline-block;
    color: var(--text-brand);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.text-article-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-default);
    line-height: 24px;
}

.text-article-item .card-meta {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--text-subtle);
    margin-bottom: 12px;
    align-items: center;
}

.text-article-item .author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-brand);
}

.text-article-item .author img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

/* Right Column - Ekspor Carousel */
.ekspor-right {
    position: relative;
}

.ekspor-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ekspor-carousel-track {
    position: relative;
    width: 100%;
}

.ekspor-carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.ekspor-carousel-slide.active {
    display: block;
    animation: slideInFromRight 0.5s ease-in-out forwards;
}

.ekspor-carousel-slide .featured-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ekspor-carousel-slide .card-image {
    width: 100%;
}

.ekspor-carousel-slide .card-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.ekspor-carousel .card-content {
    justify-content: flex-start;
}

/* Ekspor Carousel Controls */
.ekspor-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-right: 8px;
}

.ekspor-carousel-dots {
    display: flex;
    gap: 8px;
}

.ekspor-carousel-dots .dot {
    width: 45px;
    height: 7px;
    border-radius: 6px;
    background: var(--line-default);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ekspor-carousel-dots .dot.active {
    background: var(--primary-color);
    border-radius: 5px;
}

.ekspor-carousel-dots .dot:hover {
    background: var(--secondary-color);
}

.ekspor-carousel-arrows {
    display: flex;
    gap: 8px;
}

.ekspor-carousel-prev,
.ekspor-carousel-next {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--elevation-surface-default);
    border: 1px solid var(--line-default);
    color: var(--text-default);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ekspor-carousel-prev:hover,
.ekspor-carousel-next:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.ekspor-carousel-prev:hover svg path,
.ekspor-carousel-next:hover svg path {
    stroke: white;
}

.ekspor-carousel-prev:disabled,
.ekspor-carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-light);
}

.ekspor-carousel-prev i,
.ekspor-carousel-next i {
    font-size: 14px;
}


/* Promo Section */
.promo-section {
    margin-top: 64px;
    max-width: 874px;
    /* Match right-content width */
    width: 100%;
    overflow: hidden;
}

.promo-section .section-header {
    display: flex;
    gap: 12px;
    justify-content: left;
    align-items: center;
}

.promo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.promo-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    padding-bottom: 8px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.promo-carousel-track::-webkit-scrollbar {
    display: none;
}

.promo-carousel-slide {
    flex: 0 0 auto;
    min-width: 300px;
    max-width: 636px;
    width: 100%;
    opacity: 1;
    transition: transform 0.3s ease;
}

.promo-carousel-slide img {
    width: 100%;
    max-width: 636px;
    height: 248px;
    display: block;
    border-radius: 12px;
}

/* Promo Carousel Controls */
.promo-carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-right: 8px;
}

.promo-carousel-dots {
    display: flex;
    gap: 8px;
}

.promo-carousel-dots .dot {
    width: 45px;
    height: 7px;
    border-radius: 6px;
    background: var(--line-default);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-carousel-dots .dot.active {
    background: var(--primary-color);
    border-radius: 5px;
}

.promo-carousel-dots .dot:hover {
    background: var(--secondary-color);
}

.promo-carousel-arrows {
    display: flex;
    gap: 8px;
}

.promo-carousel-prev,
.promo-carousel-next {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--elevation-surface-default);
    border: 1px solid var(--line-default);
    color: var(--text-default);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-carousel-prev:hover,
.promo-carousel-next:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.promo-carousel-prev:hover svg path,
.promo-carousel-next:hover svg path {
    stroke: white;
}

.promo-carousel-prev:disabled,
.promo-carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-light);
}

.promo-carousel-prev i,
.promo-carousel-next i {
    font-size: 14px;
}

/* visit section */
.visit-section {
    background: var(--line-danger-subtlest);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1208px;
    margin: 0 auto 64px auto;
}

.visit-section h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-default);
}

.visit-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Help Center Section */
.help-center-section {
    margin-top: 64px;
    max-width: 858px;
    width: 100%;
    overflow: hidden;
}

.help-center-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-default);
}

.help-center-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
}

.help-center-grid::-webkit-scrollbar {
    display: none;
}

.help-center-card {
    width: 214px;
    height: 191px;
    padding: 8px 12px;
    position: relative;
    border-radius: 8px;
    background: linear-gradient(99.93deg,
            #FF97A3 -68.66%,
            rgba(255, 207, 207, 0.8) 15.46%,
            rgba(255, 202, 203, 0.248891) 64.04%,
            rgba(255, 136, 146, 0.232847) 100.24%,
            rgba(255, 200, 206, 0.32) 107.12%,
            rgba(255, 0, 28, 0.2) 107.12%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    flex-shrink: 0;
}

.help-center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.help-center-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 135px;
    line-height: 24px;
}

.help-center-card .star-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 93px;
    height: 100px;
}

.help-center-card .item-icon {
    position: absolute;
    bottom: 0px;
    right: 10px;
    width: 120px;
    height: 120px;
}


/* Footer */
.footer {
    color: var(--text-default);
    padding: 32px 64px;
    border-top: 1px solid var(--line-default);
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer p {
    font-size: 12px;
    color: var(--text-dark);
}


/* Responsive Design */
@media (max-width: 1040px) {

    /* Container */
    .container {
        padding: 0 48px;
    }

    .container-wrapper {
        padding: 48px 0;
    }

    /* Main Layout */
    .wrapper-main {
        gap: 20px;
    }

    .left-content {
        max-width: 280px;
        min-width: 280px;
    }

    .right-content {
        max-width: 676px;
        gap: 56px;
    }

    /* Header */
    .header .container {
        padding: 0px;
    }

    .search-input {
        width: 100%;
        padding: 10px 0 10px 10px;
        border: 2px solid var(--line-default);
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        outline: none;
    }

    .search-button-inside {
        font-size: 12px;
        padding: 6px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 24px;
        margin-bottom: 5px;
        padding: 0 0px 20px 0;
    }

    .logo-img {
        height: 32px;
    }

    .popular-articles {
        margin-top: 24px;
    }

    /* Topics Sidebar */
    .topics {
        padding: 0;
    }

    .topics h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .count {
        font-size: 12px;
    }

    /* Hero Carousel */


    .featured-card {
        gap: 16px;
    }

    .featured-card .card-image {
        width: 351px;
        max-width: 100%;
        height: 100%;
    }

    .card-content {
        padding: 18px 0;
    }

    .card-content h3 {
        font-size: 13px;
        line-height: 18px;
    }

    .card-meta {
        font-size: 13px;
    }

    .author img {
        width: 30px;
        height: 30px;
    }

    .carousel-arrows button {
        width: 38px;
        height: 38px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
    }

    /* Articles Grid */
    .articles-grid {
        gap: 0;
    }

    .article-image {
        width: 100%;
        max-width: 213px;
        height: auto;
    }

    .article-content {
        padding-bottom: 12px;
    }

    .article-content h3 {
        font-size: 12px;
        line-height: 18px;
    }

    .article-content .card-meta {
        margin-bottom: 18px;
        font-size: 11px;
        gap: 4px;
    }

    .category {
        font-size: 11px;
    }

    /* Buttons */
    .btn-load-more {
        padding: 11px 26px;
        font-size: 14px;
    }

    /* Banner */
    .banner-app {
        width: 100%;
        max-width: 676px;
        height: auto;
    }

    /* Ekspor Section */
    .text-article-item {
        padding: 8px;
    }

    .text-article-item h3 {
        font-size: 15px;
        line-height: 1.4;
    }

    .ekspor-carousel .card-image {
        height: 200px;
    }

    /* Promo Section */
    .promo-section {
        max-width: 676px;
    }

    .promo-carousel-slide img {
        height: 220px;
    }

    /* Help Center */
    .help-center-section {
        margin-top: 32px;
    }

    .help-center-card {
        width: 214px;
        height: 191px;
        padding: 12px;
        border-radius: 6px;
    }

    .help-center-card h3 {
        font-size: 20px;
    }

    .help-center-card .item-icon {
        width: 100px;
        height: 100px;
    }

    .help-center-card .star-icon {
        width: 85px;
        height: 92px;
    }

    /* Visit Section */
    .visit-section {
        margin: 24px;
    }

    /* Footer */
    .footer {
        padding: 28px 52px;
    }

    .footer img {
        height: 36px;
    }

    .footer p {
        font-size: 11px;
    }
}

@media (max-width: 820px) {

    /* Container */
    .header .container {
        padding: 0 32px;
    }

    .container-wrapper {
        padding: 40px 32px;
    }

    .wrapper-main {
        flex-direction: column;
        padding: 0;
    }

    .left-content {
        display: none;
    }

    .right-content {
        gap: 48px;
        max-width: 100%;
        width: 100%;
    }

    /* Mobile Filter Toggle Button */

    .mobile-filter-toggle {
        display: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background-color: var(--elevation-surface-default);
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
    }

    .header-search.active~.mobile-filter-toggle {
        display: flex;
        position: fixed;
        right: 32px;
        top: 75px;
        transform: none;
    }

    .mobile-search-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }


    .header-search {
        order: 4;
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .header-search.active {
        max-height: 100px;
        opacity: 1;
        padding: 0;
        flex-basis: 100%;
        max-width: calc(100% - 85px);
        margin-left: 0;
    }

    .search-input {
        padding: 16px 170px 16px 16px;
        font-size: 15px;
        width: 100%;
    }

    .search-button-inside {
        padding: 10px 16px;
        font-size: 13px;
        right: 12px;
        top: 50%;
    }

    /* Header */
    .header {
        padding: 16px 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 16px;
        position: relative;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo-img {
        height: 38px;
    }

    /* Hide header-right in mobile */
    .header-right {
        display: none !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 24px;
    }

    /* Topics */
    .topics {
        padding: 20px;
    }

    .topics h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .topic-list li a {
        padding: 10px 0;
        font-size: 15px;
    }

    .count {
        font-size: 13px;
    }

    /* Hero Carousel */
    .hero-carousel {
        height: auto;
        border-radius: 16px;
    }

    .featured-card {
        flex-direction: column;
        gap: 0;
    }

    .featured-card .card-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
    }

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

    .card-content {
        padding: 16px;
    }

    .card-content h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .card-meta {
        font-size: 13px;
        gap: 4px;
    }

    .author {
        margin-top: 14px;
    }

    .author img {
        width: 32px;
        height: 32px;
    }

    .author span {
        font-size: 13px;
    }

    .carousel-controls {
        padding: 12px 0;
    }

    .carousel-arrows button {
        width: 38px;
        height: 38px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 24px;
    }

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

    /* Articles Grid - 2 columns */
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .article-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 180px;
    }

    .article-content {
        padding-bottom: 16px;
    }

    .article-content .category {
        font-size: 12px;
    }

    .article-content h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .article-content .card-meta {
        font-size: 12px;
        margin-bottom: 28px;
    }

    .article-content .author {
        font-size: 12px;
        margin-top: 24px;
        gap: 6px;
    }

    .article-content .author img {
        width: 20px;
        height: 20px;
    }

    /* Load More Button */
    .btn-load-more {
        padding: 12px 32px;
        font-size: 15px;
    }

    /* Banner */
    .banner-app {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Ekspor Section */
    .ekspor-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ekspor-left {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--line-default);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .ekspor-right {
        width: 100%;
    }

    .ekspor-carousel .card-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }

    .ekspor-carousel .card-content {
        padding: 16px;
    }

    .ekspor-carousel .card-content h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .ekspor-carousel .card-content .card-meta {
        font-size: 12px;
    }


    /* Promo Section */
    .promo-carousel-slide {
        max-width: 100%;
        min-width: 350px;
        width: 100%;
    }

    .promo-carousel-slide img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 220px;
    }


    /* Help Center */
    .help-center-card {
        width: 230px;
        height: 205px;
        padding: 14px;
        border-radius: 8px;
    }

    .help-center-card h3 {
        font-size: 21px;
    }

    .help-center-card .star-icon {
        width: 80px;
        height: 85px;
    }

    .help-center-card .item-icon {
        width: 110px;
        height: 110px;
    }

    /* Visit Section */
    .visit-section {
        margin: 32px;
        padding: 32px 28px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .visit-section h5 {
        font-size: 22px;
    }

    .visit-section p {
        font-size: 15px;
    }

    .visit-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Footer */
    .footer {
        padding: 28px 32px;

    }

    .footer img {
        height: 36px;
    }

    .footer p {
        font-size: 12px;
    }
}

@media (max-width: 640px) {

    /* Container */
    .header .container {
        padding: 0 24px;
    }

    .container-wrapper {
        padding: 32px 24px;
    }

    .wrapper-main {
        flex-direction: column;
        padding: 0;
    }

    .left-content {
        display: none;
    }

    .right-content {
        gap: 40px;
        max-width: 576px;

    }

    /* Mobile Filter Toggle Button */

    .mobile-filter-toggle {
        display: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background-color: var(--elevation-surface-default);
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 47px;
        height: 47px;
    }

    .header-search.active~.mobile-filter-toggle {
        display: flex;
        position: fixed;
        right: 24px;
        top: 70px;
        transform: none;
    }

    .mobile-search-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }


    .header-search {
        order: 4;
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .header-search.active {
        max-height: 100px;
        opacity: 1;
        padding: 0;
        flex-basis: 100%;
        max-width: calc(100% - 72px);
        margin-left: 0;
    }

    .search-input {
        padding: 14px 160px 14px 12px;
        font-size: 14px;
        width: 100%;
    }

    .search-button-inside {
        padding: 8px 12px;
        font-size: 12px;
        right: 12px;
        top: 50%;
    }

    /* Header */
    .header {
        padding: 14px 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 14px;
        position: relative;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo-img {
        height: 34px;
    }

    /* Hide header-right in mobile */
    .header-right {
        display: none !important;
    }

    /* Hero Section */
    .hero-title {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    /* Topics */
    .topics {
        padding: 18px;
    }

    .topics h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .topic-list li a {
        padding: 9px 0;
        font-size: 14px;
    }

    .count {
        font-size: 12px;
    }

    /* Hero Carousel */
    .hero-carousel {
        height: auto;
        border-radius: 14px;
    }

    .card-image {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .card-meta {
        font-size: 11px;
        gap: 2px;
    }

    .author {
        margin-top: 12px;
    }

    .author img {
        width: 28px;
        height: 28px;
    }

    .author span {
        font-size: 11px;
    }

    .carousel-controls {
        padding: 8px 0;
    }

    .carousel-arrows button {
        width: 34px;
        height: 34px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 18px;
    }

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

    /* Articles Grid - 2 columns */
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .article-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .article-content .category {
        font-size: 10px;
    }

    .article-content h3 {
        font-size: 10px;
        line-height: 15px;
    }

    .article-content .card-meta {
        font-size: 10px;
    }

    .article-content .author {
        font-size: 10px;
        margin-top: 20px;
        gap: 4px;
    }

    .article-content .author img {
        width: 16px;
        height: 16px;
    }

    /* Load More Button */
    .btn-load-more {
        padding: 10px 24px;
        font-size: 14px;
    }

    /* Banner */
    .banner-app {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Ekspor Section */
    .ekspor-carousel .card-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .ekspor-carousel .card-content {
        padding: 0;
    }

    .ekspor-carousel .card-content h3 {
        font-size: 12px;
    }

    .ekspor-carousel .card-content .card-meta {
        font-size: 10px;
    }


    /* Promo Section */
    .promo-carousel-slide {
        max-width: 100%;
        min-width: 280px;
        width: 100%;
    }

    .promo-carousel-slide img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 192px;
    }


    /* Help Center */
    .help-center-card {
        width: 214px;
        height: 191px;
        padding: 12px;
        border-radius: 6px;
    }

    .help-center-card .star-icon {
        width: 70px;
        height: 75px;
    }

    /* Visit Section */
    .visit-section {
        margin: 24px;
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .visit-section h5 {
        font-size: 19px;
    }

    .visit-section p {
        font-size: 14px;
    }

    .visit-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 26px 28px;

    }

    .footer img {
        height: 34px;
    }

    .footer p {
        font-size: 11px;
    }
}

@media (max-width: 560px) {

    /* Articles Grid - single column for smaller screens */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {

    /* Better responsive for medium mobile phones */
    .right-content {
        gap: 32px;
        max-width: 100%;
    }

    /* Articles Grid - 1 column for small screens */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-image {
        width: 100%;
        max-width: 100%;
         max-height: 194px;
         border-radius: 8px;
    }

    /* Promo Section */
    .promo-carousel-slide {
        min-width: 100%;
        max-width: 100%;
    }

    .promo-carousel-slide img {
        height: auto;
        min-height: 180px;
    }

    /* Featured card stack */
    .featured-card {
        flex-direction: column;
        gap: 4px;
    }

    .featured-card .card-image {
        width: 100%;
        max-width: 100%;
        max-height: 194px;
        border-radius: 8px;
    }
        .card-content {
        padding: 4px 12px;
    }

     /* Ekspor Section */
    .ekspor-content {
        grid-template-columns: 1fr;
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

    .ekspor-left {
        order: 2;
        border-right: none;
        padding-right: 0;
        max-width: 100%;
    }

    .ekspor-right {
        order: 1;
    }

    .carousel-controls {
        padding: 6px 0;
    }

    .carousel-arrows button {
        width: 30px;
        height: 30px;
    }

    .carousel-controls {
        justify-content: center;
        position: relative;
    }

    .carousel-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .carousel-arrows {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .carousel-dots .dot {
        width: 25px;
        height: 5px;
    }
}

@media (max-width: 375px) {

    /* Container */
    .header .container {
        padding: 0 16px;
    }

    .container-wrapper {
        padding: 20px 16px;
    }

    .wrapper-main {
        flex-direction: column;
        padding: 0;
    }

    .left-content {
        display: none;
    }

    .right-content {
        gap: 24px;
        max-width: 343px;
        width: 100%;
    }

    /* Header */
    .header {
        padding: 12px 0 0 0;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 12px;
        position: relative;
        align-items: center;

    }

    .logo {
        flex: 0 0 auto;
    }

    .logo-img {
        height: 28px;
    }

    /* Hide header-right in mobile */
    .header-right {
        display: none !important;
    }

    /* Show mobile search toggle button */
    .mobile-search-toggle {
        display: flex;
        width: 34px;
        height: 34px;
        margin-left: auto;
        order: 2;
    }

    .mobile-search-toggle i {
        font-size: 15px;
    }

    /* Hide search by default */
    .header-search {
        order: 3;
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    /* Show search when active */

    .search-button-inside {
        padding: 6px 10px;
        font-size: 11px;
        right: 6px;
        top: 50%;
    }

    /* Hero Carousel */
    .hero-carousel {
        height: auto;
        border-radius: 12px;
    }

    .featured-card {
        flex-direction: column;
        min-height: auto;
        gap: 0;
    }

    .featured-card .card-image {
        width: 100%;
        max-width: 100%;
        height: 194px;
    }

    .card-content {
        padding: 4px 12px;
    }

    .card-content h3 {
        font-size: 14px;
        line-height: 1.4;
    }

    .card-meta {
        font-size: 10px;
        gap: 2px;
    }

    .author {
        margin-top: 0;
    }

    .author img {
        width: 24px;
        height: 24px;
    }

    .carousel-controls {
        padding: 6px 0;
    }

    .carousel-arrows button {
        width: 30px;
        height: 30px;
    }

    .carousel-controls {
        justify-content: center;
        position: relative;
    }

    .carousel-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .carousel-arrows {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .carousel-dots .dot {
        width: 25px;
        height: 5px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 14px;
    }

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

    .see-all {
        font-size: 11px;
        gap: 3px;
    }

    /* Articles Grid */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .article-image {
        width: 100%;
        max-width: 100%;
        height: 194px;
    }

    .article-content {
        padding-bottom: 10px;
    }

    .article-content .category {
        font-size: 12px;
    }

    .article-content h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .article-content .card-meta {
        font-size: 10px;
        gap: 2px;
    }

    .article-content .author {
        margin-top: 5px;
        gap: 8px;
    }

    .article-content .author img {
        width: 24px;
        height: 24px;
    }

    /* Buttons */
    .btn-load-more {
        padding: 8px 20px;
        font-size: 12px;
    }

    /* Banner */
    .banner-app {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Ekspor Section */
    .ekspor-content {
        grid-template-columns: 1fr;
        gap: 16px;
        display: flex;
        flex-direction: column;
    }

    .ekspor-left {
        order: 2;
        border-right: none;
        padding-right: 0;
        max-width: 100%;
    }

    .ekspor-right {
        order: 1;
    }

    .text-article-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .text-article-item {
        padding: 0 0 12px 0;
    }

    .text-article-item h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .text-article-item .card-meta {
        font-size: 10px;
    }

    .text-article-item .category {
        font-size: 12px;
        margin-bottom: 0;
    }

    .author span {
        font-size: 14px;
    }


    .ekspor-carousel .card-image {
        width: 100%;
        max-width: 100%;
        height: 194px;
    }

    .ekspor-carousel .card-content {
        padding: 0;
    }

    .ekspor-carousel .card-content h3 {
        font-size: 14px;
    }

    .ekspor-carousel .card-content .card-meta {
        font-size: 10px;
    }

    .ekspor-carousel-controls {
        padding: 8px 0;
        justify-content: center;
        position: relative;
    }

    .ekspor-carousel-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .ekspor-carousel-arrows {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .ekspor-carousel-dots .dot {
        width: 25px;
        height: 5px;
    }

    /* Promo Section */
    .promo-section {
        margin-top: 24px;
    }

    .promo-carousel-slide {
        max-width: 100%;
        min-width: 250px;
        width: 100%;
    }

    .promo-carousel-slide img {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 160px;
        border-radius: 12px;
    }

    .promo-carousel-controls {
        justify-content: center;
        position: relative;
    }

    .promo-carousel-dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .promo-carousel-arrows {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .promo-carousel-dots .dot {
        width: 25px;
        height: 5px;
    }

    /* Help Center */
    .help-center-section {
        margin-top: 24px;
    }

    .help-center-card {
        width: 137px;
        height: 123px;
        padding: 8px;
        border-radius: 6px;
    }

    .help-center-card h3 {
        font-size: 13px;
    }

    .help-center-card .item-icon {
        width: 75px;
        height: 75px;
        right: 0;
    }

    .help-center-card .star-icon {
        width: 60px;
        height: 65px;
    }

    /* Visit Section */
    .visit-section {
        margin: 20px 16px;
        padding: 20px 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .visit-section h5 {
        font-size: 16px;
    }

    .visit-section p {
        font-size: 12px;
    }

    .visit-btn {
        width: 100%;
        font-size: 12px;
        padding: 10px 20px;
    }

    /* Footer */
    .footer {
        padding: 20px 16px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer img {
        height: 67px;
    }

    .footer p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Mobile Filter Toggle Button */
    .mobile-filter-toggle {
        display: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background-color: var(--elevation-surface-default);
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
    }

    .header-search.active~.mobile-filter-toggle {
        display: flex;
        position: fixed;
        right: 16px;
        top: 58px;
        transform: none;
    }

    .mobile-search-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }


    .header-search {
        order: 4;
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0;
        margin: 0;
        position: relative;
    }

    .header-search.active {
        max-height: 50px;
        opacity: 1;
        padding: 0;
        flex-basis: 100%;
        max-width: calc(100% - 58px);
        margin-left: 0;
        margin-bottom: 10px;
    }

    .search-input {
        font-size: 12px;
        padding: 12px 140px 12px 10px;
        width: 100%;
    }
}

/* Filter Modal Styles */
.filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.filter-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-modal-content {
    background: var(--elevation-surface-default);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideInFromBottom 0.3s ease;
}

.filter-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--line-default);
}

.filter-modal-header h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-default);
    margin: 0;
}

.filter-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-default);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.filter-modal-close:hover {
    color: var(--primary-color);
}

.filter-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.topic-list-modal {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list-modal li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.topic-list-modal li a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: var(--text-default);
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 4px;
}

.topic-list-modal li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.topic-list-modal .bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-right: 12px;
}

.topic-list-modal .count {
    margin-left: auto;
    color: var(--text-default);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}