.card {
    border: 1px black solid;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 8px;
}

.card_title {}

.card_image_block {}

.card_description {}

.items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
}

.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9e9e9;
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__body {
    padding: 12px;
}

.product-card__title {
    font-size: 16px;
    line-height: 1.3;
    margin: 0 0 8px;
    font-weight: 700;
    color: #111;
}

.product-card__description {
    font-size: 14px;
    line-height: 1.45;
    color: #444;
}

.product-card__description p {
    margin: 0 0 8px;
}

.product-card__description p:last-child {
    margin-bottom: 0;
}

.product-card__button {}

.product-card__button button {
    width: 100%;
    border: none;
    min-height: 50px;
    cursor: pointer;
    background-color: lightcoral;
}

.product-card__button button:hover {
    background-color: darkred;
}

@media (min-width: 600px) {
    .items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}