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

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

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

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

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

.news-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;
}

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

.section__title {
    font-size: 38px;
    font-family: "Syne", "sans-serif";
    color: var(--header);
    font-weight: 400;
    letter-spacing: 1px;
}

.section__sub-title {
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    font-family: "Raleway", "sans-serif";
}

.section__paragraph{
    font-weight: 300;
    color: var(--light-gray);
    font-family: "Raleway", sans-serif;
}

.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;
}

.customize-card__link{
    color: var(--bs-body-color);
    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: 200px;
    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);
}

@media (min-width: 576px) {

}

@media (min-width: 768px) {
    .news-header{
        aspect-ratio: 2 / 1;
    }
    .news-header__title {
        font-size: 45px;
    }

    .section__title {
        font-size: 45px;
    }

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

}

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


@media (min-width: 1400px) {
    .news-header {
        aspect-ratio: 3.5 / 1;
    }

    .news-header__title {
        font-size: 55px;
    }

    .section__title {
        font-size: 55px;
    }

    .article-card__title {
        font-size: 23px;
    }

    .article-card__date {
        font-size: 14px;
    }

    .article-card__description {
        font-size: 16px;
    }
}