/**
 * FRY România - Despre FRY
 */

/* =========================================================
   HERO
   ========================================================= */

.fry-about-hero {
    position: relative;
    width: 100%;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.80) 28%,
            rgba(0, 0, 0, 0.42) 53%,
            rgba(0, 0, 0, 0.05) 78%
        ),
        url("/wp-content/uploads/2026/09/despre.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fry-about-hero__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

.fry-about-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    color: #fff;
}

.fry-about-hero__eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 25px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fry-about-hero__eyebrow::before {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    background: #86b817;
}

.fry-about-hero__title {
    margin: 0 0 26px;

    color: #fff;

    font-size: clamp(42px, 4.4vw, 68px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.fry-about-hero__title span {
    display: block;
    color: #86b817;
}

.fry-about-hero__text {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
}

.fry-about-hero__features {
    display: flex;
    align-items: stretch;
    gap: 0;

    margin-top: 44px;
}

.fry-about-hero__feature {
    position: relative;
    display: flex;
    flex-direction: column;

    padding: 0 28px;

    color: #fff;
    font-size: 12px;
    line-height: 1.45;
    text-transform: uppercase;
}

.fry-about-hero__feature:first-child {
    padding-left: 0;
}

.fry-about-hero__feature + .fry-about-hero__feature {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.fry-about-hero__feature strong {
    color: #86b817;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.fry-about-hero__feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .fry-about-hero {
        min-height: 570px;

        background-image:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.93) 0%,
                rgba(0, 0, 0, 0.78) 55%,
                rgba(0, 0, 0, 0.40) 100%
            ),
            url("/wp-content/uploads/2026/09/despre.png");

        background-position: 62% center;
    }

    .fry-about-hero__inner {
        padding: 60px 18px;
    }

    .fry-about-hero__content {
        max-width: 100%;
    }

    .fry-about-hero__eyebrow {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .fry-about-hero__eyebrow::before {
        width: 38px;
    }

    .fry-about-hero__title {
        margin-bottom: 20px;
        font-size: 39px;
        line-height: 1.06;
    }

    .fry-about-hero__text {
        max-width: 430px;
        font-size: 16px;
        line-height: 1.55;
    }

    .fry-about-hero__features {
        flex-wrap: wrap;
        gap: 18px 0;
        margin-top: 32px;
    }

    .fry-about-hero__feature {
        width: 50%;
        padding: 0 14px;
    }

    .fry-about-hero__feature:first-child {
        padding-left: 0;
    }

    .fry-about-hero__feature:nth-child(3) {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }
}


/* =========================================================
   TELEFOANE MICI
   ========================================================= */

@media (max-width: 420px) {

    .fry-about-hero {
        min-height: 550px;
    }

    .fry-about-hero__title {
        font-size: 34px;
    }

    .fry-about-hero__features {
        display: block;
    }

    .fry-about-hero__feature,
    .fry-about-hero__feature:nth-child(3) {
        width: 100%;
        padding: 8px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .fry-about-hero__feature:last-child {
        border-bottom: 0;
    }
}