/* news section  */
.news {
    background-color: var(--brown-main-color);
    padding: var(--section-top-bottom-padding) 0;
}

.news--external {
    background-color: #f8f8f8;
    background-image: url(../../images/pattern.webp);
    background-size: cover;
    background-size: 100%;
}

.news_cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 3rem;
}

.news-card {
    padding: .8rem;
    border-radius: 6px;
    background-color: #452323;
    display: flex;
    gap: 1rem;
    line-height: var(--line-higth-normal);
    transition: .3s;
    position: relative;
}

.news--external .news-card {
    background-color: #fafaf7;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}

.news-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background-color: var(--orange-main-color);
    bottom: 0;
    left: 0;
    border-radius: inherit;
    transition: .3s;
}

/* .news-card::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23452323' d='m391.765 115.993l75.102-74.385c3.189-3.158 8.463-2.639 10.975 1.08l17.325 25.649c2.386 3.533 1.177 8.355-2.594 10.344l-92.427 48.736a7.162 7.162 0 0 1-9.275-2.326a7.16 7.16 0 0 1 .894-9.098m12.42 63.879a5.697 5.697 0 0 0 6.113 4.531l82.782-7.728a5.698 5.698 0 0 0 5.053-6.817l-4.939-24.129c-.716-3.498-4.436-5.484-7.741-4.131l-77.843 31.856a5.7 5.7 0 0 0-3.425 6.418m-61.809-87.844a5.698 5.698 0 0 0 7.526-1.118l53.071-64a5.7 5.7 0 0 0-1.247-8.394L381.173 4.947c-2.98-1.967-7.015-.741-8.395 2.553L340.26 85.069a5.698 5.698 0 0 0 2.116 6.959'/%3E%3Cpath fill='%23452323' d='m218.4 479.836l-15.988 9.35c-12.996 7.6-29.692 3.226-37.292-9.77l-42.39-72.487c-7.6-12.996-3.226-29.692 9.77-37.292l15.988-9.35c12.996-7.6 29.692-3.226 37.292 9.77l42.39 72.487c7.601 12.996 3.226 29.692-9.77 37.292'/%3E%3Cpath fill='%23faa41a' d='m120.402 408.701l154.911-84.34l-105.898-165.808L29.384 262.586c-.903.577-38.751 35.207 2.814 100.288s88.204 45.827 88.204 45.827'/%3E%3Cpath fill='%23f8f8f8' d='M362.532 152.23c46.335 72.548 74.407 151.142 55.022 163.522c-19.385 12.38-78.885-46.14-125.22-118.689S217.928 45.922 237.312 33.541s78.885 46.14 125.22 118.689'/%3E%3Cellipse cx='301.36' cy='191.299' fill='%23faa41a' rx='34.502' ry='73.109' transform='rotate(-32.567 301.337 191.289)'/%3E%3Cpath fill='white' d='M416.708 316.293c-16.932 10.814-74.444-48.976-120.779-121.525S219.534 44.896 236.466 34.082c.975-.623 2.069-1.034 3.264-1.261c-7.988-.183-15.814 3.983-20.445 12.839c-20.408 39.028-72.491 125.618-72.491 125.618s-25.845 34.8 19.588 105.935s89.296 62.233 89.296 62.233s99.643-10.179 143.424-12.27c10.365-.495 17.584-6.25 20.583-14.014c-.796 1.31-1.781 2.367-2.977 3.131'/%3E%3Cpath fill='%23452323' d='M52.892 308.174a14.074 14.074 0 0 1-11.883-6.505c-4.187-6.556-2.267-15.264 4.289-19.451l57.911-36.986c6.555-4.186 15.264-2.267 19.451 4.289s2.267 15.264-4.289 19.451L60.46 305.958a14.018 14.018 0 0 1-7.568 2.216'/%3E%3C/svg%3E");
    display: inline-block;
    width: 4rem;
    height: 4rem;
    vertical-align: -0.125em;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-50%, -50%);
} */

.news-card:hover::before {
    width: 100%;
}

@media (max-width: 767px) {
    .news-card::before {
        content: "";
        position: absolute;
        width: 0%;
        height: 1px;
        background-color: var(--orange-main-color);
        bottom: 0;
        left: 0;
        border-radius: inherit;
        transition: .3s;
    }

    .news-card:hover::before {
        width: 100%;
        height: 4px;
    }


}


.news-card__img {
    width: 200px;
    aspect-ratio: 1 / 1;
    transition: .3s;
}

.news-card__img-holder {
    display: flex;
    align-items: self-start;
    justify-content: center;
}

.news-card .news-card__img {
    transform: scale(1.03);

}

.news-card__info {
    display: flex;
    flex-direction: column;
    color: #ddd;
}

.news--external .news-card__info {
    color: var(--brown-main-color);
}

.news-card__desc {
    margin-bottom: 1rem;
}

.news-card__date-wrapper {
    width: fit-content;
    text-align: center;
    padding: .5rem;
    padding-bottom: 0;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    color: var(--orange-main-color);
    color: #ddd;
    font-size: .9rem;
}

.news--external .news-card__date-wrapper {
    color: var(--brown-main-color);
}


@media (max-width: 767px) {

    .news_cards-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }


    .news-card {
        flex-direction: column;
    }

    .news-card__img {
        width: 100%;
    }

}