.card{
    background-color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    width: 250px;
    height: 350px;
    margin: 10px;
    min-width: 230px;
    .card-image{
        width: 100%;
        height: 100%;
        max-height: 150px;
        svg{
            width: 100%;
            height: 100%;
            object-fit: cover;
            path{
                fill: #E62564;
            }
            circle{
                fill: #E62564;
            }
        }
    }
    .card-content{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        h3{
            color: #420c39;
            font-weight: 700;
            font-size: 1.25rem;
            text-align: center;
            margin-bottom: 15px;
        }
        .separator{
            display: block;
            width: 100%;
            height: 1px;
            background-color: #E62564;
            margin-bottom: 20px;
        }
        p{
            color: #000000;
            font-weight: 700;
            font-size: 0.9rem;
            text-align: center;
        }
    }
}