/* ==========================================================
   PROBLEM
========================================================== */

.problem{

    position:relative;

    overflow:hidden;

    background:#F8FAFC;

    color:var(--pz-text);

}

/* ==========================================================
   BACKGROUND
========================================================== */

.problem::before{

    content:"";

    position:absolute;

    left:-250px;

    top:-180px;

    width:700px;

    height:700px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,122,26,.10),

            rgba(255,122,26,.03),

            transparent 72%

        );

    filter:blur(70px);

}

.problem::after{

    content:"";

    position:absolute;

    right:-260px;

    bottom:-220px;

    width:760px;

    height:760px;

    border-radius:50%;

    background:

        radial-gradient(

            circle,

            rgba(255,122,26,.08),

            transparent 72%

        );

    filter:blur(90px);

}

/* ==========================================================
   HEADER
========================================================== */

.problem-header{

    position:relative;

    z-index:2;

    max-width:780px;

    margin:0 auto 90px;

    text-align:center;

}

.problem-title{

    margin-top:30px;

}

.problem-title strong{

    color:var(--pz-primary);

}

.problem-text{

    margin-top:34px;

    max-width:640px;

    margin-inline:auto;

}

/* ==========================================================
   GRID
========================================================== */

.problem-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:28px;

}

/* ==========================================================
   CARD
========================================================== */

.problem-card{

    position:relative;

    overflow:hidden;

    padding:42px;

    border-radius:30px;

    background:rgba(255,255,255,.82);

    border:1px solid rgba(226,232,240,.9);

    backdrop-filter:blur(16px);

    transition:

        transform .35s ease,

        box-shadow .35s ease,

        border-color .35s ease;

}

.problem-card::before{

    content:"";

    position:absolute;

    inset:0;

    opacity:0;

    background:

        linear-gradient(

            180deg,

            rgba(255,122,26,.04),

            transparent

        );

    transition:.35s;

}

.problem-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,122,26,.25);

    box-shadow:

        0 28px 80px rgba(15,23,42,.08);

}

.problem-card:hover::before{

    opacity:1;

}

/* ==========================================================
   ICON
========================================================== */

.problem-icon{

    width:72px;

    height:72px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    border-radius:22px;

    font-size:30px;

    background:

        linear-gradient(

            180deg,

            rgba(255,122,26,.12),

            rgba(255,122,26,.06)

        );

    box-shadow:

        inset 0 1px 0 rgba(255,255,255,.8);

}

/* ==========================================================
   TITLE
========================================================== */

.problem-card h3{

    font-size:24px;

    line-height:1.25;

    font-weight:800;

    color:var(--pz-text);

    margin-bottom:16px;

}

/* ==========================================================
   TEXT
========================================================== */

.problem-card p{

    color:var(--pz-text-light);

    font-size:17px;

    line-height:1.75;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1200px){

    .problem-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .problem-grid{

        grid-template-columns:1fr;

        gap:22px;

    }

    .problem-header{

        margin-bottom:56px;

    }

    .problem-card{

        padding:30px;

    }

    .problem-icon{

        width:64px;

        height:64px;

        border-radius:20px;

        font-size:28px;

    }

    .problem-card h3{

        font-size:22px;

    }

    .problem-card p{

        font-size:16px;

    }

}