* {
    scrollbar-color: color-mix(in oklch, currentColor 35%, transparent) transparent;
}

/* --- GLOBAL --- */
.vn-tab-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
}

/* --- TAB HEADER (DESKTOP) --- */
.vn-tab-header {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vn-tab-item {
    cursor: pointer;
    text-align: center;
    position: relative;
    padding-bottom: 5px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.vn-tab-item:hover { transform: translateY(-5px); }
.vn-tab-item.active { opacity: 1; }
.vn-tab-item.active .vn-tab-title { color: #e60023; }

.vn-tab-icon {
    max-width: 166px; width: 100%; height: auto;
    margin: 0 auto 8px; display: flex; align-items: center; justify-content: center;
}
.vn-tab-icon img {
    display: block; width: 100%; height: auto; object-fit: contain;
    filter: grayscale(100%); opacity: 0.6; transition: all 0.4s ease;
}
.vn-tab-item:hover .vn-tab-icon img,
.vn-tab-item.active .vn-tab-icon img { filter: grayscale(0%); opacity: 1; }

.vn-tab-title { font-weight: 600; font-size: 15px; color: #444; display: block; margin-top: 5px; }

/* Ẩn theo option */
.vn-tab-wrapper.vn-hide-title .vn-tab-title { display: none !important; }
.vn-tab-wrapper.vn-hide-image .vn-tab-icon { display: none !important; }

/* --- MOBILE MENU (MỚI) --- */
.vn-mobile-nav-container {
    /* QUAN TRỌNG: Force ẩn trên desktop */
    display: none !important; 
    position: relative; margin-bottom: 20px; z-index: 100;
}

.vn-mobile-bar { display: flex; align-items: center; gap: 15px; }
.vn-mobile-menu-btn {
    width: 44px; height: 44px; background: #fff; border: 1px solid #ddd;
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 24px; color: #333; transition: 0.3s;
}
.vn-mobile-menu-btn:hover { background: #f9f9f9; color: #e60023; }
.vn-mobile-current-text { font-weight: bold; font-size: 18px; color: #333; }

.vn-mobile-dropdown {
    display: none; position: absolute; top: 55px; left: 0; width: 250px;
    background: #fff; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px; overflow: hidden;
}
.vn-mobile-dropdown.open { display: block; animation: fadeInDown 0.3s ease; }
.vn-mobile-dropdown ul { list-style: none; margin: 0; padding: 0; }
.vn-mobile-dropdown li {
    padding: 10px 15px; border-bottom: 1px solid #f5f5f5; cursor: pointer;
    display: flex; align-items: center; gap: 12px; transition: background 0.2s;
}
.vn-mobile-dropdown li:hover, .vn-mobile-dropdown li.active { background: #fff5f6; }
.vn-mobile-dropdown li.active .vn-dd-title { color: #e60023; font-weight: bold; }
.vn-dd-img { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.vn-dd-img img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); }
.vn-mobile-dropdown li:hover .vn-dd-img img, .vn-mobile-dropdown li.active .vn-dd-img img { filter: grayscale(0%); }
.vn-dd-title { font-size: 14px; color: #444; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* --- CONTENT --- */
.vn-section-title { text-align: center; margin-bottom: 30px; font-size: 32px; font-weight: 700; color: #222; }

.vn-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; transition: opacity 0.3s; }
.vn-post-item { position: relative; border-radius: 16px; overflow: hidden; background: #000; aspect-ratio: 16/9; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.vn-post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; opacity: 0.9; }
.vn-post-item:hover .vn-post-thumb img { transform: scale(1.08); }
.vn-post-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); pointer-events: none; }
.vn-post-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px; z-index: 2; box-sizing: border-box; }
.vn-post-content h3 { margin: 0 0 5px; line-height: 1.2; }
.vn-post-content h3 a { color: #fff; text-decoration: none; font-size: 20px; font-weight: 700; display: block; }
.vn-post-content .excerpt { color: rgba(255,255,255,0.9); font-size: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Loader */
.vn-loader { text-align: center; padding: 30px 0; display: none; }
.vn-loader img { width: 40px; height: 40px; object-fit: contain; animation: vn-spin 1s linear infinite; }
@keyframes vn-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* View More Link */
.vn-view-more-wrap { text-align: center; margin-top: 40px; }
.vn-view-more-link {
    display: inline-block; background: #e60023; color: #fff !important; border: none; padding: 12px 45px;
    border-radius: 50px; font-weight: 600; font-size: 15px; cursor: pointer; transition: 0.3s; text-decoration: none !important; text-transform: uppercase;
}
.vn-view-more-link:hover { background: #b3001b; box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3); transform: translateY(-2px); }

/* --- EXPLORE GRID --- */
.vn-explore-wrapper { margin-top: 60px; margin-bottom: 40px; }
.vn-explore-header { text-align: center; font-size: 32px; font-weight: 400; margin-bottom: 30px; color: #222; }
.vn-explore-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.vn-explore-item { position: relative; border-radius: 12px; overflow: hidden; height: 220px; background: #000; }
.vn-explore-item:nth-child(-n+3) { width: calc((100% - 40px) / 3); }
.vn-explore-item:nth-child(n+4) { width: calc((100% - 60px) / 4); height: 180px; }
.vn-explore-link { display: block; width: 100%; height: 100%; position: relative; text-decoration: none; }
.vn-explore-thumb { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.5s ease; opacity: 0.9; }
.vn-explore-item:hover .vn-explore-thumb { transform: scale(1.05); opacity: 0.7; }
.vn-explore-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); pointer-events: none; }
.vn-explore-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 15px 20px; box-sizing: border-box; z-index: 2; }
.vn-explore-title { color: #fff; font-size: 16px; line-height: 1.3; font-weight: 600; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }

/* --- MOBILE RESPONSIVE (Max 768px) --- */
@media (max-width: 768px) {
    /* Ẩn Tab Header Desktop */
    .vn-tab-header { display: none !important; }
    
    /* --- THANH MENU MOBILE DÍNH (STICKY) --- */
    .vn-mobile-nav-container { 
        display: inline-block !important; /* Chỉ rộng bằng nội dung, không chiếm full dòng */
        
        /* Kích hoạt chế độ dính */
        position: -webkit-sticky;
        position: sticky;
        
        /* CHỈNH KHOẢNG CÁCH VỚI HEADER TẠI ĐÂY */
        /* Nếu header web của bạn cao 60px, hãy để top: 70px hoặc 80px */
        top: 80px; 
        
        z-index: 990; /* Thấp hơn header chính (thường là 9999) nhưng cao hơn bài viết */
        margin-bottom: 20px;
    }

    /* Khung chứa nút bấm và chữ */
    .vn-mobile-bar {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.95); /* Nền trắng hơi trong suốt */
        padding: 5px 15px 5px 5px; /* Padding gọn gàng */
        border-radius: 50px; /* Bo tròn như viên thuốc */
        box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Bóng đổ nổi bật */
        border: 1px solid #eee;
    }

    /* Style nút bấm (Icon) */
    .vn-mobile-menu-btn {
        width: 40px; height: 40px; 
        background: #e60023; /* Màu đỏ nổi bật cho nút */
        border: none;
        border-radius: 50%; /* Hình tròn */
        display: flex; align-items: center; justify-content: center;
        cursor: pointer; 
        color: #fff; /* Icon màu trắng */
        transition: 0.3s;
        flex-shrink: 0;
    }
    
    .vn-mobile-menu-btn:hover {
        background: #b3001b;
        transform: scale(1.05);
    }
    
    /* Chữ hiển thị tên Tab bên cạnh */
    .vn-mobile-current-text {
        font-weight: 700;
        font-size: 15px;
        color: #333;
        white-space: nowrap; /* Không xuống dòng */
    }

    /* Menu xổ xuống */
    .vn-mobile-dropdown {
        display: none; 
        position: absolute; 
        top: 55px; /* Cách nút bấm 1 chút */
        left: 0; 
        width: 260px; /* Độ rộng menu */
        background: #fff; 
        border: 1px solid #eee; 
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        border-radius: 12px; 
        overflow: hidden;
    }
    
    .vn-mobile-dropdown.open { display: block; animation: fadeInDown 0.3s ease; }

    /* Nội dung menu */
    .vn-mobile-dropdown ul { list-style: none; margin: 0; padding: 0; }
    .vn-mobile-dropdown li {
        padding: 12px 15px; border-bottom: 1px solid #f5f5f5; cursor: pointer;
        display: flex; align-items: center; gap: 12px; transition: background 0.2s;
    }
    .vn-mobile-dropdown li:hover, .vn-mobile-dropdown li.active { background: #fff0f1; } /* Nền đỏ nhạt khi hover */
    .vn-mobile-dropdown li.active .vn-dd-title { color: #e60023; font-weight: bold; }
    
    /* Grid 1 cột */
    .vn-post-grid { grid-template-columns: 1fr; margin-top: 10px;}
    
    .vn-explore-item:nth-child(n) { width: 100%; height: 200px; }
    .vn-explore-header { font-size: 24px; }
}

/* Tablet (Explore) */
@media (max-width: 991px) {
    .vn-explore-item:nth-child(n) { width: calc((100% - 20px) / 2); height: 200px; }
}


/* --- SECTION TITLE --- */
.vn-section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}


/* --- GRID BÀI VIẾT (2 CỘT) --- */
.vn-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vn-post-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.vn-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.9;
}
.vn-post-item:hover .vn-post-thumb img {
    transform: scale(1.08);
}
.vn-post-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    pointer-events: none;
}
.vn-post-content {
    position: absolute; bottom: 0; left: 0;
    width: 100%; padding: 25px; z-index: 2; box-sizing: border-box;
}
.vn-post-content h3 {
    margin: 0 0 5px; /* Giảm khoảng cách dưới tiêu đề */
    line-height: 1.2; /* Kéo các dòng lại gần nhau (Cũ là 1.4 hoặc default) */
}

/* Chỉnh lại tiêu đề link */
.vn-post-content h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 20px; /* Có thể giảm xuống 18px nếu muốn gọn hơn */
    font-weight: 400;
    display: block; /* Giúp line-height hoạt động tốt */
}

/* Ẩn mô tả nếu class này được thêm vào (Fallback CSS) */
.vn-hide-desc .excerpt {
    display: none !important;
}
.vn-post-content .excerpt {
    color: rgba(255,255,255,0.9); font-size: 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}


/* --- BUTTON --- */
.vn-view-more-wrap { text-align: center; margin-top: 40px; }
#vn-load-more {
    background: #e60023; color: #fff; border: none;
    padding: 12px 45px; border-radius: 50px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    transition: 0.3s;
}
#vn-load-more:hover { background: #b3001b; }

/* --- LOADER --- */
.vn-loader {
    text-align: center;
    padding: 30px 0;
    display: none; /* Mặc định ẩn, JS sẽ hiện khi cần */
}

/* Định dạng kích thước icon loading */
.vn-loader img {
    width: 40px; /* Kích thước icon, bạn có thể chỉnh to nhỏ tùy ý */
    height: 40px;
    object-fit: contain;
    
    /* Hiệu ứng xoay tròn vô tận */
    animation: vn-spin 1s linear infinite;
}

/* Định nghĩa chuyển động xoay */
@keyframes vn-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .vn-tab-header {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0 20px 0;
        /* Ẩn scrollbar */
        -ms-overflow-style: none; scrollbar-width: none;
    }
    .vn-tab-header::-webkit-scrollbar { display: none; }
    
    .vn-tab-item { margin-right: 15px; }
    
    /* Mobile: Hình nhỏ lại chút cho cân đối */
    .vn-tab-icon { max-width: 100px; } 
    
    .vn-post-grid { grid-template-columns: 1fr; } /* 1 cột */
}

/* --- MOBILE MENU & STICKY FEATURES (NEW) --- */

/* 1. Nút Menu Mobile (Mặc định ẩn trên PC) */
#vn-mobile-menu-btn {
    display: none;
    background: #fff;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    color: #333;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 101;
    border-right: 1px solid #eee;
    height: 100%; /* Full chiều cao của header */
}

/* 2. Menu Dọc (Dropdown) - Mặc định ẩn */
.vn-mobile-dropdown {
    display: none; /* Ẩn */
    position: absolute;
    top: 100%; /* Nằm ngay dưới header */
    left: 0;
    width: 250px; /* Độ rộng menu */
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.vn-mobile-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vn-mobile-dropdown li {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: background 0.2s;
}

.vn-mobile-dropdown li:hover,
.vn-mobile-dropdown li.active {
    background: #f9f9f9;
    color: #e60023;
    font-weight: bold;
}

/* =========================================
   SECTION EXPLORE MORE
   ========================================= */

.vn-explore-wrapper {
    margin-top: 60px;
    margin-bottom: 40px;
}

.vn-explore-header {
    text-align: center;
    font-size: 32px;
    font-weight: 400; /* Font mỏng như hình */
    margin-bottom: 30px;
    color: #222;
}

.vn-explore-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Khoảng cách giữa các ô */
}

.vn-explore-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px; /* Chiều cao cố định */
    background: #000;
}

/* =========================================
   SECTION EXPLORE MORE
   ========================================= */

.vn-explore-wrapper {
    margin-top: 60px;
    margin-bottom: 40px;
}

.vn-explore-header {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #222;
}

/* Grid Container */
.vn-explore-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Khoảng cách chuẩn giữa các ô */
}

.vn-explore-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    background: #000;
}

