.videos-detail-header{
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
}

.videos-detail-header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-detail-header__filter{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(0deg, var(--header) 0%, #08174C38 100%);
}

.videos-detail-header__container{
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    bottom: 30px;
}

.videos-detail-header__title{
    text-transform: capitalize;
    font-family: "Syne", "sans-serif";
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
}

.videos-detail-header__list{
    list-style: none;
    display: flex;
    padding-left: 0;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", "sans-serif";
    font-weight: 200;
    font-size: 16px;
}

.videos-detail-header__container a {
    color: white;
    text-decoration: none;
}

.section__title{
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Syne", sans-serif;
    text-align: start;
    color: var(--header);
    margin-bottom: 0;
}

.section__title--small{
    font-size: 20px;
    font-weight: 400;
    font-family: "Syne", sans-serif;
    text-align: start;
    color: var(--header);
}

.section__image-wrapper{
    width: 100%;
    aspect-ratio: 2 / 1;
}

.section__image-wrapper img {
    width: 100%;
    height: 100%;
}
.section__image-description{
    font-size: 14px;
    font-family: "Raleway", "sans-serif";
    color: var(--light-gray);
    font-weight: 300;
}
.section__paragraph{
    font-size: 14px;
    font-family: "Raleway", "sans-serif";
    color: var(--light-gray);
    font-weight: 400;
}

.section__high-light{
    border-left: 2px solid var(--header);
    padding-left: 18px;
    margin-bottom: 10px;
}
.section__high-light span{
    font-size: 20px;
    font-weight: 400;
    font-family: "Syne", "sans-serif";
}
.section__icon-wrapper{
    border: 1px solid var(--border);
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.2s ease-out;
}

.section__icon-wrapper:hover{
    background: var(--primary);
    border: none;
    color: white;
}


.quotation-mark-icon{
    font-size: 12px;
    display: inline-block;
    position: relative;
    top: -5px;
}

.section__share span{
    font-family: "Syne", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.article-card__title{
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    cursor: pointer;
}

.article-card__title:hover{
    color: var(--primary);
}

.article-card__description{
    font-family: "Raleway", "sans-serif";
    font-size: 14px;
    font-weight: 300;
}
.article-card__link{
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}
.article-card__date{
    font-weight: 400;
    font-family: "Raleway", "sans-serif";
    font-size: 12px;
}

.article-card__link:hover{
    color: var(--primary-hover);
}

.article-card__image-wrapper{
    width: 100%;
    aspect-ratio: 2 / 1;
}

.article-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover{
    border: 1px solid var(--primary);
}

.text-ellipsis-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: calc(1.5em * 2);
}


.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 30px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
    color: black;
}

.swiper-button-next {
}


.swiper-button-prev, .swiper-button-next {
    width: 30px;
    height: 30px;
    font-size: 20px;
}



@media (min-width: 576px) {
}

@media (min-width: 768px) {
    .videos-detail-header {
        aspect-ratio: 2 / 1;
    }

    .videos-detail-header__title {
        font-size: 45px;
    }

    .section__title {
        font-size: 45px;
    }

    .section__image-description {
        font-size: 16px;
    }

    .section__paragraph {
        font-size: 16px;
    }

    .section__high-light span {
        font-size: 25px;
    }

    .section__title--small {
        font-size: 25px;
    }

    .quotation-mark-icon {
        top: -7px;
        font-size: 14px;
    }

}

@media (min-width: 992px) {
    .videos-detail-header {
        aspect-ratio: 3 / 1;
    }

    .section__high-light {
        padding-left: 30px;
    }

    .section__high-light span {
        font-size: 35px;
    }

    .quotation-mark-icon {
        top: -14px;
    }

    .section__image-description {
        font-size: 18px;
    }

    .section__paragraph {
        font-size: 18px;
    }

    .section__high-light span {
        font-size: 35px;
    }

    .section__title--small {
        font-size: 30px;
    }
}



@media (min-width: 1200px) {  }

@media (min-width: 1400px) {

    .section__share span {
        font-size: 20px;
    }
    .videos-detail-header {
        aspect-ratio: 3.5 / 1;
    }
    .videos-detail-header__title {
        font-size: 55px;
    }
    .section__title{
        font-size: 55px;
    }
    .section__high-light span{
        font-size: 45px;
    }
    .section__title--small {
        font-size: 35px;
    }
    .quotation-mark-icon {
        top: -20px;
    }
}