.card-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #E1EEF3;
    border-radius: 1rem;
    padding: 0 1rem 1rem 1rem;
    max-width: 12rem;
    min-width: 12rem;
    height: 100%;
}

.card-product .link {
    display: flex;
    align-items: start;
    justify-content: end;
    gap: 0.4rem;
    width: 100%;
}

.card-product h3 {
    margin: 0;
    width: 100%;
    font-size: 0.8rem;
}

.card-product svg {
    width: 1.5rem;
    height: auto;
    aspect-ratio: 1/1;
    background-color: white;
    padding: 0.4rem;
    border-radius: 1rem;
    filter: drop-shadow(0px 4px 10px #00000026);
    box-sizing: border-box;
}

@media only screen and (max-width: 30rem) {
    .card-product {
        max-width: 20rem;
    }
}
