﻿
.card {
    display: inline-block;
    width: 100%;
    /* margin-bottom: 1rem; */
    cursor: pointer; /* El cursor cambia para indicar que es clickeable */
    transition: transform 0.3s ease-in-out; /* Transición suave para el agrandamiento */
    border-radius: 10px;
}

    /* Efecto de agrandado cuando el cursor pasa por encima */
    .card:hover {
        transform: scale(1.02); /* Aumenta el tamaño de la tarjeta un 5% */
    }

    /* Hacer que la tarjeta sea clickeable por completo, incluso el área del texto */
    .card img,
    .card .p-20 {
        width: 100%;
        display: block; /* Para asegurar que ocupe todo el espacio */
    }


    .card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
    }

    .card .p-20 {
        padding: 20px;
    }

.h1, .h2, h1, h2 {
    color: #212529 !important;
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 1.2;
}

.h3, .h4, .h5, .h6, h3, h4, h5, h6 {
    color: #212529 !important;
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 1.5;
}

.aviewmore {
    padding: 16px 20px;
    border-radius: 0px 0px 0px 25px;
    border: unset;
    background-color: #64aaff;
    height: 100%;
    margin-right: -2px;
    color: white;
    line-height: 1;
}

.aviewmore2 {
    padding: 11px 20px;
    border-radius: 20px;
    border: unset;
    background-color: #64aaff;
    height: 100%;
    margin-right: -2px;
    color: white;
    line-height: 1;
}
