/* Crew Members Styles */
.slt-crew-section {
    padding: 60px 20px;
}

.slt-crew-header {
    text-align: center;
    margin-bottom: 50px;
}

.slt-crew-header .slt-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.slt-crew-header .slt-crew-divider {
    width: 60px;
    height: 4px;
    background: #2563eb;
    margin: 0 auto 16px;
    border-radius: 2px;
}

.slt-crew-header .slt-section-subtitle {
    font-size: 18px;
    color: #666666;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.slt-crew-grid {
    display: grid;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.slt-crew-grid.slt-grid-1 {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.slt-crew-grid.slt-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.slt-crew-grid.slt-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.slt-crew-grid.slt-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.slt-crew-card {
    border-radius: 12px;
    overflow: hidden;
}

.slt-crew-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.slt-crew-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slt-crew-card:hover .slt-crew-image img {
    transform: none;
}

.slt-crew-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slt-crew-card:hover .slt-crew-overlay {
    opacity: 1;
}

.slt-crew-info {
    color: white;
}

.slt-crew-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.slt-crew-position {
    font-size: 16px;
    color: #2563eb;
    margin-bottom: 8px;
    font-weight: 600;
}

.slt-crew-experience {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.slt-crew-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #e5e7eb;
}

.slt-crew-content {
    padding: 20px;
    background: #f9fafb;
    text-align: center;
}

.slt-card-below .slt-crew-name {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.slt-card-below .slt-crew-position {
    font-size: 16px;
    color: #2563eb;
    margin-bottom: 8px;
    font-weight: 600;
}

.slt-card-below .slt-crew-experience {
    font-size: 14px;
    color: #2563eb;
    margin-bottom: 12px;
    font-weight: 500;
}

.slt-card-below .slt-crew-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
}

@media (max-width: 1024px) {
    .slt-crew-grid.slt-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .slt-crew-section {
        padding: 40px 20px;
    }
    
    .slt-crew-grid.slt-grid-2,
    .slt-crew-grid.slt-grid-3,
    .slt-crew-grid.slt-grid-4 {
        grid-template-columns: 2fr;
    }
    
    .slt-crew-overlay {
        padding: 20px;
    }
    
    .slt-crew-name {
        font-size: 20px;
    }
}

@media (max-width: 550px) {
    .slt-crew-grid.slt-grid-2,
    .slt-crew-grid.slt-grid-3,
    .slt-crew-grid.slt-grid-4 {
        grid-template-columns: 1fr;
    }
}