.consultas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

/* CARD */
.consulta-card {
    width: 196px;
    height: 240px; /* 🔥 altura uniforme */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: #333;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: all 0.25s ease;

    display: flex;
    flex-direction: column;
}

.consulta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
}

/* ICONO */
.consulta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    flex-shrink: 0;
}

.consulta-icon img {
    width: 60px;
    height: 60px;
    filter: invert(1) brightness(200) !important;
}

/* BODY */
.consulta-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    background: #fff;
}

/* TITULO */
.consulta-body h4 {
    margin: 0;
    font-size: clamp(0.9rem, 1vw, 1.05rem); /* 🔥 adaptable */
    font-weight: 600;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* 🔥 máximo 2 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* DESCRIPCIÓN (opcional) */
.consulta-body p {
    margin-top: 5px;
    color: #777;
    font-size: 0.85rem;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}