/* --- LOGIC LAYOUT: 3 TRÊN - 4 DƯỚI --- */

/* 3 Bài đầu tiên (Hàng 1) */
/* Công thức: (100% - (2 khoảng gap * 20px)) / 3 cột */
.vn-explore-item:nth-child(-n+3) {
    width: calc((100% - 40px) / 3);
}

/* Các bài từ thứ 4 trở đi (Hàng 2) */
/* Công thức: (100% - (3 khoảng gap * 20px)) / 4 cột */
.vn-explore-item:nth-child(n+4) {
    width: calc((100% - 60px) / 4);
    height: 180px; /* Hàng dưới thường nhỏ hơn chút cho đẹp (Optional) */
}


/* Link & Content Styling */
.vn-explore-link {
    display: block; width: 100%; height: 100%;
    position: relative; text-decoration: none;
}

.vn-explore-thumb {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease; opacity: 0.9;
}

.vn-explore-item:hover .vn-explore-thumb {
    transform: scale(1.05); opacity: 0.7;
}

.vn-explore-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); pointer-events: none;
}

.vn-explore-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 15px 20px; box-sizing: border-box; z-index: 2;
}

.vn-explore-title {
    color: #fff; font-size: 16px; line-height: 1.3; font-weight: 600; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    /* Tablet: Tất cả về 2 cột */
    .vn-explore-item:nth-child(n) {
        width: calc((100% - 20px) / 2);
        height: 200px;
    }
}

