/* ==========================================================
   EXECUTIVE SUMMARY
========================================================== */

.executive-summary {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}


/* ==========================================================
   MAIN CONTAINER
========================================================== */

.executive-summary .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* ==========================================================
   MAIN GRID
========================================================== */

.executive-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    align-items: center;

    gap: 60px;

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.executive-content {
    width: 100%;
    max-width: 100%;

    min-width: 0;

    box-sizing: border-box;
}


.executive-content .section-title {
    display: inline-block;

    margin-bottom: 18px;
}


.executive-content .heading {
    margin: 0 0 25px;

    max-width: 700px;
}


.executive-content p {
    width: 100%;
    max-width: 700px;

    margin: 0 0 18px;

    line-height: 1.8;
}


.executive-content .btn {
    margin-top: 12px;
}


/* ==========================================================
   RIGHT CARDS
========================================================== */

.executive-cards {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;

    width: 100%;
    max-width: 100%;

    min-width: 0;

    box-sizing: border-box;
}


/* ==========================================================
   SUMMARY CARD
========================================================== */

.summary-card {
    width: 100%;
    min-width: 0;

    box-sizing: border-box;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}


.summary-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-md);
}


.summary-card i {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #eaf4f1;

    color: var(--primary);

    font-size: 24px;
}


.summary-card h4 {
    margin: 0 0 10px;

    color: var(--primary);

    font-size: 20px;

    line-height: 1.3;
}


.summary-card p {
    margin: 0 0 8px;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.6;
}


.summary-card p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   TABLET
========================================================== */

@media screen and (max-width: 1000px) {

    .executive-summary .container {
        padding-left: 30px;
        padding-right: 30px;
    }


    .executive-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .executive-content {
        width: 100%;
        max-width: 800px;
    }


    .executive-content p {
        max-width: 800px;
    }


    .executive-cards {
        width: 100%;
        max-width: 800px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 768px) {

    .executive-summary {

        width: 100%;

        padding-top: 50px;
        padding-bottom: 50px;

        overflow: hidden;
    }


    /* ------------------------------------------------------
       CONTAINER
    ------------------------------------------------------ */

    .executive-summary .container {

        width: 100%;

        max-width: none;

        margin: 0;

        padding-left: 20px;
        padding-right: 20px;

        box-sizing: border-box;
    }


    /* ------------------------------------------------------
       MAIN LAYOUT
    ------------------------------------------------------ */

    .executive-grid {

        display: flex !important;

        flex-direction: column !important;

        align-items: stretch !important;

        justify-content: flex-start !important;

        gap: 35px !important;

        width: 100% !important;

        max-width: none !important;

        margin: 0 !important;

        padding: 0 !important;

        box-sizing: border-box;
    }


    /* ------------------------------------------------------
       LEFT CONTENT
    ------------------------------------------------------ */

    .executive-content {

        display: block;

        width: 100% !important;

        max-width: none !important;

        min-width: 0 !important;

        flex: none !important;

        margin: 0 !important;

        padding: 0 !important;

        box-sizing: border-box;

        text-align: left;
    }


    .executive-content .section-title {

        display: inline-block;

        margin-bottom: 14px;
    }


    .executive-content .heading {

        display: block;

        width: 100%;

        max-width: none;

        margin: 0 0 20px;

        font-size: 32px;

        line-height: 1.15;

        word-break: normal;

        overflow-wrap: normal;
    }


    .executive-content p {

        display: block;

        width: 100%;

        max-width: none;

        margin: 0 0 17px;

        font-size: 15px;

        line-height: 1.7;

        word-break: normal;

        overflow-wrap: break-word;
    }


    .executive-content .btn {

        display: inline-flex;

        margin-top: 8px;
    }


    /* ------------------------------------------------------
       CARDS CONTAINER
    ------------------------------------------------------ */

    .executive-cards {

        display: grid !important;

        grid-template-columns: 1fr !important;

        grid-template-rows: none !important;

        width: 100% !important;

        max-width: none !important;

        min-width: 0 !important;

        margin: 0 !important;

        padding: 0 !important;

        gap: 16px !important;

        box-sizing: border-box;
    }


    /* ------------------------------------------------------
       CARDS
    ------------------------------------------------------ */

    .summary-card {

        display: block;

        width: 100% !important;

        max-width: none !important;

        min-width: 0 !important;

        margin: 0 !important;

        padding: 24px 20px;

        box-sizing: border-box;

        border-radius: 18px;

        overflow: hidden;
    }


    .summary-card i {

        width: 46px;

        height: 46px;

        margin-bottom: 14px;

        font-size: 21px;
    }


    .summary-card h4 {

        margin: 0 0 8px;

        font-size: 19px;

        line-height: 1.3;
    }


    .summary-card p {

        width: 100%;

        margin: 0 0 8px;

        font-size: 14px;

        line-height: 1.6;

        overflow-wrap: break-word;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media screen and (max-width: 480px) {

    .executive-summary {

        padding-top: 42px;
        padding-bottom: 42px;
    }


    .executive-summary .container {

        padding-left: 18px;
        padding-right: 18px;
    }


    .executive-grid {

        gap: 28px !important;
    }


    .executive-content .section-title {

        margin-bottom: 12px;
    }


    .executive-content .heading {

        font-size: 30px;

        line-height: 1.15;

        margin-bottom: 18px;
    }


    .executive-content p {

        font-size: 14px;

        line-height: 1.7;

        margin-bottom: 16px;
    }


    .summary-card {

        padding: 22px 18px;

        border-radius: 17px;
    }


    .summary-card i {

        width: 44px;
        height: 44px;

        font-size: 20px;
    }


    .summary-card h4 {

        font-size: 18px;
    }


    .summary-card p {

        font-size: 14px;
    }

}


/* ==========================================================
   VERY SMALL PHONES
========================================================== */

@media screen and (max-width: 360px) {

    .executive-summary .container {

        padding-left: 15px;
        padding-right: 15px;
    }


    .executive-content .heading {

        font-size: 28px;
    }


    .executive-content p {

        font-size: 14px;
    }


    .summary-card {

        padding: 20px 16px;
    }

}