/* =====================================================
   SERVICE PAGES - Shared Components
   Calculators, Features, Solutions, Company Pages
   All classes prefixed with sp- to avoid conflicts
   ===================================================== */

/* =================== BREADCRUMBS =================== */
.sp-breadcrumbs {
    padding: 16px 0;
    background: var(--bg);
}

.sp-breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-breadcrumbs nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.sp-breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sp-breadcrumbs a:hover {
    color: var(--primary);
}

.sp-breadcrumbs .separator {
    color: var(--text-muted);
    font-size: 12px;
}

.sp-breadcrumbs .current {
    color: var(--primary);
    font-weight: 600;
}

/* =================== GENERIC SECTION =================== */
.sp-section {
    padding: 80px 0;
}

.sp-section:nth-child(even) {
    background: var(--bg);
}

.sp-section:nth-child(odd) {
    background: white;
}

.sp-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =================== SECTION HEADER =================== */
.sp-section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sp-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sp-section-header p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.sp-section-header .sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 109, 183, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

/* =================== STATS STRIP =================== */
.sp-stats-strip {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.sp-stats-strip .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.sp-stat-card {
    padding: 16px;
}

.sp-stat-card .sp-stat-value {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.sp-stat-card .sp-stat-label {
    font-size: 15px;
    opacity: 0.85;
    font-weight: 500;
}

.sp-stat-card .sp-stat-icon {
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* =================== FEATURE GRID =================== */
.sp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.sp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.sp-feature-card:hover::before {
    transform: scaleX(1);
}

.sp-feature-card .sp-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(1, 109, 183, 0.1), rgba(1, 109, 183, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sp-feature-card:hover .sp-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.sp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.sp-feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =================== BENEFITS LIST =================== */
.sp-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.sp-benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.sp-benefit-item .sp-benefit-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, rgba(1, 109, 183, 0.1), rgba(1, 109, 183, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 28px;
}

.sp-benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.sp-benefit-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* =================== PROCESS STEPS =================== */
.sp-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.sp-process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--primary), var(--border));
    z-index: 0;
}

.sp-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sp-step-card .sp-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(1, 109, 183, 0.3);
    border: 4px solid white;
}

.sp-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.sp-step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* =================== USE CASES =================== */
.sp-use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-use-case-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.sp-use-case-card .sp-case-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(1, 109, 183, 0.25);
}

.sp-use-case-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.sp-use-case-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =================== CTA SECTION =================== */
.sp-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.sp-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

.sp-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.sp-cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.sp-cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.sp-cta-section .sp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sp-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    background: #f8fafc;
}

.sp-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.sp-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* =================== RELATED PAGES =================== */
.sp-related-pages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-related-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.sp-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.sp-related-card .sp-related-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(1, 109, 183, 0.1), rgba(1, 109, 183, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    transition: all 0.3s ease;
}

.sp-related-card:hover .sp-related-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.sp-related-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.sp-related-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.sp-related-card .sp-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 16px;
    transition: all 0.3s ease;
}

.sp-related-card:hover .sp-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* =================== CALCULATOR GRID (OVERVIEW) =================== */
.sp-calculator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-calculator-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.sp-calculator-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sp-calculator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.sp-calculator-card:hover::after {
    transform: scaleX(1);
}

.sp-calculator-card .sp-calc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(1, 109, 183, 0.1), rgba(1, 109, 183, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sp-calculator-card:hover .sp-calc-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.sp-calculator-card .sp-calc-category {
    display: inline-block;
    background: rgba(1, 109, 183, 0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    width: fit-content;
}

.sp-calculator-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.sp-calculator-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.sp-calculator-card .sp-calc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.sp-calculator-card:hover .sp-calc-link {
    gap: 12px;
}

/* =================== CONTENT BLOCK =================== */
.sp-content-block {
    max-width: 800px;
    margin: 0 auto;
}

.sp-content-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sp-content-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.sp-content-block p:last-child {
    margin-bottom: 0;
}

/* =================== OVERVIEW TWO COL =================== */
.sp-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-overview-grid.reverse {
    direction: rtl;
}

.sp-overview-grid.reverse > * {
    direction: ltr;
}

.sp-overview-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sp-overview-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sp-overview-visual {
    background: linear-gradient(135deg, var(--bg), #e2e8f0);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.sp-overview-visual .sp-visual-icon {
    font-size: 120px;
    color: var(--primary);
    opacity: 0.15;
}

/* =================== FAQ SECTION =================== */
.sp-faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.sp-faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.sp-faq-item:hover {
    border-color: var(--primary);
}

.sp-faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(1, 109, 183, 0.1);
}

.sp-faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    transition: color 0.2s ease;
    user-select: none;
}

.sp-faq-question:hover {
    color: var(--primary);
}

.sp-faq-question i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    min-width: 14px;
}

