/**
 * Accolade Trademark Fee Schedule CSS
 */

.accolade-tm-fs {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: var(--atf-bg-image);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

/* Background Overlay */
.accolade-tm-fs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--atf-overlay-color, #062250);
    opacity: var(--atf-overlay-opacity, 0.75);
    z-index: 1;
}

.accolade-tm-fs__container {
    position: relative;
    z-index: 2;
    max-width: 1340px;
    margin: 0 auto;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

/* Breadcrumbs Styling */
.accolade-tm-fs__breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.accolade-tm-fs__breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.accolade-tm-fs__breadcrumbs a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.accolade-tm-fs__breadcrumbs-separator {
    margin: 0 8px;
    user-select: none;
    opacity: 0.8;
}

/* Section Label and Dot */
.accolade-tm-fs__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    line-height: 1;
}

.accolade-tm-fs__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    background-color: #1d82ea;
    flex-shrink: 0;
}

/* Typography Title & Description */
.accolade-tm-fs__title {
    font-family: "Inter", sans-serif;
    font-size: clamp(38px, 6.5vw, 68px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.accolade-tm-fs__desc {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 40px 0;
    max-width: 820px;
    font-weight: 400;
}

/* Action CTA Buttons */
.accolade-tm-fs__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.accolade-tm-fs__btn {
    display: inline-block;
    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;
}

/* Primary Filled Button */
.accolade-tm-fs__btn--primary {
    background-color: #062250;
    color: #ffffff;
}

.accolade-tm-fs__btn--primary:hover {
    background-color: #1d82ea;
    color: #ffffff;
    text-decoration: none;
}

/* Secondary Outline Button */
.accolade-tm-fs__btn--secondary {
    background-color: rgba(255, 255, 255, 0);
    color: #ffffff;
    border: 1px solid #ffffff;
}

.accolade-tm-fs__btn--secondary:hover {
    background-color: #ffffff;
    color: #062250;
    border-color: #ffffff;
    text-decoration: none;
}

/* Responsive configurations */
@media (max-width: 1024px) {
    .accolade-tm-fs__actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: 100%;
        gap: 15px;
    }
    
    .accolade-tm-fs__btn {
        width: auto;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .accolade-tm-fs__desc {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .accolade-tm-fs__actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .accolade-tm-fs__btn {
        width: auto;
        padding: 15px 35px;
    }
}
