/* Alumni Grid Styles - Circular Profile Layout */

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.alumni-profile {
    text-align: center;
}

.profile-image-container {
    position: relative;
    margin-bottom: 15px;
}

.profile-image-wrapper{
    position: absolute;
    top: -5px;
    right: -5px;
    z-index:10; 
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.profile-image {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.arrow-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.arrow-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.4);
}

.profile-info {
    text-align: center;
    margin-top: 15px;
}

.profile-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.3;
    font-family: 'Kanit', sans-serif;
}

.profile-position {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Noto Sans Thai', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .profile-name {
        font-size: 14px;
    }
    
    .profile-position {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-name {
        font-size: 16px;
    }
    
    .profile-position {
        font-size: 14px;
    }
}

/* Animation for arrow icon */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.arrow-icon {
    animation: pulse 2s infinite;
}

/* Hover effects */
.alumni-profile:hover .arrow-icon {
    animation: none;
    transform: scale(1.2);
    background: #ff5722;
}