/* ==========================================================================
   S25 IMD Showcase - Graduates Styles (PHYSICS-BASED PROFILES VERSION)
   ========================================================================== */

.graduates-hero {
    background: linear-gradient(135deg, rgba(63, 83, 72, 0.8) 0%, rgba(109, 103, 81, 0.7) 50%, rgba(243, 153, 43, 0.6) 100%), url('../../images/college-interior.jpg');
    background-size: cover;
    background-position: bottom right;
    background-attachment: fixed;
    color: var(--color-white);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.graduates-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.graduates-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.graduates-hero .highlight {
    color: var(--color-primary);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.graduates-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.graduates-hero p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   INDEX PAGE: Graduates Section with Physics-Based Profiles
   ========================================================================== */

/* Main graduates section for index page */
.graduates {
    padding: var(--spacing-6xl) 0;
    background: var(--color-white);
    overflow: hidden;
}

/* PHYSICS PROFILES CONTAINER - FOR INDEX PAGE */
.graduates-carousel {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f5 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: var(--spacing-xl) auto 0 auto; /* Center it horizontally */
    max-width: 1200px; /* Add a max-width so it doesn't get too wide */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border-light);
}

/* PHYSICS CONTAINER - Replaces floating-container */
.physics-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: transparent;
}

/* PHYSICS PROFILES - Replaces floating-profile */
.physics-profile {
    position: absolute !important;
    z-index: 10;
    transition: transform 0.2s ease-out;
    will-change: transform;
    user-select: none;
    pointer-events: auto;
}

/* Collision effect animation */
.physics-profile.collision {
    animation: collisionPulse 0.3s ease-out;
}

@keyframes collisionPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        box-shadow: 0 0 20px rgba(243, 153, 43, 0.8);
    }
    100% {
        transform: scale(1);
    }
}

/* Profile Link */
.profile-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Profile Image Container */
.profile-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 4px solid var(--color-white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--color-white);
}

/* Enhanced hover effects for physics profiles */
.physics-profile:hover .profile-image {
    transform: scale(1.3) !important;
    box-shadow: 0 25px 50px rgba(243, 153, 43, 0.6);
    border-color: var(--color-primary);
    z-index: 100;
    transition: all 0.3s ease;
}

/* Student Image */
.student-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Placeholder Avatar */
.placeholder-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.physics-profile:hover .placeholder-avatar {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

/* Tooltip for Physics Profiles */
.profile-tooltip {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    pointer-events: none;
}

.physics-profile:hover .profile-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -80px;
}

.tooltip-content {
    background: var(--color-white);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    min-width: 180px;
    border: 2px solid var(--color-primary);
    position: relative;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.tooltip-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--color-primary);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--color-white);
}

.tooltip-content h4 {
    margin: 0 0 0.25rem 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-secondary);
    font-weight: 600;
    line-height: 1.2;
}

.tooltip-content p {
    margin: 0 0 0.25rem 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

.tooltip-hint {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-medium-gray);
    font-style: italic;
}

/* ==========================================================================
   Physics Visual Effects
   ========================================================================== */

/* Add trails for fast-moving profiles */
.physics-profile.fast-moving::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(243, 153, 43, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    z-index: -1;
    animation: trail 0.5s ease-out;
}

@keyframes trail {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Physics container interaction states */
.physics-container:hover {
    background: linear-gradient(135deg, rgba(243, 153, 43, 0.02) 0%, transparent 50%, rgba(243, 153, 43, 0.02) 100%);
}

/* ==========================================================================
   GRADUATES PAGE: Filters Section (UNCHANGED)
   ========================================================================== */
.graduates-filters {
    background: var(--color-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.filter-btn {
    background: var(--color-bg-secondary);
    color: var(--color-secondary);
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 153, 43, 0.3);
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.search-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.search-input {
    width: 100%;
    max-width: 400px;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-border-light);
    border-radius: 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(243, 153, 43, 0.1);
}

/* ==========================================================================
   GRADUATES PAGE: Grid Layout (UNCHANGED)
   ========================================================================== */
.graduates-main {
    padding: 4rem 0;
    background: var(--color-bg-secondary);
    min-height: 60vh;
}

.graduates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ==========================================================================
   SHARED: Graduate Cards (For Graduates Page Only) - UNCHANGED
   ========================================================================== */
.graduate-card {
    background: var(--color-white);
    border-radius: var(--border-radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-slow);
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.graduate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 153, 43, 0.1), transparent);
    transition: left 0.5s ease;
}

.graduate-card:hover::before {
    left: 100%;
}

.graduate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(109, 103, 81, 0.15);
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f9f8f6 100%);
    z-index: 10;
    text-decoration: none;
    color: inherit;
}

.graduate-image {
    margin-bottom: 1.25rem;
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.25rem auto;
    flex-shrink: 0;
}

.graduate-card .student-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    border: 4px solid var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.graduate-card:hover .student-image {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(243, 153, 43, 0.3);
    border-color: var(--color-primary);
}