@media (max-width: 600px) {
    /* Mobile: 1 cột */
    .vn-explore-item:nth-child(n) {
        width: 100%;
        height: 200px;
    }
    .vn-explore-header { font-size: 24px; }
}

/* --- MOBILE RESPONSIVE CHO EXPLORE MORE --- */
@media (max-width: 991px) {
    /* Tablet: 2 cột đều */
    .vn-explore-item:nth-child(n) {
        width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    /* Mobile: 1 cột full */
    .vn-explore-item:nth-child(n) {
        width: 100%;
        height: 200px;
    }
    
    .vn-explore-header {
        font-size: 24px;
    }
}

/* --- MOBILE STICKY BUTTON & DROPDOWN --- */

/* Wrapper chứa nút Sticky */
.vn-sticky-container {
    position: fixed; /* Dính màn hình */
    top: 120px; /* Vị trí cách đỉnh, chỉnh số này để né Header của web bạn */
    left: 0;
    z-index: 9999;
    
    /* Hiệu ứng trượt */
    transform: translateX(-120%); /* Mặc định giấu bên trái */
    transition: transform 0.3s ease-in-out;
}

/* Khi JS thêm class này thì hiện ra */
.vn-sticky-container.is-visible {
    transform: translateX(0);
}

/* Nút bấm hiển thị */
#vn-sticky-trigger {
    background: #fff;
    border: 1px solid #ddd;
    border-left: none; /* Dính sát lề */
    border-radius: 0 25px 25px 0; /* Bo tròn bên phải */
    padding: 8px 15px 8px 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    color: #333;
}

