/* Util */
.navbar:not(.navbar-scrolled){
    border-bottom: 1px solid var(--secondary);
}

/* Header */
header {
    background: url(../../front_assets/img/public/background-header.jpg) no-repeat center
        center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.page-header {
    padding-bottom: 3rem;
}

.header-image-wrapper img {
    border-radius: .625rem;
    width: 100%;
    height: 465px;
    object-fit: cover;
    background-color: var(--white);
    border: 5px solid var(--secondary);
    border-radius: 0.9375rem;
    padding: 0.5rem;
}

header .headline-header {
    color: var(--white);
    text-transform: capitalize;
}

header .headline-paragraph {
    color: var(--white);
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-height: 140%;
    overflow: hidden;
}

header .headline-link {
    color: var(--white);
    opacity: .6;
    transition: all 300ms linear;
}

/* Article */
.article-title{
    color: var(--black);
    display: -webkit-box;
    height: 60px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}

.article-link {
    color: var(--green);
    transition: all 300ms linear;
}

#article-list .card>.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (hover: hover) and (pointer:fine) {

    /* Header */
    .headline-link:hover {
        opacity: 1;
        transition: all 300ms linear;
    }

    /* Article */
    .article-link:hover {
        color: var(--accent);
        text-decoration: none;
        transition: all 300ms linear;
    }

    /* Navigation */
    .pagination .page-link:hover {
        background:none;
    }

    .pagination .page-link:hover .fas {
        opacity: 1;
        transition: all linear 200ms;
    }

    .pagination h4 .page-link:hover {
        color: var(--accent);
        transition: all linear 200ms;
    }

}

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

    .header-image-wrapper img {
        height: 300px;
    }

}

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

    /* Navbar */
    .navbar:not(.navbar-scrolled) {
        border-bottom: none;
    }

    /* Header */
    .header-image-wrapper {
        width: 100%;
        height: auto;
    }


    header .headline-paragraph {
        -webkit-line-clamp: none;
    }

    .page-header {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .headline-header {
        font-size: 1.424rem;
    }

    .fas {
        font-size: 1rem;
    }
}
