.highlight {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    color: #87736a;
}

.highlight .section-title-wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
}

.iconic {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
            flex-direction: column;
    color: #91766b;
    gap: 10px;
}

.more-btn--solid {
    background-color: #9b7c6c;
    border-color: #9b7c6c;
    color: #fff;
    -webkit-align-self: flex-start;
            align-self: flex-start;
}

.more-btn-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    margin: 10px 0;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
}

.more-btn--center {
    color: #87736a;
    border-color: #87736a;
}

.video-list-box {
    width: 100%;
}

.video-list-box1 {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.video-list-box2 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.video-card--type2 .video-card__icon-box {
    aspect-ratio: 16 / 9;
}

.video-list-box3 {
    grid-template-columns: repeat(6, 1fr);
}

.video-list-box4 {
    grid-template-columns: repeat(6, 1fr);
}

.video-list-box5 {
    grid-template-columns: repeat(5, 1fr);
}

.video-list-box5>*:not(:nth-child(5n))::after {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    right: 0;
    width: 1px;
    background-color: #9b7e70;
}

.content-container {
    padding: 10px 20px;
    margin: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
}

.video-section {
    width: 32%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 0;
}

.carousel-parent {
    width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 0;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    height: 100%;
}

.carousel-track .video-card--type1 {
    height: 400px;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    height: 100%;
    border: 1px solid #ada096;
}

.carousel-track .video-card--type1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.3)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 1;
    pointer-events: none;
}

.carousel-track .video-card--type1.active::after {
    opacity: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    border: none;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    gap: 8px;
    z-index: 10;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    padding: 8px 0;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.indicator.active {
    background: white;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

.video-list-box6 {
    display: none;
}

@media screen and (max-width:900px) {

    .video-list-box {
        width: 100%;
    }

    .video-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .content-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
                flex-direction: column;
    }

    .video-section {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .video-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-card--type3 {
        padding: 0;
        min-width: 150px;
    }

    .iconic .section-desc {
        max-width: 100%;
        height: 96px;
        overflow-y: auto;
    }

    .iconic {
        max-height: 290px;
        overflow-y: scroll;
    }

    .video-list-box2 .video-card--type2:nth-child(n+9) {
        display: none;
    }

    .video-card--type2 .video-card__icon-box {
        height: 120px;
    }
    

    .video-list-box4 .video-card--type4:nth-child(n+7) {
        display: none;
    }

    .video-list-box5 .video-card--type5:nth-child(n+7) {
        display: none;
    }

    .video-list-box6 {
        display: grid;
    }

}
