/* ===== BASE ===== */
.info-portal {
    padding: 48px 0;
}

.info-portal__container {
    max-width: 1400px;
    padding: 0 16px;
    margin: 0 auto;
}

.info-portal__title {
    text-align: center;
    font-size: 32px;
    color: #d81b60;
    margin-bottom: 8px;
}

.info-portal__desc {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 15px;
}

/* ===== GRID ===== */
.info-portal__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* ===== COLUMN ===== */
.info-col__label {
    display: inline-block;
    background: linear-gradient(90deg, #2C3E50 0%, #4CA1AF 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 4px;
}

/* ===== POST ===== */
.post__thumb img {
    width: 100%;
    height: 386px;
    object-fit: cover;
    display: block;
}

.post--featured .post__thumb {
    display: block;
    margin-bottom: 20px;
}

.post__title {
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.post__title a {
    color: #2c3e50;
    text-decoration: none;
}

.post__excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.post__more {
    font-size: 13px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 800;
}

/* ===== SMALL POSTS ===== */
.post-list {
    margin-top: 16px;
}

.post--small {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.post--small .post__thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
}

.post--small .post__title {
    font-size: 18px;
    margin-bottom: 4px;
}

.post--small .post__title a {
    color: #2c3e50;
}

/* ===== SMALL POSTS (UPDATED) ===== */
.post--small {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.post--small .post__thumb {
    width: 165px;
    height: 110px;
    flex-shrink: 0;
    display: block;
}

.post--small .post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post--small .post__content {
    flex: 1;
    min-width: 0;
}

.post--small .post__title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 6px;
    font-weight: 700;
}

.post--small .post__title a {
    color: #2c3e50;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post--small .post__excerpt {
    margin: 0 0 8px;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post--small .post__more {
    font-size: 13px;
    color: #2c3e50;
    font-weight: 600;
    text-decoration: none;
}

.info-portal .sc--title-home {
    text-align: center !important;
    margin-bottom: 55px;
}

.sk-right {
    text-align: right;
}

.info-tabs {
    display: none;
}

.info-col {
    display: block;
}

.post__title a , .post__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}




/* ===== DESKTOP ===== */
@media (min-width: 992px) {
    .info-portal__grid {
        grid-template-columns: 1fr 1fr;
    }

    .post--small .post__thumb {
        width: 200px;
        height: 142px;
    }


}

@media (max-width: 768px) {

    .info-portal .sc--title-home {
        margin-bottom: 35px;
        font-size: 32px;
    }

    .post__thumb img {
        height: 275px;
    }

    .post--small .post__excerpt {
        font-size: 11px;
    }

    .post__title {
        font-size: 18px;
    }

    .post--small .post__title {
        font-size: 14px;
    }

    .post-list .post {
        margin: 0 0 15px;
    }

    .post--small .post__excerpt {
        margin-bottom: 0;
    }


    .post--small .post__thumb {
        width: 135px;
        height: 105px;
    }

    /* Ẩn label cũ */
    .info-col__label {
        display: none;
    }

    /* Tabs chỉ hiện ở mobile */
    .info-tabs {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .info-tab {
        font-size: 14px;
        font-weight: 600;
        border: none;
        background: #eee;
        color: #333;
        cursor: pointer;
        border-radius: 6px;
        margin: 0;
    }

    .info-tab.is-active {
        background: #2c3e50;
        color: #fff;
    }

    /* Mobile: chỉ show cột active */
    .info-col {
        display: none !important;
    }

    .info-col.is-active {
        display: block !important;
    }

}