/**
 * CSG Programs Hero Widget Styles
 *
 * @package CsgPersonalized
 * @since   1.0.2
 */

/* ── Section ─────────────────────────────────── */
.csg-el-programs-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: var(--csg-dark, #0f172a);
    overflow: hidden;
    padding: 120px 0 80px;
}

.csg-el-programs-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.csg-el-programs-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.4), rgba(30, 136, 229, 0.4));
}

.csg-el-programs-hero__inner {
    position: relative;
    z-index: 2;
}

/* ── Content ─────────────────────────────────── */
.csg-el-programs-hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.csg-el-programs-hero__label {
    display: inline-block;
}

.csg-el-programs-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.csg-el-programs-hero__desc {
    font-size: 1.25rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ── CTA Button ──────────────────────────────── */
.csg-el-programs-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: white;
    color: var(--csg-dark, #0f172a);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.csg-el-programs-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.csg-el-programs-hero__cta svg {
    transition: transform 0.3s ease;
}

.csg-el-programs-hero__cta:hover svg {
    transform: translateX(4px);
}

/* ── Stats ───────────────────────────────────── */
.csg-el-programs-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.csg-el-programs-hero__stat {
    text-align: center;
    color: white;
}

.csg-el-programs-hero__stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.csg-el-programs-hero__stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    display: block;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .csg-el-programs-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .csg-el-programs-hero__title {
        font-size: 2.25rem;
    }

    .csg-el-programs-hero__stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }
}
