@charset "UTF-8";

/* ===================================
    home-news
===================================== */
section.home-news {
    margin-bottom: 120px;
}
    @media (max-width: 575px) {
        section.home-news {
            margin-bottom: 75px;
        }
    }
    @media (min-width: 576px) {
        section.home-news {
            margin-bottom: 100px;
        }
    }
    @media (min-width: 1200px) {
        section.home-news {
            margin-bottom: 120px;
        }
    }

section.home-news .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 3.125rem 0;
    text-align: start;
    gap: 20px;
}
    @media (max-width: 575px) {
        section.home-news .content {
            gap: 10px;
        }
    }
    @media (min-width: 576px) {
        section.home-news .content {
            gap: 12px;
        }
    }
    @media (min-width: 768px) {
        section.home-news .content {
            gap: 15px;
        }
    }
    @media (min-width: 1200px) {
        section.home-news .content {
            gap: 20px;
        }
    }
section.home-news .content .title h1 {
    font-family: 'Gilmer-Regular';
    font-size: var(--fs-32);
}
[data-bs-theme="dark"] section.home-news .content .title h1 {
    color: var(--glam-light);
}
[data-bs-theme="light"] section.home-news .content .title h1 {
    color: var(--glam-black);
}

section.home-news .content .description p {
    font-size: var(--fs-16);
}
[data-bs-theme="dark"] section.home-news .content .description p {
    color: var(--glam-light);
}
[data-bs-theme="light"] section.home-news .content .description p {
    color: var(--glam-black);
}

section.home-news .card {
    margin-bottom: 120px;
    border: 0;
    padding: 0 2rem;
}
[data-bs-theme="dark"] section.home-news .card {
    background-color: var(--transparent);
}
[data-bs-theme="light"] section.home-news .card {
    background-color: var(--transparent);
}
    @media (max-width: 575px) {
        section.home-news .card {
            margin-bottom: 75px;
            padding: 0;
        }
    }
    @media (min-width: 576px) {
        section.home-news .card {
            margin-bottom: 100px;
            padding: 0;
        }
    }
    @media (min-width: 768px) {
        section.home-news .card {
            margin-bottom: 80px;
            padding: 0;
        }
    }
    @media (min-width: 992px) {
        section.home-news .card {
            margin-bottom: 120px;
            padding: 0;
        }
    }
section.home-news .card .card-media {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
    height: 315px;
}
@media (max-width: 575px) {
    section.home-news .card .card-media {
        height: 315px;
    }
}
@media (min-width: 576px) {
    section.home-news .card .card-media {
        height: 460px;
    }
}
@media (min-width: 768px) {
    section.home-news .card .card-media {
        height: 275px;
    }
}
@media (min-width: 992px) {
    section.home-news .card .card-media {
        height: 295px;
    }
}
@media (min-width: 1200px) {
    section.home-news .card .card-media {
        height: 275px;
    }
}
@media (min-width: 1400px) {
    section.home-news .card .card-media {
        height: 300px;
    }
}
@media (min-width: 1600px) {
    section.home-news .card .card-media {
        height: 315px;
    }
}
@media (min-width: 1800px) {
    section.home-news .card .card-media {
        height: 375px;
    }
}
section.home-news .card .card-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease;
    border-radius: 0;
}
section.home-news .card .card-media video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: transform .5s ease;
    border-radius: 0;
}
section.home-news .card .card-media span {
    position: absolute;
    right: 2.5rem;
    bottom: 2.5rem;
}
section.home-news .card .card-body {
    padding: 0;
}

section.home-news .card .card-body .card-title h6 {
    font-size: var(--fs-20);
    margin-bottom: 0;
}
[data-bs-theme="dark"] section.home-news .card .card-body .card-title h6 {
    color: var(--glam-light);
}
[data-bs-theme="light"] section.home-news .card .card-body .card-title h6 {
    color: var(--glam-black);
}

section.home-news .card .card-body .card-description p  {
    font-size: var(--fs-16);
}
[data-bs-theme="dark"] section.home-news .card .card-body .card-description p  {
    color: var(--glam-gray-4);
}
[data-bs-theme="light"] section.home-news .card .card-body .card-description p  {
    color: var(--glam-gray-4);
}

section.home-news .card .card-body .card-description p a {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding-bottom: .1rem;
}
[data-bs-theme="dark"] section.home-news .card .card-body .card-description p a {
    color: #fff;
    border-bottom: 1px solid var(--glam-gray-5);
}
[data-bs-theme="light"] section.home-news .card .card-body .card-description p a {
    color: #000;
    border-bottom: 1px solid var(--glam-gray-3);
}
section.home-news .card .card-body .card-description p a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    content: '';
    -webkit-transition: 0.5s width ease;
    transition: 0.5s width ease;
}
[data-bs-theme="dark"] section.home-news .card .card-body .card-description p a::after {
    background-color: #fff;
}
[data-bs-theme="light"] section.home-news .card .card-body .card-description p a::after {
    background-color: #000;
}
section.home-news .card .card-body .card-description p a:hover::after {
    width: 100%;
}
section.home-news .direction-button {
    padding: 3rem 0;
    text-align: center;
}
section.home-news .direction-button .link a {
    font-family: 'Gilmer-Medium';
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: .5rem;
}
[data-bs-theme="dark"] section.home-news .direction-button .link a {
    color: #fff;
    border-bottom: 1px solid var(--glam-gray-5);
}
[data-bs-theme="light"] section.home-news .direction-button .link a {
    color: #000;
    border-bottom: 1px solid var(--glam-gray-3);
}
section.home-news .direction-button .link a i {
    font-size: 20px;
    margin-left: 10px;
}
section.home-news .direction-button .link a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    content: '';
    -webkit-transition: 0.5s width ease;
    transition: 0.5s width ease;
}
[data-bs-theme="dark"] section.home-news .direction-button .link a::after {
    background-color: #fff;
}
[data-bs-theme="light"] section.home-news .direction-button .link a::after {
    background-color: #000;
}
section.home-news .direction-button .link a:hover::after {
    width: 100%;
}