.graduate-card .placeholder-avatar {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-medium-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.4s ease;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.graduate-card .placeholder-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.graduate-card:hover .placeholder-avatar {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(243, 153, 43, 0.3);
}

.graduate-card:hover .placeholder-avatar::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.graduate-info {
    transition: var(--transition-normal);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
}

.graduate-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.graduate-card:hover .graduate-info h3 {
    color: var(--color-secondary);
}

.program {
    color: var(--color-primary);
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.graduate-card:hover .program {
    color: var(--color-secondary);
}

.bio {
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.skill {
    background: var(--color-bg-secondary);
    color: var(--color-secondary);
    padding: 0.3rem 0.7rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.graduate-card:hover .skill {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* ==========================================================================
   Graduate Actions (For Graduate Cards Only) - UNCHANGED
   ========================================================================== */
.graduate-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 0.75rem;
    flex-shrink: 0;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.save-contact-btn-card {
    background: linear-gradient(135deg, var(--color-primary), #e0871f);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 20;
    box-shadow: 0 4px 12px rgba(243, 153, 43, 0.3);
}

.save-contact-btn-card:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(243, 153, 43, 0.4);
    background: linear-gradient(135deg, #e0871f, var(--color-secondary));
}

.save-contact-btn-card:active {
    transform: scale(1.05);
}

.graduate-card:hover .save-contact-btn-card {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 15;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-medium-gray));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(243, 153, 43, 0.4);
}

.graduate-card:hover .social-links a {
    animation: bounce 0.6s ease infinite alternate;
}

.graduate-card:hover .social-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.graduate-card:hover .social-links a:nth-child(2) {
    animation-delay: 0.2s;
}

.graduate-card:hover .social-links a:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes bounce {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Portfolio Preview for Graduate Cards - UNCHANGED */
.portfolio-preview {
    display: flex;
    gap: 0.3rem;
    margin: 0.75rem 0 1rem 0;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.graduate-card:hover .portfolio-preview {
    opacity: 1;
}

.portfolio-piece-small {
    width: 48px;
    height: 38px;
    border-radius: 0.3rem;
    overflow: hidden;
    border: 1.5px solid var(--color-border-light);
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    background: var(--color-bg-secondary);
}

.portfolio-piece-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.graduate-card:hover .portfolio-piece-small {
    transform: scale(1.05);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(243, 153, 43, 0.2);
}

.graduate-card:hover .portfolio-piece-small img {
    transform: scale(1.1);
}

/* ==========================================================================
   Loading and Error States
   ========================================================================== */
.loading-message,
.error-message,
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--color-medium-gray);
}

.loading-message i,
.error-message i,
.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    display: block;
}

.loading-message p,
.error-message p,
.empty-state p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-medium-gray);
    font-family: var(--font-body);
}

.empty-state h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    margin: 0 0 0.5rem 0;
}

.retry-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.retry-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--color-border-light);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 0;
    color: var(--color-text-muted);
}

.no-results h3 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

/* CTA Section for Index Page */
.graduates-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
}

.graduates-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-medium-gray);
}

/* ==========================================================================
   Responsive Design for Physics Profiles
   ========================================================================== */
@media (max-width: 768px) {
    /* INDEX PAGE: Physics profiles responsive */
    .graduates-carousel {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .physics-container {
        height: 300px;
    }
    
    .profile-image {
        width: 70px;
        height: 70px;
        border-width: 3px;
    }
    
    .physics-profile:hover .profile-image {
        transform: scale(1.2) !important;
    }
    
    .placeholder-avatar {
        font-size: 1.3rem;
    }
    
    .tooltip-content {
        min-width: 150px;
        padding: 0.75rem 1rem;
    }
    
    .tooltip-content h4 {
        font-size: 0.9rem;
    }
    
    .tooltip-content p {
        font-size: 0.75rem;
    }
    
    /* GRADUATES PAGE: Hero responsive */
    .graduates-hero {
        padding: 6rem 0 3rem;
        background-attachment: scroll;
    }
    
    .graduates-hero h1 {
        font-size: 2.5rem;
    }
    
    .graduates-hero p {
        font-size: 1rem;
    }
    
    .graduates-filters {
        top: 70px;
        padding: 1.5rem 0;
    }
    
    .filter-controls {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .graduates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* SHARED: Card responsive */
    .graduate-card {
        min-height: 400px;
        padding: 1.25rem;
    }
    
    .graduate-card:hover {
        transform: translateY(-8px);
    }
    
    .graduate-image {
        width: 100px;
        height: 100px;
    }
    
    .graduate-card .student-image,
    .graduate-card .placeholder-avatar {
        width: 100px;
        height: 100px;
    }
    
    .graduate-card .placeholder-avatar {
        font-size: 2rem;
    }
    
    .graduate-info h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    /* INDEX PAGE: Physics profiles responsive */
    .graduates-carousel {
        min-height: 280px;
        padding: 1rem;
    }
    
    .physics-container {
        height: 240px;
    }
    
    .profile-image {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .physics-profile:hover .profile-image {
        transform: scale(1.15) !important;
    }
    
    .placeholder-avatar {
        font-size: 1.1rem;
    }
    
    .tooltip-content {
        min-width: 130px;
        padding: 0.5rem 0.75rem;
    }
    
    .tooltip-content h4 {
        font-size: 0.8rem;
    }
    
    .tooltip-content p {
        font-size: 0.7rem;
    }
    
    .tooltip-hint {
        font-size: 0.65rem;
    }
    
    /* SHARED: Card responsive */
    .graduate-card {
        min-height: 360px;
        padding: 1rem;
    }
    
    .graduate-card:hover {
        transform: translateY(-6px);
    }
    
    .graduate-image {
        width: 90px;
        height: 90px;
    }
    
    .graduate-card .student-image,
    .graduate-card .placeholder-avatar {
        width: 90px;
        height: 90px;
    }
    
    .graduate-card .placeholder-avatar {
        font-size: 1.8rem;
    }
    
    .graduate-info h3 {
        font-size: 1.1rem;
    }
    
    .program {
        font-size: 0.75rem;
    }
    
    .bio {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .portfolio-piece-small {
        width: 36px;
        height: 30px;
    }
}