.article-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    background-color: #fff;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #F7F7F7;
    box-shadow: 0px 101px 40px rgba(219, 219, 219, 0.01), 0px 57px 34px rgba(219, 219, 219, 0.05), 0px 25px 25px rgba(219, 219, 219, 0.09), 0px 6px 14px rgba(219, 219, 219, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;
}

.article-card .article-card__title {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    color: #292D32;
}

.article-card__picture {
    height: 216px;
    width: 100%;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

.article-card__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}


.article-card .article-card__tags {
    display: flex;
    gap: 8px;
    margin-top: auto;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.article-card .article-card__tag {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #474766;
    padding: 8px 12px;
    border-radius: 100px;
    background-color: #E5F1FF;
}

@media screen and (hover:hover) {
    .article-card:hover {
        transform: translateY(-3px);
        box-shadow: 0px 101px 40px rgba(102, 98, 98, 0.01), 0px 57px 34px rgba(140, 136, 136, 0.05), 0px 25px 25px rgba(219, 219, 219, 0.09), 0px 6px 14px rgba(70, 70, 70, 0.1);
    }
}

@media screen and (max-width: 960px) {
    .article-card {
        padding: 12px;
        gap: 12px;
    }

    .article-card .article-card__picture {
        height: 160px;
    }

    .article-card .article-card__title {
        font-size: 16px;
    }
}

@media screen and (max-width: 680px) {
    .article-card .article-card__picture {
        height: 210px;
    }
}

@media screen and (max-width: 550px) {
    .article-card .article-card__picture {
        height: 160px;
    }
}
