.card {
    max-width: 404px;
}

.card:hover .card-img {
    transform: scale(1.017);
    transition: all 200ms ease;
}

.card:hover .card-title {
    color: var(--orange-link);
    transition: color 200ms ease;
}

.card-link {
    display: flex;
    flex-direction: column;
    gap: 11px;
    text-decoration: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.card-img {
    max-width: 100%;
    border-radius: 7px;
    object-fit: cover;
    transition: all 200ms ease;
}

.card-title {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--main-color);
    transition: color 200ms ease;
}

.card-text {
    max-width: 300px;
    font-family: 'Inter';
    font-size: 15px;
    line-height: 150%;
    text-align: justify;
    color: var(--article-color);
}

.load-more {
    position: absolute;
    bottom: -186px;
    left: calc(50% - 164px/2);
    padding: 12px 41px;
    border: none;
    border-radius: 999px;
    font-family: "Inter";
    font-size: 15px;
    font-weight: 300;
    color: #FFF;
    background: #121212;
    transition: color 200ms ease, background 200ms ease;
    cursor: pointer;
}

.load-more:hover {
    background: #000;
}

@media (max-width: 1240px) {
    .load-more {
        bottom: -156px;
    }
}