@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Montserrat:wght@400;500;600&display=swap');

/* ============================================================
   HERO BANNER SLIDER SECTION
   ============================================================ */
.hero-slider-section {
    position: relative;
    background: #000000;
    overflow: hidden;
    padding: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-slider {
    position: relative;
    z-index: 1;
}

.hero-slide-item {
    outline: none;
    position: relative;
    width: 100%;
}

.hero-slide-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.hero-slide-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.hero-slide-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    pointer-events: auto;
}

.hero-slide-title {
    font-size: clamp(32px, 3.8vw, 54px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: clamp(15px, 2vw, 15px);
    text-transform: uppercase;
    background: linear-gradient(0deg, rgba(210, 148, 49, 1) 0%, rgba(248, 230, 154, 1) 52%, rgba(239, 184, 79, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 650px;
    letter-spacing: 1px;
}

.hero-slide-desc {
    max-width: 468px;
}

.hero-slide-desc h3 {
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: clamp(15px, 2vw, 15px);
}

.hero-slide-desc p {
    font-size: clamp(12px, 1.3vw, 18px);
    color: #dfdfdf;
    line-height: 1.7;
    margin-bottom: clamp(25px, 2.5vw, 25px);
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: clamp(10px, 1vw, 12px) clamp(16px, 2vw, 25px);
    border: 1px solid var(--color-white);
    background: transparent;
    color: var(--color-white);
    text-decoration: none;
    font-size: clamp(11px, 1vw, 15px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.hero-slide-btn:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    color: #000000;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
}

/* Custom Slick Slide Dots styling */
.slick-dots {
    position: absolute;
    bottom: 20px;
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    gap: 10px;
    z-index: 10;
}

.slick-dots li {
    width: 12px;
    height: 12px;
}

.slick-dots li button {
    border: 1px solid #d4af37;
    background: transparent;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    outline: none;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slick-dots li.slick-active button {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
    width: 25px;
    border-radius: 6px;
}

/* ============================================================
   HIGHLIGHTS BAR SECTION
   ============================================================ */
.highlights-bar-section {
    background: #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding: 30px 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    background: transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.highlight-item:hover .highlight-icon-wrap {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    color: #000000;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: rotate(15deg);
}

.highlight-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.highlight-desc {
    font-size: 13px;
    color: #a6a6a6;
    line-height: 1.5;
    margin: 0;
}

.highlight-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.25s ease;
    margin-top: 2px;
}

.highlight-link:hover {
    color: #f3e5ab;
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ============================================================ */
@media (max-width: 1100px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-slide-content {
        padding: 0 30px;
    }

    .hero-slide-title {
        font-size: 38px;
        max-width: 480px;
    }

    .hero-slide-desc h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .hero-slide-desc p {
        font-size: 13.5px;
        margin-bottom: 25px;
        max-width: 450px;
    }

    .hero-slide-btn {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hero-slide-item {
        min-height: 480px;
        display: flex;
        align-items: center;
    }

    .hero-slide-logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% center;
    }

    .hero-slide-container {
        position: relative;
        height: auto;
        padding: 60px 0;
        width: 100%;
    }

    .hero-slide-content {
        padding: 30px 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.55);
        border-radius: 16px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        margin: 0 20px;
        width: calc(100% - 40px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .hero-slide-title {
        font-size: 32px;
        margin-left: auto;
        margin-right: auto;
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.8));
    }

    .hero-slide-desc {
        margin-left: auto;
        margin-right: auto;
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.8));
    }

    .hero-slide-desc p {
        margin-left: auto;
        margin-right: auto;
    }

    .highlights-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .hero-slide-item {
        min-height: 420px;
    }

    .hero-slide-title {
        font-size: 26px;
    }

    .hero-slide-desc h3 {
        font-size: 13px;
    }

    .hero-slide-desc p {
        font-size: 12px;
    }

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

    .highlight-item {
        max-width: 100%;
    }
}

/* ============================================================
   FEATURED POSTS SECTION
   ============================================================ */
.featured-posts-section {
    padding: 30px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.featured-posts-layout {
    display: flex;
    gap: 30px;
}

/* Left Column: Large Featured Card */
.featured-post-large {
    flex: 2.2;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.featured-post-large-img-wrap {
    position: relative;
    width: 50%;
    height: 380px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-post-large-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-large:hover .featured-post-large-img-wrap img {
    transform: scale(1.05);
}

.featured-tag {
    font-family: var(--font-family2);
    position: absolute;
    top: 15px;
    left: 0;
    background: #000000;
    color: var(--color-white);
    padding: 8px 24px 8px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.featured-post-large-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-large-content h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 20px 0;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.featured-post-large-content h3 a {
    color: #FFF;
}

.featured-post-large-content p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--color-white);
    margin: 0 0 20px 0;
    text-align: justify;
}

.featured-post-large-btn {
    display: inline-flex;
    align-self: flex-start;
    padding: 10px 24px;
    border: 1px solid #734d04;
    background: transparent;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.featured-post-large-btn:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    color: #000000;
}

/* Right Column: Small Featured List */
.featured-posts-small-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 30px;
    border-left: 1px solid rgba(212, 175, 55, 0.15);
}

.featured-post-small-item {
    display: flex;
    gap: 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.featured-post-small-item:hover {
    transform: translateX(5px);
}

.featured-post-small-item img {
    width: 120px;
    height: 115px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-post-small-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-small-info h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-secondary);
}

.featured-post-small-date {
    font-size: 13px;
    color: #888888;
}

/* ============================================================
   LATEST POSTS SECTION
   ============================================================ */
.latest-posts-section {
    padding: 20px 0 0;
}

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

.latest-posts-header h2 {
    font-size: 26px;
    font-weight: 500;
    color: #d9d3b3;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.latest-posts-header-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.1) 100%);
    position: relative;
    margin-top: 2px;
}

.latest-posts-viewall {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.latest-posts-viewall:hover {
    color: #f3e5ab;
}

.latest-posts-grid {
    display: block;
    margin: 0 -10px;
}

.latest-posts-grid .slick-slide {
    margin: 0 10px;
}

.latest-post-card {
    border: 1px solid rgb(1 41 88 / 22%);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

.latest-post-img-wrap {
    padding-bottom: 56.25%;
}

.latest-post-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    z-index: 2;
}

.latest-post-content {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.latest-post-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.latest-post-content .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 59px;
    margin-bottom: 10px;
}

.latest-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.latest-post-views {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
   BRAND ATTRIBUTES SECTION
   ============================================================ */
.brand-attributes-section {
    padding: 20px 0;
    position: relative;
}

.brand-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    overflow: hidden;
    background: #080808;
    padding: 20px;
}

.brand-container .banner {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.brand-container .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 0.7;
}

.brand-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1080px;
}

/* Left Column: Brand Info */
.brand-info {
    flex: 1.4;
    max-width: 380px;
    flex-shrink: 0;
}

.brand-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.brand-info h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    /* background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--color-secondary);
}

.brand-info p {
    font-size: 13.5px;
    color: var(--color-white);
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-weight: 300;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border: 1px solid #734d04;
    background: transparent;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.brand-btn:hover {
    background: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    color: #000000;
}

/* Right Column: Attribute Grid */
.brand-grid {
    flex: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    /* border-left: 1px solid rgba(212, 175, 55, 0.18); */
    /* padding-left: 30px; */
}

.brand-card {
    background: transparent;
    border: none;
    /* padding: 0 10px; */
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

/* .brand-card:not(:first-child) {
    border-left: 1px solid rgba(212, 175, 55, 0.15);
    padding-left: 20px;
} */

.brand-card-icon {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #d4af37;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.brand-card-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-card:hover .brand-card-icon {
    transform: scale(1.03);
}

.brand-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-card p {
    font-size: 13px;
    color: var(--color-white);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   RESPONSIVE DESIGN BREAKPOINTS FOR NEW SECTIONS
   ============================================================ */

@media (max-width: 992px) {
    .featured-posts-layout {
        flex-direction: column;
        gap: 30px;
    }

    .featured-posts-small-list {
        padding-left: 0;
        border-left: none;
        gap: 25px;
    }

    .brand-layout {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .brand-info {
        max-width: 100%;
    }

    .brand-btn {
        align-self: center;
    }

    .brand-grid {
        border-left: none;
        padding-left: 0;
    }

    .brand-card-icon {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .brand-container {
        padding: 40px 20px;
    }

    .brand-container .banner::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .brand-info h2,
    .brand-info h3,
    .brand-info p,
    .brand-card h3,
    .brand-card p {
        filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.9));
    }

    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .brand-card {
        border-left: none !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .brand-card-icon {
        justify-content: center;
    }

    .featured-post-large {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .featured-post-large-img-wrap {
        width: 100%;
    }

    .featured-post-large-content {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 575px) {
    .featured-post-large-img-wrap {
        height: 300px;
    }

    .featured-post-large-content {
        padding: 0;
    }

    .featured-post-large-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .brand-container {
        padding: 30px 15px;
    }

    .brand-grid {
        /* grid-template-columns: 1fr; */
        gap: 20px;
    }

    .brand-title {
        font-size: 30px;
    }

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

    .latest-posts-viewall {
        display: none;
    }
}

@media (max-width: 375px) {
    .brand-info h2 {
        font-size: 20px;
    }

    .brand-info h3 {
        font-size: 15px;
    }
}

/* ============================================================
   HERO BANNER SECTION (.hb-)
   ============================================================ */
.hb-section {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    display: flex;
    align-items: center;
}

/* áº¢nh ná»n full banner */
.hb-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    display: block;
}

/* Overlay gradient tá»« trÃ¡i sang pháº£i Ä‘á»ƒ text Ä‘á»c Ä‘Æ°á»£c */
.hb-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(8, 20, 50, 0.88) 0%,
            rgba(8, 20, 50, 0.75) 40%,
            rgba(8, 20, 50, 0.30) 65%,
            rgba(8, 20, 50, 0.00) 100%);
    pointer-events: none;
}

/* Layout wrapper */
.hb-inner {
    position: relative;
    z-index: 2;
    padding: 40px 15px;
    display: flex;
    align-items: center;
    min-height: 280px;
}

/* Ná»™i dung bÃªn trÃ¡i */
.hb-content {
    max-width: 520px;
    width: 100%;
}

/* TiÃªu Ä‘á» */
.hb-title,
.hb-desc h2 {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hb-title--highlight {
    color: #ff6b1a;
}

/* MÃ´ táº£ */
.hb-desc p {
    font-size: clamp(13px, 1.1vw, 15px);
    color: #d0dff0;
    line-height: 1.7;
    margin: 14px 0 22px 0;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Form tÃ¬m kiáº¿m */
.hb-search {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    max-width: 480px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
    margin-bottom: 16px;
    padding: 2px;
}

.hb-search__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 14px;
    color: #1a1a2e;
    background: transparent;
    min-width: 0;
}

.hb-search__input::placeholder {
    color: #9aa3b0;
    font-size: 13px;
}

.hb-search__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 20px;
    background: var(--color-hover);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.hb-search__btn:hover {
    background: #e55a0d;
}

/* Tags phá»• biáº¿n */
.hb-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 480px;
}

.hb-tags__label {
    font-size: 12px;
    color: #a8c4e0;
    font-weight: 500;
}

.hb-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hb-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 20px;
    color: #d0e6f8;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.hb-tag:hover {
    background: var(--color-hover);
    border-color: var(--color-hover);
    color: #FFF;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 992px) {
    .hb-title {
        font-size: 26px;
    }

    .hb-overlay {
        background: linear-gradient(90deg,
                rgba(8, 20, 50, 0.92) 0%,
                rgba(8, 20, 50, 0.80) 45%,
                rgba(8, 20, 50, 0.35) 70%,
                rgba(8, 20, 50, 0.00) 100%);
    }
}

@media (max-width: 768px) {
    .hb-section {
        min-height: 500px;
    }

    .hb-bg-img {
        object-position: 70% center;
    }

    .hb-overlay {
        background: rgba(8, 20, 50, 0.72);
    }

    .hb-inner {
        padding: 36px 20px 70px;
        min-height: unset;
    }

    .hb-content {
        max-width: 100%;
    }

    .hb-search {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hb-title {
        font-size: 20px;
    }

    .hb-search__btn {
        padding: 13px 14px;
        font-size: 13px;
    }

    .hb-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ============================================================
   HOME MAIN PAGE SECTION (.hmp-)
   ============================================================ */
.hmp-section {
    background: #f5f6fa;
    padding: 24px 0 32px;
}

.hmp-container {
    padding: 0 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* â”€â”€ LEFT COLUMN â”€â”€ */
.hmp-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Block wrapper */
.hmp-block {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.hmp-block--dark {
    background: #0d1f3c;
}

.hmp-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.hmp-block__title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hmp-fire {
    font-size: 20px;
}

.hmp-block__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hmp-block__title--white {
    color: #fff;
}

.hmp-block__sub {
    font-size: 13px;
    color: #888;
    margin: 4px 0 0;
}

.hmp-viewall {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #e5701a;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.hmp-viewall:hover {
    opacity: 0.75;
}

/* â”€â”€ DANH Má»¤C â”€â”€ */
.hmp-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.hmp-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 12px 6px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: #f9f9fb;
}

.hmp-cat:hover {
    border-color: #e5701a;
    background: #fff5ee;
}

.hmp-cat--active {
    background: #0d1f3c;
    border-color: #0d1f3c;
}

.hmp-cat__img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.hmp-cat__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmp-cat__name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    line-height: 1.3;
}

.hmp-cat--active .hmp-cat__name {
    color: #fff;
}

.hmp-cat__count {
    font-size: 12px;
    font-weight: 600;
    color: #e5701a;
}

.hmp-cat--active .hmp-cat__count {
    color: #ffa05a;
}

/* â”€â”€ Lá»–I PHá»” BIáº¾N â”€â”€ */
.hmp-errors-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hmp-errors {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible;
    flex: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.hmp-errors::-webkit-scrollbar {
    display: none;
}

.hmp-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.hmp-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hmp-error-card {
    flex: 0 0 calc(20% - 10px);
    min-width: 150px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

.hmp-error-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 112, 26, 0.5);
}

.hmp-error-card__img {
    position: relative;
    padding-bottom: 65%;
    overflow: hidden;
    background: #1a2f50;
}

.hmp-error-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmp-error-card__cat {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(229, 112, 26, 0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

.hmp-error-card__body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.hmp-error-card__title {
    font-size: 12.5px;
    font-weight: 500;
    color: #e8eef8;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hmp-error-card__views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #8bacc8;
    margin-top: auto;
}

/* â”€â”€ RIGHT COLUMN â”€â”€ */
.hmp-right {
    flex: 0 0 300px;
    min-width: 0;
}

.hmp-expert {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hmp-expert__header {
    background: #e5701a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hmp-expert__label {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.hmp-expert__spec {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.hmp-expert__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.hmp-expert__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e5701a;
    flex-shrink: 0;
    background: #f0f0f0;
}

.hmp-expert__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hmp-expert__info {
    flex: 1;
    min-width: 0;
}

.hmp-expert__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 5px;
}

.hmp-expert__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #e5701a;
    background: #fff5ee;
    border: 1px solid #ffa05a;
    border-radius: 20px;
    padding: 2px 9px;
    margin-bottom: 6px;
}

.hmp-expert__stars {
    font-size: 13px;
    color: #f5a623;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hmp-expert__rating {
    font-weight: 700;
    color: #1a1a2e;
}

.hmp-expert__reviews {
    color: #888;
    font-size: 12px;
}

.hmp-expert__feats {
    list-style: none;
    margin: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    border-bottom: 1px solid #f0f0f0;
}

.hmp-expert__feats li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #444;
}

.hmp-feat-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.hmp-feat-icon--red {
    background: #fff0f0;
    color: #e53935;
}

.hmp-feat-icon--blue {
    background: #e8f4ff;
    color: #1565c0;
}

.hmp-expert__call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 14px 16px 10px;
    padding: 13px;
    background: #e5701a;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.hmp-expert__call:hover {
    background: #c95d12;
}

.hmp-expert__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 16px 14px;
}

.hmp-expert__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px;
    border: 1.5px solid #dde3ee;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #2c3e70;
    text-decoration: none;
    transition: all 0.2s;
}

.hmp-expert__action:hover {
    border-color: #e5701a;
    color: #e5701a;
    background: #fff5ee;
}

.hmp-expert__meta {
    list-style: none;
    margin: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
    background: #fafbff;
}

.hmp-expert__meta li {
    display: flex;
    gap: 8px;
    font-size: 12.5px;
    color: #444;
    line-height: 1.45;
}

.hmp-meta-label {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    color: #888;
    white-space: nowrap;
    font-weight: 500;
    flex-shrink: 0;
    padding-top: 1px;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1100px) {
    .hmp-cats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hmp-container {
        flex-direction: column;
    }

    .hmp-right {
        flex: unset;
        width: 100%;
    }

    .hmp-expert__actions {
        grid-template-columns: 1fr 1fr;
    }

    .hmp-cats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .hmp-cats {
        grid-template-columns: repeat(3, 1fr);
    }

    .hmp-error-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 140px;
    }
}

@media (max-width: 400px) {
    .hmp-cats {
        grid-template-columns: repeat(2, 1fr);
    }
}




/* DEVICE CATEGORY & EXPERT */
.category-expert-section {
    /* padding: 0 0 40px 0; */
    margin-top: -60px;
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 20px 0 0;
    max-width: var(--container);
    margin: -60px auto 0;
    border-radius: 20px 20px 0 0;
}

.category-expert-container {
    display: flex;
    gap: 24px;
}

.left-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.device-category {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 12px;

}

.device-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.device-category-subtitle {
    font-size: 15px;
    color: #042c5b;
    margin-bottom: 24px;
}

.device-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.device-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    border: 1px solid #eeeeee69;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.device-category-item:hover,
.device-category-item.active {
    border-color: #042c5b;
    background-color: #042c5b;
    color: #FFFFFF;
}

.device-category-item.active .device-category-name,
.device-category-item.active .device-category-count {
    color: #FFFFFF;
}

.device-category-img {
    margin-bottom: 12px;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.device-category-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333333;
    text-align: center;
}

.device-category-count {
    font-size: 13px;
    color: var(--color-hover);
    font-weight: 600;
}

.expert-suggestion {
    flex: 1;
    background-color: var(--color-hover);
    border-radius: 12px;
    overflow: hidden;
    height: max-content;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.expert-suggestion-header {
    color: #FFFFFF;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expert-suggestion-title {
    font-size: 16px;
    font-weight: 700;
}

.expert-suggestion-tag {
    font-size: 12px;
}

.expert-suggestion-body {
    padding: 20px;
    background-color: #FFF;
    border-radius: 8px 8px 0 0;
}

.expert-suggestion-profile {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.expert-suggestion-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.expert-suggestion-info {
    flex: 1;
}

.expert-suggestion-name {
    font-size: 18px;
    font-weight: 700;
    /* display: flex; */
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.expert-suggestion-badge {
    background-color: #FFF2EB;
    color: #FF5E00;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
}

.expert-suggestion-rating {
    font-size: 12px;
    color: #666666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.expert-suggestion-star {
    color: #FF5E00;
}

.expert-suggestion-stars-group {
    color: #FFB800;
}

.expert-suggestion-stats {
    font-size: 13px;
    margin-left: 20px;
}

.expert-suggestion-stats li {
    margin-bottom: 4px;
    position: relative;
    padding-left: -1px;
}

.expert-suggestion-stats li::before {}

.expert-suggestion-call-btn {
    width: 100%;
    background-color: var(--color-hover);
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.expert-suggestion-call-btn a {
    color: #FFF;
}

.expert-suggestion-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.expert-suggestion-action-btn {
    flex: 1;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

/*
.expert-suggestion-action-btn:hover {
    background-color: #F8F9FA;
    border-color: #0F1D3A;
    color: #0F1D3A;
} */

.top-technician-card-content .expert-suggestion-action-btn.info {
    border: 1px solid #fdb792;
}

.expert-suggestion-action-btn.info {
    border: 2px solid #fdb792;
}

.expert-suggestion-action-btn.zalo {
    border: 2px solid #a0b6dd;
}

.expert-suggestion-action-btn.zalo:hover {
    color: #0068ff;
}

.expert-suggestion-action-btn.info:hover {
    color: var(--color-hover);
}

.expert-suggestion-details {
    width: 100%;
    font-size: 13px;
    border-collapse: collapse;
}

.expert-suggestion-details td {
    padding: 8px 0;
    vertical-align: top;
    border-bottom: 1px dashed #EEEEEE;
}

.expert-suggestion-details tr td:first-child {
    color: #333;
    width: 130px;
}

.expert-suggestion-details tr td:last-child {
    color: var(--color-secondary);
    font-weight: 500;
}

/* POPULAR ERRORS */
.popular-errors-container {
    padding: 24px;
    background-color: #042c5b;
    border-radius: 12px;
}

.popular-errors-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.popular-errors-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
}

.popular-errors-title i {
    margin-right: 6px;
}

.popular-errors-view-all {
    color: #fff;
    font-size: 14px;
}

.popular-errors-carousel {
    display: block;
    position: relative;
}

.popular-errors-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #6C85A6 !important;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 1;
    font-size: 14px;
}

.popular-errors-nav.prev {
    left: -35px;
}

.popular-errors-nav.next {
    right: -35px;
}

.popular-errors-nav:hover {
    background-color: #556D8D;
}

.popular-errors-list {
    flex: 1;
    overflow: hidden;
    margin: 0 -6px;
    /* offset slick gap */
}

.popular-errors-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    position: relative;
    margin: 0 6px;
    /* slick item gap */
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.popular-errors-card .wrap-img {
    padding-bottom: 75%;
}

.popular-errors-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.popular-errors-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 12px;
}

.popular-content {
    padding: 10px;
}

.popular-errors-card-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.popular-errors-meta {
    font-size: 12px;
    color: #999999;
}

/* TECHNICIAN SECTION */
.top-technician {
    padding: 40px 0;
}

.top-technician-container {}

.top-technician-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.top-technician-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.text-orange {
    color: #fe981f;
}

.top-technician-subtitle {
    font-size: 16px;
}

.top-technician-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-technician-view-all {
    font-size: 15px;
    font-weight: 700;
}

.top-technician-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF !important;
    border: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s;
    position: unset;
    opacity: 1;
    transform: unset;
    font-size: 14px;
}

.top-technician-nav:hover {
    background-color: #F8F9FA;
    border-color: #0F1D3A;
    color: #0F1D3A;
}

.top-technician-list .slick-list {
    margin: 0 -10px;
}

.top-technician-list .slick-slide {
    margin: 0 10px;
}


.top-technician-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #EEEEEE;
    /* slick item gap */
    transition: all 0.3s ease;
    cursor: pointer;
}

.top-technician-card:hover .top-technician-name {
    color: #FF5E00;
}

.top-technician-card-image-wrap {
    padding-bottom: 75%;
}

.top-technician-tag {
    position: absolute;
    top: 0;
    left: 0;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 15px;
    border-radius: 12px 0 12px 0;
    z-index: 2;
}

.tag-blue {
    background-color: #0F1D3A;
}

.tag-cyan {
    background-color: #00A6A6;
}

.tag-red {
    background-color: #E63946;
}

.tag-purple {
    background-color: #7209B7;
}

.tag-green {
    background-color: #2A9D8F;
}


.top-technician-card-content {
    padding: 16px;
    text-align: left;
}

.device-category-item:hover h3 {
    color: #fff;
}

.device-category-item:hover .device-category-count {
    color: #fff;
}

.top-technician-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.top-technician-exp {
    font-size: 13px;
    color: #042c5b;
    margin-bottom: 8px;
}

.top-technician-rating {
    font-size: 12px;
    font-weight: 600;
    color: #ff6106;
    margin-bottom: 16px;
}

.top-technician-rating span:last-child {
    font-weight: 400;
    color: #666666;
    font-size: 12px;
}

.top-technician-call-btn {
    width: 100%;
    background-color: #FFF2EB;
    color: var(--color-hover);
    border: 1px solid #fdb792;
    padding: 8px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.top-technician-call-btn:hover {
    background-color: #FF5E00;
    color: #FFFFFF;
}

/* WIDGETS SECTION */
.widgets-section {
    padding: 0 0 40px 0;
}

.widgets-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.widget-block {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #EEEEEE;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.widget-view-all {
    font-size: 13px;
    color: #2D63ED;
    font-weight: 600;
}

.widget-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.widget-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget-item:hover .widget-item-title {
    color: #FF5E00;
}

.widget-item:hover .widget-item-img {
    opacity: 0.85;
}

.widget-item-img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.widget-item-content {
    flex: 1;
}

.widget-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #042c5b;
    margin-bottom: 3px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.widget-item-meta {
    font-size: 12px;
    color: #042c5bc7;
}

.widget-video-wrap {
    position: relative;
    width: 80px;
    height: 60px;
    flex-shrink: 0;
}

.widget-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.qa-item {
    align-items: flex-start;
}

.qa-icon {
    width: 32px;
    height: 32px;
    background-color: #F0F4FF;
    color: #2D63ED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

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

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
}

.video-modal-content {
    position: relative;
    width: min(900px, 90vw);
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    font-size: 22px;
}

.video-trigger {
    cursor: pointer;
}

@media (max-width: 768px) {
    .popular-errors-nav {
        display: none !important;
    }

    .device-category-title {
        font-size: 25px;
    }


}


@media (max-width: 575px) {
    .popular-errors-tag {
        font-size: 12px;
    }

    .expert-suggestion-title {
        font-size: 14px;
    }

    .top-technician-header-right {
        display: none;
    }

    .top-technician-title {
        font-size: 18px;
    }

    .top-technician-subtitle {
        font-size: 15px;
    }

    .top-technician {
        padding: 25px 0;
    }

    .top-technician-list .slick-slide {
        margin: 0 5px;
    }

    .top-technician-list .slick-list {
        margin: 0 -5px;
    }

    .top-technician-card-content {
        padding: 12px;
    }

    .top-technician-name {
        font-size: 16px;
    }

    .device-category-grid {
        gap: 10px;
    }
}
