/* =========================================================
   DECISIONS INSIGHTS - ABOUT SECTION INTRO
   ========================================================= */

.da-insights-intro {
    margin-top: 55px;
    padding: 30px 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    border-top: 1px solid rgba(39, 83, 116, 0.12);
    border-bottom: 1px solid rgba(39, 83, 116, 0.12);

    background: linear-gradient(
            90deg,
            rgba(247, 250, 253, 0.95),
            rgba(255, 255, 255, 0.98)
    );
}


/* Small section label */

.da-insights-label {
    display: inline-block;

    margin-bottom: 8px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;

    color: #4169e1;
}


/* Heading */

.da-insights-intro-content h3 {
    margin: 0 0 10px 0;

    font-size: 25px;
    line-height: 1.25;
    font-weight: 600;

    color: #244f70;
}


/* Description */

.da-insights-intro-content p {
    max-width: 850px;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #707f8c;
}


/* =========================================================
   INSIGHTS TOPICS
   ========================================================= */

.da-insights-topics {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    margin-top: 18px;
}


.da-insights-topics span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    font-size: 13px;
    font-weight: 500;

    color: #315b78;
}


.da-insights-topics i {
    font-size: 15px;

    color: #4169e1;
}


/* =========================================================
   BUTTON
   ========================================================= */

.da-insights-intro-action {
    flex-shrink: 0;
}


.da-insights-button {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 12px 20px;

    border: 1px solid #4169e1;
    border-radius: 4px;

    background: transparent;

    color: #4169e1;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
            background-color 0.3s ease,
            color 0.3s ease,
            transform 0.3s ease;
}


.da-insights-button i {
    font-size: 15px;

    transition: transform 0.3s ease;
}


.da-insights-button:hover {
    background-color: #4169e1;

    color: #ffffff;

    transform: translateY(-2px);
}


.da-insights-button:hover i {
    transform: translate(2px, -2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .da-insights-intro {
        align-items: flex-start;
    }

    .da-insights-intro-content p {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .da-insights-intro {
        margin-top: 40px;

        padding: 25px 20px;

        flex-direction: column;
        align-items: flex-start;

        gap: 22px;
    }


    .da-insights-intro-content h3 {
        font-size: 22px;
    }


    .da-insights-intro-content p {
        font-size: 14px;
        line-height: 1.65;
    }


    .da-insights-topics {
        gap: 12px 16px;
    }


    .da-insights-topics span {
        font-size: 12px;
    }


    .da-insights-intro-action {
        width: 100%;
    }


    .da-insights-button {
        justify-content: center;

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .da-insights-intro {
        padding: 22px 17px;
    }

    .da-insights-intro-content h3 {
        font-size: 20px;
    }

    .da-insights-topics {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

}