/* ==========================================================================
   Programs Page
   ========================================================================== */

/* --- Page Header --- */
.lfp-page-header {
    background: var(--color-primary);
    padding: 8rem 0 3rem;
    text-align: center;
}

.lfp-page-header__title {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lfp-page-header__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Programs List --- */
.lfp-programs {
    padding: 4rem 0;
}

.lfp-program {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.lfp-program:last-child {
    border-bottom: none;
}

.lfp-program--reverse {
    flex-direction: row-reverse;
}

/* --- Image Placeholder --- */
.lfp-program__image {
    flex: 0 0 320px;
}

.lfp-program__placeholder {
    width: 320px;
    height: 220px;
    background: var(--color-section-alt);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
}

.lfp-program__placeholder i {
    font-size: 3.5rem;
    color: var(--color-accent);
    opacity: 0.7;
}

/* --- Content --- */
.lfp-program__content {
    flex: 1;
}

.lfp-program__title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.lfp-program__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* --- CTA Section --- */
.lfp-programs-cta {
    background: var(--color-section-alt);
    padding: 4rem 0;
    text-align: center;
}

.lfp-programs-cta p {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.lfp-programs-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .lfp-program,
    .lfp-program--reverse {
        flex-direction: column;
        text-align: center;
    }

    .lfp-program__image {
        flex: none;
    }

    .lfp-program__placeholder {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .lfp-page-header {
        padding: 6rem 0 2rem;
    }

    .lfp-page-header__title {
        font-size: 2rem;
    }

    .lfp-program {
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .lfp-program__placeholder {
        height: 160px;
    }

    .lfp-programs-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}
