/**
 * Section: Two Box CTA
 * Figma design: Two white boxes with dashed border side by side
 * - White background with dashed border
 * - Icon in circle with thin border
 * - Text aligned left
 * 
 * @package lifesolutions
 */

.section-two-box-cta {
    padding: 80px 0;
}

.two-box-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0 auto;
}

/* ==========================================================================
   Box Styles - White boxes with dashed border per Figma
   ========================================================================== */
.two-box-cta__box {
    border: 1px solid #DBDBDB;
    border-radius: 16px;
    padding: 40px 39px;
    text-align: left;
}

/* ==========================================================================
   Icon - Circle with thin border
   ========================================================================== */
.two-box-cta__icon {

    width: 70px;
    height: 70px;
    background-color: #F6F6F6;
    border-radius: 8.75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
}

.two-box-cta__icon img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* ==========================================================================
   Content
   ========================================================================== */
.two-box-cta__title {
    font-family: var(--font-family);
    color: #004789;
    /* Blue title per Figma */
    margin: 0 0 16px;
}

.two-box-cta__description {
    margin: 0 0 20px;
}

/* ==========================================================================
   Button - Blue filled for both boxes
   ========================================================================== */
.two-box-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: #004789;
    /* Blue button */
    color: #FFFFFF;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    transition: all 0.2s ease;
}

.two-box-cta__button:hover {
    background-color: #003366;
    transform: translateY(-2px);
}

.two-box-cta__button svg {
    transition: transform 0.2s ease;
}

.two-box-cta__button:hover svg {
    transform: translate(2px, -2px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .section-two-box-cta {
        padding: 60px 0;
    }

    .two-box-cta__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .two-box-cta__box {
        padding: 32px 24px;
    }


}