/* SECTION */
.best-vietnam-detail {
    padding: 60px 0;
    background: #f9fbfc;
}

/* CONTENT */
.content-box {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =========================
   TOP LIST
========================= */
.top-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* HEADER */
.top-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* NUMBER */
.top-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00B2C1, #1ba0e2);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: bold;
}

/* TITLE */
.top-header h2 {
    font-size: 22px;
    margin: 0;
    color: #111;
}

/* BODY */
.top-body {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
}

/* IMAGE */
.top-body img {
    width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

/* =========================
   SIDEBAR
========================= */
.top-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 20px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

/* TITLE */
.top-sidebar h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #017077;
}

/* LIST */
.top-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-nav li {
    margin-bottom: 8px;
    list-style: none;
}

/* LINK */
.top-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    transition: 0.3s;
    background: #f8f8f8;
}

/* NUMBER SMALL */
.top-nav span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e0f2f1;
    color: #017077;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 600;
}

/* HOVER */
.top-nav a:hover {
    background: #f1f5f9;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .top-sidebar {
        position: relative;
        top: auto;
        margin-top: 20px;
    }

    .top-header h2 {
               font-size: 17px;
        line-height: 1.4;
    }

}


/* SECTION */
.best-vietnam-popular {
    padding: 60px 0;
    background: #f9fbfc;
}

/* CARD */
.best-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.best-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.best-thumb {
    position: relative;
}

.best-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* RANK */
.rank {
    position: absolute;
    top: 10px;
    left: 10px;

    background: #ff5a5f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;

    font-size: 13px;
    font-weight: bold;
}

/* CONTENT */
.best-content {
    padding: 15px;
}

.best-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111;
}

.best-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* META */
.best-content .meta {
    font-size: 13px;
    color: #00B2C1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .best-thumb img {
        height: 180px;
    }
}
.list-image-top-10 {
    display: flex;
    gap: 10px; /* khoảng cách giữa 2 ảnh */
}

.list-image-top-10 img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.final-thoughts {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}