.sp-faq-item.active .sp-faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.sp-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sp-faq-item.active .sp-faq-answer {
    padding: 0 24px 24px;
    max-height: 500px;
}

.sp-faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* =================== CATEGORY TABS (CALCULATOR OVERVIEW) =================== */
.sp-category-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.sp-category-tab {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sp-category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sp-category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* =================== HERO ENHANCEMENT =================== */
.page-hero .sp-hero-cta {
    margin-top: 28px;
}

.page-hero .sp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.page-hero .sp-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.page-hero .sp-hero-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: none;
    margin-left: 12px;
}

.page-hero .sp-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* =================== VALUES GRID (ABOUT PAGE) =================== */
.sp-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sp-value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.sp-value-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.sp-value-card .sp-value-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.sp-value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.sp-value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* =================== AUDIENCE HERO (SOLUTIONS) =================== */
.sp-audience-highlights {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-audience-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.sp-audience-highlight i {
    font-size: 16px;
}

/* =================== ANIMATIONS =================== */
@keyframes sp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sp-countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sp-animate {
    animation: sp-fadeInUp 0.6s ease both;
}

.sp-animate-delay-1 { animation-delay: 0.1s; }
.sp-animate-delay-2 { animation-delay: 0.2s; }
.sp-animate-delay-3 { animation-delay: 0.3s; }
.sp-animate-delay-4 { animation-delay: 0.4s; }
.sp-animate-delay-5 { animation-delay: 0.5s; }
.sp-animate-delay-6 { animation-delay: 0.6s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .sp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-calculator-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sp-overview-grid.reverse {
        direction: ltr;
    }

    .sp-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sp-section {
        padding: 56px 0;
    }

    .sp-section-header {
        margin-bottom: 40px;
    }

    .sp-section-header h2 {
        font-size: 28px;
    }

    .sp-section-header p {
        font-size: 16px;
    }

    .sp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sp-stat-card .sp-stat-value {
        font-size: 32px;
    }

    .sp-feature-grid {
        grid-template-columns: 1fr;
    }

    .sp-process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .sp-process-steps::before {
        display: none;
    }

    .sp-use-cases {
        grid-template-columns: 1fr;
    }

    .sp-related-pages {
        grid-template-columns: 1fr;
    }

    .sp-calculator-grid {
        grid-template-columns: 1fr;
    }

    .sp-cta-section h2 {
        font-size: 28px;
    }

    .sp-cta-section p {
        font-size: 16px;
    }

    .sp-benefit-item {
        flex-direction: column;
        gap: 16px;
    }

    .sp-overview-visual {
        min-height: 240px;
        padding: 32px;
    }

    .sp-content-block h2 {
        font-size: 26px;
    }

    .sp-content-block p {
        font-size: 16px;
    }

    .sp-overview-text h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .sp-section {
        padding: 40px 0;
    }

    .sp-section-header h2 {
        font-size: 24px;
    }

    .sp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .sp-stat-card .sp-stat-value {
        font-size: 28px;
    }

    .sp-process-steps {
        grid-template-columns: 1fr;
    }

    .sp-step-card .sp-step-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }

    .sp-feature-card {
        padding: 24px 20px;
    }

    .sp-cta-btn-primary,
    .sp-cta-btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .sp-audience-highlights {
        flex-direction: column;
        align-items: center;
    }

    .sp-category-tabs {
        gap: 6px;
    }

    .sp-category-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}
