.section-header {
    padding-top: 100px;
    text-align: center;
    width: 100%;
    line-height: 34px;
}

.section-header h1 {color: #3e2560; font-size: clamp(16px, 3vw, 2.5rem); text-transform: uppercase;}
.section-header h3 {color: #2E3A45; font-size: clamp(14px, 3vw, 1.2rem); text-transform: uppercase;}
@media (max-width: 900px) {
    .section-header {line-height: 20px;}
    .section-header h1 {font-size: clamp(20px, 3vw, 2.5rem);}
    .section-header h3 {font-size: clamp(16px, 3vw, 1.2rem);}
}

.cast-section {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

/* Grid Layout */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 1100px;
    margin: 30px auto;
}

/* Individual Card */
.cast-card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    transition: 0.25s ease;
}

/* Photo */
.cast-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Name + Role */
.cast-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #111;
}

.cast-role {
    margin-top: -10px;
    font-size: 0.95rem;
    color: #666;
}

/* Mobile Tweaks */
@media (max-width: 500px) {
    .cast-photo {
        height: 180px;
    }

    .cast-title {
        font-size: 2rem;
    }
}
