.news_card {
    min-width: 0;
}

.news_card__top {
    position: relative;
}

.news_card__media {
    position: relative;
    display: block;
    height: auto;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #e4e5e8;
    aspect-ratio: 402 / 440;
}

.news_card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(35, 35, 40, 0) 45%, rgba(35, 35, 40, 0.55) 100%);
    pointer-events: none;
}

.news_card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.325s ease-in-out;
}

.news_card__media:hover img {
    transform: scale(1.025);
}

.news_card__time {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
}

.news_card__time svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
}

.news_card__body {
    padding-top: 1.25rem;
}

.news_card__date {
    display: block;
    margin-bottom: 0.85rem;
    color: rgba(35, 35, 40, 0.46);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.0075rem;
    text-transform: uppercase;
}

.news_card__title {
    margin: 0 0 1.2rem;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.0075rem;
}

.news_card__title a {
    color: inherit;
    text-decoration: none;
}

.news_card__title a:hover {
    color: #D5B165;
}

.news_card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: rgba(35, 35, 40, 0.55);
    font-size: 1rem;
    line-height: 1.35;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
    .news_card__media {
        border-radius: 12px;
    }

    .news_card__body {
        padding-top: 0.5625rem;
    }

    .news_card__title {
        margin-bottom: 0.8125rem;
        font-size: 1.25rem;
    }

    .news_card__date {
        margin-bottom: 0.75rem;
    }
}

@media screen and (max-width: 767px) {
    .news_card__media {
        border-radius: 0.5rem;
        aspect-ratio: 1 / 1.145;
    }

    .news_card__body {
        padding-top: 0.8125rem;
    }

    .news_card__title {
        font-size: 1.125rem;
    }

    .news_card__excerpt {
        font-size: 0.8375rem;
    }
}