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

.problem-section {
    padding: 90px 60px 0 60px; /* reduced top padding */
    background: #ffffff;
}

/* GRID */

.problem-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

/* LEFT */

.problem-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.problem-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1f6fb2;
    font-weight: 600;
}

.problem-heading {
    padding-left: 18px;
    border-left: 4px solid #DA6586;
}

.problem-heading h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}

.problem-lead {
    font-size: 22px;
    font-weight: 600;
    color: #374151;
}

/* RIGHT */

.problem-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* CARDS */

.problem-card {
    padding: 28px 30px;
    border-radius: 16px;
    background: #f9fafb;
    transition: all 0.3s ease;
}

/* Permanent glows */

.blue-glow {
    box-shadow: 0 0 45px rgba(31, 111, 178, 0.15);
}

.pink-glow {
    box-shadow: 0 0 45px rgba(218, 101, 134, 0.15);
}

.yellow-glow {
    box-shadow: 0 0 45px rgba(235, 179, 63, 0.15);
}

/* Stronger on hover */

.problem-card:hover.blue-glow {
    box-shadow: 0 10px 60px rgba(31, 111, 178, 0.35);
    transform: translateY(-6px);
}

.problem-card:hover.pink-glow {
    box-shadow: 0 10px 60px rgba(218, 101, 134, 0.35);
    transform: translateY(-6px);
}

.problem-card:hover.yellow-glow {
    box-shadow: 0 10px 60px rgba(235, 179, 63, 0.35);
    transform: translateY(-6px);
}

.problem-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}


.problem-manifesto {
    padding: 140px 60px;
    background: #ffffff;
    text-align: center;
    padding-top:90px;
}

.problem-manifesto span {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    color: #DA6586;
    font-weight: 600;
}

.problem-manifesto h3 {
    margin-top: 20px;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
    color: #111827;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
/* RESPONSIVE */

@media (max-width: 1024px) {

    .problem-container {
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: start;
    }

    .problem-heading h2 {
        font-size: 40px;
    }

    .problem-lead {
        font-size: 20px;
    }
}

@media (max-width: 600px) {

    .problem-section {
        padding: 70px 20px 0 20px;
    }

    .problem-heading h2 {
        font-size: 30px;
    }

    .problem-lead {
        font-size: 18px;
    }

    .problem-impact-strip {
        padding: 60px 20px;
    }

    .problem-impact-strip h3 {
        font-size: 22px;
    }
}