#vn-sticky-trigger .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #666;
}

/* Dropdown Menu (List dọc) */
.vn-sticky-dropdown {
    position: absolute;
    top: 100%; /* Ngay dưới nút */
    left: 10px;
    margin-top: 10px;
    background: #fff;
    width: 220px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    
    /* Mặc định ẩn */
    display: none; 
    border: 1px solid #eee;
}

/* Mũi tên chỉ lên của dropdown */
.vn-sticky-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px; height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
}

/* Các item trong list */
.vn-sticky-dropdown ul { list-style: none; margin: 0; padding: 5px 0; }
.vn-sticky-dropdown li {
    padding: 10px 15px;
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; border-bottom: 1px solid #f9f9f9;
}
.vn-sticky-dropdown li:last-child { border: none; }
.vn-sticky-dropdown li:hover, .vn-sticky-dropdown li.active { background: #fff5f6; }
.vn-sticky-dropdown li.active .vn-dd-title { color: #e60023; font-weight: bold; }

/* Hình nhỏ trong list */
.vn-dd-img { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.vn-dd-img img { max-width: 100%; max-height: 100%; filter: grayscale(100%); }
.vn-sticky-dropdown li.active img { filter: grayscale(0%); }


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    /* Khôi phục lại Tab Header Vuốt ngang (như cũ) */
    .vn-tab-header {
        display: flex !important; /* Bắt buộc hiện */
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        -ms-overflow-style: none; scrollbar-width: none;
    }
    .vn-tab-header::-webkit-scrollbar { display: none; }
    
    /* Ẩn sticky trên PC, chỉ hiện logic trên mobile */
    .vn-sticky-container { display: block; }
}

@media (min-width: 769px) {
    /* Desktop không dùng sticky button này */
    .vn-sticky-container { display: none !important; }
}

/* Style cho thẻ A View More (Giống hệt button cũ) */
.vn-view-more-link {
    display: inline-block;
    background: #e60023;
    color: #fff !important; /* Force màu trắng */
    border: none;
    padding: 12px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none !important; /* Bỏ gạch chân */
    text-transform: uppercase;
}

.vn-view-more-link:hover {
    background: #b3001b;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3);
    transform: translateY(-2px);
}