/**
 * Humanitas Intern Availability - Frontend Styles
 * Overlapping avatar stack and intake card styling
 */

/* Container */
.humanitas-intern-availability {
    padding: 10px 0;
}

/* Header text */
.humanitas-intern-header {
    color: #ff9900;
    font-size: 0.95em;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Intake grid — 2 columns on desktop/tablet, 1 on mobile */
.humanitas-intake-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Intake card */
.humanitas-intake-card {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #ff9900;
    border-radius: 4px;
    padding: 16px 20px;
}

.humanitas-intake-title {
    margin: 0 0 4px 0;
    font-size: 1.05em;
    color: #333;
    font-weight: 600;
}

.humanitas-intake-date {
    margin: 0 0 12px 0;
    font-size: 0.9em;
    color: #666;
}

/* Overlapping avatar stack */
.humanitas-intern-stack {
    display: flex;
    align-items: center;
}

.humanitas-intern-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    margin-left: -12px;
    position: relative;
    transition: transform 0.2s ease, z-index 0s;
}

.humanitas-intern-photo:first-child {
    margin-left: 0;
}

.humanitas-intern-photo:hover {
    transform: scale(1.15);
    z-index: 10;
}

/* Stacking order: first photo on top, descending */
.humanitas-intern-photo:nth-child(1) { z-index: 6; }
.humanitas-intern-photo:nth-child(2) { z-index: 5; }
.humanitas-intern-photo:nth-child(3) { z-index: 4; }
.humanitas-intern-photo:nth-child(4) { z-index: 3; }
.humanitas-intern-photo:nth-child(5) { z-index: 2; }
.humanitas-intern-photo:nth-child(6) { z-index: 1; }

/* "+X more" badge */
.humanitas-intern-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff9900;
    color: #fff;
    font-size: 0.85em;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
    margin-left: -12px;
    position: relative;
    z-index: 0;
}

/* No photos message */
.humanitas-intake-preparing {
    color: #888;
    font-style: italic;
    font-size: 0.9em;
    margin: 0;
}

/* Total students footer */
.humanitas-intern-total {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #e5e5e5;
    font-size: 0.9em;
    color: #666;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .humanitas-intake-grid {
        grid-template-columns: 1fr;
    }

    .humanitas-intern-photo,
    .humanitas-intern-more {
        width: 42px;
        height: 42px;
        margin-left: -10px;
        font-size: 0.8em;
    }

    .humanitas-intern-photo:first-child {
        margin-left: 0;
    }

    .humanitas-intake-card {
        padding: 12px 14px;
    }
}

@media (max-width: 480px) {
    .humanitas-intern-photo,
    .humanitas-intern-more {
        width: 38px;
        height: 38px;
        margin-left: -8px;
        font-size: 0.75em;
    }

    .humanitas-intern-photo:first-child {
        margin-left: 0;
    }
}
