.ht-tabs-content a{color:#000 !important;}
.ht-tabs-content a:hover{color:#8b5a2b !important;}
.ht-tabs-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 15px;
}

/* LEFT */
.ht-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.ht-tabs-nav {
    position: relative;
    max-height: 615px;
    overflow-y: auto;
}

/* ===== SCROLLBAR (NẰM SAU LINE) ===== */
.ht-tabs-nav::-webkit-scrollbar {
    width: 6px;
}

.ht-tabs-nav::-webkit-scrollbar-track {
    background: transparent;
}

.ht-tabs-nav::-webkit-scrollbar-thumb {
    background-color: #c3a585;
    border-radius: 10px;
}

.ht-tabs-nav::-webkit-scrollbar-thumb:hover {
    background-color: #a8876a;
}

/* ===== FIREFOX ===== */
.ht-tabs-nav {
    scrollbar-width: thin;
    scrollbar-color: #c3a585 transparent;
}
@media (max-width: 768px) {
    .ht-tabs-nav {
        padding-right: 0;
    }

    .ht-tabs-nav::after {
        display: none;
    }

    .ht-tabs-nav::-webkit-scrollbar {
        display: none;
    }
}
.ht-tab-btn {
padding: 5px 10px;
    background: #fff;
    border: 1px solid #e3d6c7;
    border-radius: 6px;
    text-align: left;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.ht-tab-btn:hover{
    background:#ddc69a;
    color:#fff;
}
.ht-tab-btn.active {
    background: #8b5a2b;
    color: #fff;
}

/* RIGHT */
.ht-tab-panel {
    display: none;
}

.ht-tab-panel.active {
    display: block;
}
.ht-tab-main ul {
    list-style-type: none;
    padding-left: 0px;
}
.ht-tab-main ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.ht-tab-main ul li a{flex:none;}
.ht-tab-main ul li span {
    font-weight: bold;
    font-size: 15px;
    text-align: justify;
}
.ht-tab-side {
    border-left: 1px solid #decfb7;
    padding-left: 15px;
}
.ht-tab-main ul li img{
    aspect-ratio:16/9;
    object-fit: cover;

}
.ht-tab-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 15px;
}

.main-post img {
    width: 100%;
    border-radius: 6px;
}

.main-post h3 {
    font-size: 18px;
    margin: 10px 0;
    text-transform: uppercase;
    font-weight: bold;
    text-align: justify;
}

.ht-tab-side ul {
    list-style-type: disc;
    padding: 0;
    color: #7a4826;
}

.ht-tab-side li {
    margin-bottom: 12px;
}

/* BULLETS */
.ht-tab-bullets ul {
    margin-top: 20px;
    columns: 2;
}

.ht-tab-bullets li {
    margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ht-tabs-wrap {
        grid-template-columns: 180px 1fr;
        padding:10px;
        max-width: 100%;
        overflow:hidden;
    }
    .ht-tabs-content{padding-right:10px;}
    .ht-tab-btn {white-space: normal}
}

@media (max-width: 768px) {
    .ht-tabs-wrap {
        grid-template-columns: 1fr;
    }

    .ht-tabs-nav {
        flex-direction: row;
        overflow-x: auto;
    }

    .ht-tab-grid {
        grid-template-columns: 1fr;
    }
    .ht-tab-btn {white-space: nowrap;}
}
