/* Programs Page Specific Styles */

.mini-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.age-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 1.5rem auto 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), #7c3aed);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.age-guide-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(99, 102, 241, 0.55);
    color: #fff;
}

.age-guide-btn .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.age-guide-btn:hover .arrow {
    transform: translateX(5px);
}

/* Pillar Layout */
.program-pillar {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--surface-border);
}

.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.pillar-title {
    margin-bottom: 0 !important;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.pillar-case-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
}

/* Staff Section */
.staff-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--surface-border);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.staff-group {
    display: flex;
    flex-direction: column;
}

.staff-label {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.staff-info h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.staff-bio {
    font-size: 0.85rem;
    color: var(--text-muted);
    list-style: none;
    padding-left: 0;
}

.staff-bio li {
    margin-bottom: 0.25rem;
}

.youtube-icon {
    color: #FF0000;
    vertical-align: middle;
    margin-left: 0.4rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: var(--surface-bg);
    border-radius: 20px;
    margin-bottom: 6rem;
    border: 1px solid var(--surface-border);
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Mobile Overrides for Programs */
@media (max-width: 768px) {
    .mini-hero {
        padding: 4rem 0 2rem;
    }

    .age-guide-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .pillar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .pillar-title {
        font-size: 1.4rem;
    }

    .pillar-case-btn {
        width: 100%;
        text-align: center;
    }

    .program-detail-grid {
        grid-template-columns: 1fr;
    }

    .staff-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .staff-info {
        width: 100%;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }
}
