/**
 * Accolade Trademark Section 4 CTA Banner CSS
 */

.accolade-ts4 {
    width: 100%;
    background-color: #062250;
    box-sizing: border-box;
}

.accolade-ts4__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    gap: 40px;
}

/* Left Content Area */
.accolade-ts4__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Section Label and Dots */
.accolade-ts4__label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1d82ea;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accolade-ts4__dots {
    position: relative;
    width: 30px;
    height: 16px;
    display: inline-block;
}

.accolade-ts4__dots span {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.accolade-ts4__dots span:first-child {
    left: 0;
    background-color: #1d82ea;
}

.accolade-ts4__dots span:last-child {
    left: 12px;
    background-color: #0A3681;
}


/* Typography elements */
.accolade-ts4__title {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

.accolade-ts4__desc {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    max-width: 800px;
}


/* Right Action Button */
.accolade-ts4__action {
    flex-shrink: 0;
}

.accolade-ts4__btn {
    display: inline-block;
    background-color: #ffffff;
    color: #062250;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 35px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.accolade-ts4__btn:hover {
    background-color: #1d82ea;
    color: #062250;
    text-decoration: none;
}

/* Responsive configurations */
@media (max-width: 991px) {
    .accolade-ts4__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .accolade-ts4__title {
        font-size: 32px;
    }
    
    .accolade-ts4__action {
        width: 100%;
    }
    
    .accolade-ts4__btn {
        width: auto;
        display: block;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .accolade-ts4__title {
        font-size: 26px;
    }
    
    .accolade-ts4__desc {
        font-size: 14px;
    }
    
    .accolade-ts4__btn {
        width: 100%;
        max-width: 100%;
    }
}
