/**
 * ISPS Theme — components/cards.css
 */
.isps-card {
    background: #ffffff;
    border-radius: var(--isps-radius);
    padding: 28px 24px;
    box-shadow: var(--isps-shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.isps-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(57,92,184,0.12);
}
.isps-card h3.text-navy,
.isps-card h4.text-navy {
    color: var(--isps-navy) !important;
    margin: 0 0 8px;
    font-weight: 700;
}
.isps-card i.text-blue { color: var(--isps-blue) !important; }

/* Cards de carrera (home) */
.carrera-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: transform 0.3s ease;
    text-align: left;
}
.carrera-card:hover { transform: translateY(-6px); }
.carrera-img-wrapper { width: 100%; height: 250px; overflow: hidden; }
.carrera-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.carrera-body { padding: 30px; }
.carrera-body h3 { font-size: 1.4rem; color: var(--isps-navy); margin-bottom: 12px; }
.carrera-body p { color: var(--isps-texto-light); margin-bottom: 20px; }

/* Testimonios */
.testimonio-card {
    background: rgba(255,255,255,0.95);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 6px solid var(--isps-yellow);
}
.testimonio-card p { font-style: italic; color: var(--isps-text); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }
.testimonio-author { font-weight: 800; color: var(--isps-blue-dark); font-size: 1rem; }
.testimonio-tag { font-size: 0.8rem; color: var(--isps-yellow); font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
