/**
 * CSG About Hero Widget Styles
 *
 * @package CsgPersonalized
 * @since   1.0.1
 */

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

/* Background image */
.csg-el-about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

/* Overlay */
.csg-el-about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.3), rgba(30, 136, 229, 0.3));
}

/* Content area */
.csg-el-about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Label */
.csg-el-about-hero__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

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

/* Description */
.csg-el-about-hero__desc {
    font-size: 1.25rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 60px;
}

/* Stats grid */
.csg-el-about-hero__stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Stat number */
.csg-el-about-hero__stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

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

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

    .csg-el-about-hero__title {
        font-size: 2.5rem;
    }

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

@media (max-width: 480px) {
    .csg-el-about-hero__title {
        font-size: 2rem;
    }

    .csg-el-about-hero__stats {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
}
