body {
    font-family: Roboto, sans-serif !important;  
}

#ss-menu {
    font-size: 20px !important;
}

.gallery-ss img{ 
   cursor:pointer !important; 
}
/* profes responsive */
/* GRID PRINCIPAL */
.profesores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 10px;
}

/* CARD */
.prof-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    text-align: center;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* IMAGEN */
.prof-img-wrap {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}

.prof-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0,0,0,0.18);
}

/* TEXTO */
.prof-nombre {
    font-size: 20px !important;
    font-weight: 600;
    color: #A72A2A;
    margin-bottom: 5px;
}

.prof-rol {
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 10px;
}

.prof-desc {
    color: #6b7280;
    font-size: 14px;
}

/* ===========================
   📱 MEDIA QUERIES
   =========================== */

/* 768px – tablets */
@media (max-width: 768px) {
    .prof-img-wrap {
        width: 140px;
        height: 140px;
    }
    .prof-nombre {
        font-size: 18px !important;
    }
}

/* 480px – mobile estándar */
@media (max-width: 480px) {
    .prof-card {
        padding: 20px 15px;
    }
    .prof-img-wrap {
        width: 120px;
        height: 120px;
    }
    .prof-desc {
        font-size: 13px;
    }
}

/* 320px – mobile chico */
@media (max-width: 320px) {
    .profesores-grid {
        gap: 15px;
    }
    .prof-card {
        padding: 18px 12px;
    }
    .prof-img-wrap {
        width: 105px;
        height: 105px;
    }
    .prof-nombre {
        font-size: 17px !important;
    }
    .prof-desc {
        font-size: 12.5px;
    }
}