/* ==========================================================================
   Connect Section (Page Builder Block)
   ========================================================================== */

.sk-connect-section {
    padding: 80px 0;
    width: 100%;
}

.sk-connect-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
    text-align: center;
}

.sk-connect-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.sk-connect-section__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.1;
    color: #163C75;
    text-transform: uppercase;
    margin: 0;
    width: 100%;
}

.sk-connect-section__description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: #282828;
    max-width: 950px;
    margin: 0;
}

.sk-connect-section__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.sk-connect-section__btn {
    background-color: #163C75;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sk-connect-section__btn-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.sk-connect-section__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 12px;
    transition: transform 0.3s ease;
}

.sk-connect-section__btn:hover {
    background-color: #0f2c56;
}

.sk-connect-section__btn:hover .sk-connect-section__btn-icon {
    transform: translateX(5px);
}

/* Responsive Connect Section */
@media (max-width: 991px) {
    .sk-connect-section {
        padding: 40px 0;
    }
    
    .sk-connect-section__inner {
        gap: 25px;
    }
    
    .sk-connect-section__header {
        gap: 14px;
    }
    
    .sk-connect-section__title {
        font-size: 36px;
    }
    
    .sk-connect-section__description {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .sk-connect-section__buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .sk-connect-section__btn {
        width: 100%;
        max-width: 400px;
        box-sizing: border-box;
        padding: 12px 30px;
        border-radius: 6px;
        gap: 20px;
    }
    
    .sk-connect-section__btn-text {
        font-size: 14px;
    }
}
