/**
 * Accolade Trademark Fee Schedule Section 1 CSS
 */

.accolade-tm-fs1 {
    width: 100%;
    background-color: #f4f6f9;
    background-image: var(--atf1-section-bg-image);
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
}

.accolade-tm-fs1__container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Two-column layout grid */
.accolade-tm-fs1__grid {
    display: grid;
    grid-template-columns: var(--atf1-left-col-width, 50%) calc(100% - var(--atf1-left-col-width, 50%));
    align-items: center;
    gap: 60px;
    width: 100%;
    box-sizing: border-box;
}

/* Left Column Styling */
.accolade-tm-fs1__left-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

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

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

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

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

/* Heading Title */
.accolade-tm-fs1__heading {
    font-family: "Inter", sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: #062250;
    margin: 0 0 20px 0;
}

/* Description Text */
.accolade-tm-fs1__desc {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #848484;
    margin: 0;
}

/* Right Column Stats Grid Layout */
.accolade-tm-fs1__stats-grid {
    display: grid;
    grid-template-columns: repeat(var(--atf1-grid-columns, 2), minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Stat Card Base Styling */
.accolade-tm-fs1__card {
    background-color: #ffffff;
    padding: 45px 35px;
    border-radius: 0;
    box-shadow: 0px 10px 20px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Stat Card Hover Animation: translateY Lift & Shadow Transition (No background color change) */
.accolade-tm-fs1__card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 30px rgba(6, 34, 80, 0.1);
}

/* Stat Card Inner Content */
.accolade-tm-fs1__stat-number {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #062250;
    margin-bottom: 8px;
    line-height: 1;
}

.accolade-tm-fs1__stat-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #848484;
    line-height: 1.4;
}

/* Responsive configurations */
@media (max-width: 1024px) {
    .accolade-tm-fs1__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .accolade-tm-fs1__stats-grid {
        grid-template-columns: repeat(var(--atf1-grid-columns-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    /* .accolade-tm-fs1__stats-grid {
        grid-template-columns: repeat(var(--atf1-grid-columns-mobile, 1), minmax(0, 1fr));
    } */

    .accolade-tm-fs1__stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accolade-tm-fs1__container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .accolade-tm-fs1__card {
        padding: 25px 25px !important;
    }
    
    .accolade-tm-fs1__heading {
        font-size: 26px;
    }
}
