/* section 1 */
.home-box1 {
    height: 90vh;
}

.list-dv {
    margin-bottom: 20px;
}

.list-dv .dv-item {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.16);
    height: 100%;
    padding: 16px;
    max-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width:990px) {
    .list-dv .dv-item {
        margin-bottom: 20px;
    }
}
/*  */
.home-box2{
    padding: 60px 0;
}
.tabs{
    margin-bottom: 40px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    color: var(--Blue-dark, #272668);
}
.tab-button {
    border-radius: 12px;
    border: 1px solid var(--Blue-dark, #272668);
    background: #FFF;
}

.tab-button.active,.tab-button:hover {
    border-radius: 12px;
    border: 1px solid var(--Blue-dark, #272668);
    background: var(--Blue-dark, #272668);
    color: #fff;
}

.featured-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.featured-large::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 45.55%, #000 100%);
}

.featured-large img,
.small-article img {
    border-radius: 12px;
    width: 100%;
}

.featured-large a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

.featured-large .content {
    position: absolute;
    z-index: 2;
    padding: 0 20px;
    bottom: 0;
    left: 0;
}

.small-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 12px;
}

@media screen and (max-width:600px) {
    .small-articles {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

.right-column .article-list {
    overflow: hidden;
    overflow-y: scroll;
    max-height: 540px;
    margin: 0 0 10px 0;
}

.article-list li {
    position: relative;
    padding-left: 22px;
}

.article-list li:not(:last-child) {
    margin-bottom: 26px;
}

.article-list li::before {
    content: "";
    background-image: url(./images/icon_list_post.png);
    width: 15px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: 5px;
}