/* ===============================
   ABOUT HERO SECTION (PREMIUM)
================================= */
.about-hero-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* GRADIENT OVERLAY */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.45)
    );
    backdrop-filter: blur(5px);
    z-index: 1;
}

/* CONTAINER */
.about-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* CONTENT */
.about-hero-content {
    text-align: center;
    color: #ffffff;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

/* TITLE */
.about-hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* DIVIDER */
.about-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* LINE */
.about-hero-line {
    width: 160px;
    height: 10px;
    background: #ffffff;
    opacity: 0.7;
}

/* ICON */
.about-hero-icon {
    width: 18px;
    height: 18px;
    display: flex;
}

.about-hero-icon svg {
    fill: #CE0F2C;
    width: 100%;
    height: 100%;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 24px;
    }

    .about-hero-line {
        width: 40px;
    }
}