/* =========================================================
   DECISIONS INSIGHTS - SERVICES CONNECTION
   ========================================================= */

.da-services-insights {
    position: relative;

    margin-top: 65px;
    padding: 45px 48px;

    overflow: hidden;

    background: #f7fafc;

    border: 1px solid rgba(36, 79, 112, 0.08);

    box-shadow: 0 15px 45px rgba(36, 79, 112, 0.07);
}


/* Top accent line */

.da-services-insights-line {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
            90deg,
            #4169e1 0%,
            #5f7fe8 45%,
            transparent 100%
    );
}


/* Main layout */

.da-services-insights-main {
    display: grid;

    grid-template-columns: 0.9fr 1.5fr;

    gap: 55px;

    align-items: center;
}


/* =========================================================
   HEADING
   ========================================================= */

.da-services-eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #4169e1;
}


.da-services-insights-heading h3 {
    margin: 0;

    font-size: 28px;
    line-height: 1.3;

    font-weight: 600;

    color: #244f70;
}


.da-services-insights-heading h3 span {
    display: block;

    color: #4169e1;
}


.da-services-insights-heading p {
    margin: 17px 0 0;

    max-width: 520px;

    font-size: 14px;
    line-height: 1.75;

    color: #71808c;
}


/* =========================================================
   CATEGORY LIST
   ========================================================= */

.da-services-insight-categories {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}


.da-services-insight-category {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 70px;

    padding: 12px 14px;

    gap: 12px;

    background: #ffffff;

    border: 1px solid rgba(36, 79, 112, 0.07);

    text-decoration: none;

    transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            border-color 0.3s ease;
}


.da-services-insight-category:hover {
    transform: translateY(-3px);

    border-color: rgba(65, 105, 225, 0.25);

    box-shadow: 0 10px 25px rgba(36, 79, 112, 0.10);
}


/* Category icon */

.da-category-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(65, 105, 225, 0.08);

    color: #4169e1;

    font-size: 17px;

    transition:
            background-color 0.3s ease,
            color 0.3s ease;
}


.da-services-insight-category:hover .da-category-icon {
    background: #4169e1;

    color: #ffffff;
}


/* Category text */

.da-category-text {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}


.da-category-text strong {
    font-size: 14px;

    font-weight: 600;

    color: #244f70;
}


.da-category-text small {
    font-size: 11px;

    color: #8996a1;
}


/* Arrow */

.da-category-arrow {
    margin-left: auto;

    font-size: 13px;

    color: #9aa7b1;

    transition:
            color 0.3s ease,
            transform 0.3s ease;
}


.da-services-insight-category:hover .da-category-arrow {
    color: #4169e1;

    transform: translate(2px, -2px);
}


/* =========================================================
   CTA AREA
   ========================================================= */

.da-services-insights-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 35px;

    padding-top: 22px;

    border-top: 1px solid rgba(36, 79, 112, 0.09);
}


.da-services-cta-number {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    color: #a2adb6;
}


.da-services-explore {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 11px 19px;

    border: 1px solid #4169e1;

    color: #4169e1;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition:
            background-color 0.3s ease,
            color 0.3s ease,
            transform 0.3s ease;
}


.da-services-explore i {
    transition: transform 0.3s ease;
}


.da-services-explore:hover {
    background: #4169e1;

    color: #ffffff;

    transform: translateY(-2px);
}


.da-services-explore:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .da-services-insights {
        padding: 38px 35px;
    }


    .da-services-insights-main {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .da-services-insights-heading p {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .da-services-insights {
        margin-top: 45px;

        padding: 30px 20px;
    }


    .da-services-insights-heading h3 {
        font-size: 23px;
    }


    .da-services-insights-heading p {
        font-size: 13px;
    }


    .da-services-insight-categories {
        grid-template-columns: 1fr;
    }


    .da-services-insight-category {
        min-height: 62px;
    }


    .da-services-insights-cta {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .da-services-explore {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .da-services-insights {
        padding: 27px 17px;
    }


    .da-services-insights-heading h3 {
        font-size: 21px;
    }


    .da-category-text strong {
        font-size: 13px;
    }

}