﻿.card {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 330px;
}

.card__description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 2.4rem 3.2rem;
    border-radius: 24px;
    background: linear-gradient(182.12deg, rgba(0, 0, 0, 0) 43.26%, #000000 106.08%);
}

.card__img {
    border-radius: 24px;
    height: auto;
}

.card__title {
    padding: 0 0 4px;
    color: #fff;
    font-size: 2.1rem;
}

.card__subtitle {
    max-width: 70%;
    color: #fff;
    opacity: 0.75;
}

@media only screen and (min-width: 62.0625em) {
    .card {
        min-width: 405px;
        max-width: 405px;
    }
}