.card-evento {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    width: 100%;
    max-width: 418px;
    margin: 0 auto;
}

.card-evento img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.card-evento .contenido {
    padding: 15px;
}

.card-evento .fecha {
    color: black;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-evento h5 {
    font-weight: bold;
    color: #004aad;
    margin-bottom: 15px;
}

.card-evento .btn-leer {
    background: white;
    color: #004aad;
    border-radius: 10px;
    border: 1px solid #004aad;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.card-evento .btn-leer:hover {
    background: #004aad;
    color: #fff;
}
