/* ===================================
   ABOUT PAGE - SEO OPTIMIZED
   Uses master.css variables
   =================================== */

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-steel) 100%);
    padding: 100px 0 60px;
}

.header-content {
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    list-style: none;
}

.breadcrumb-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-gold);
}

.breadcrumb-item.active {
    color: var(--accent-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.5rem;
    font-size: 1.1rem;
}

/* ===================================
   ABOUT INTRO
   =================================== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--accent-gold);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 120px;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-inverse);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-inverse);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.about-content {}

/* Kept for any legacy use */
.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.lead-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Kept for any legacy use */
.section-subheading {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-weight: 400;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats-section {}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-steel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--text-inverse);
}

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   WHY CHOOSE — FEATURE ITEMS
   =================================== */
.about-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}

.about-feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.about-feature-item > i {
    font-size: 1.75rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
    width: 28px;
    text-align: center;
}

.about-feature-item > div h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.about-feature-item > div p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {}

.service-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--accent-gold);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

/* Used on about page — paragraph variant */
.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

/* Used on about page — paragraph with bullet list variant (matches index.php) */
.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

.service-features li:first-child {
    border-top: none;
    padding-top: 0;
}

.service-features li i {
    color: var(--accent-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-section {}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    text-align: center;
    padding: 0 15px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    color: var(--text-inverse);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-steel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.step-icon i {
    font-size: 1.75rem;
    color: var(--text-inverse);
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

.process-connector {
    flex-shrink: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    margin-top: 70px; /* aligns with centre of step-icon */
    opacity: 0.4;
}

/* ===================================
   COMMITMENT SECTION
   =================================== */
.commitment {}

.commitment-list {
    /* no top margin needed — section header provides spacing */
}

.commitment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.commitment-item:last-child {
    margin-bottom: 0;
}

.commitment-item > i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.commitment-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.commitment-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Commitment stats box — kept for any page that uses it */
.commitment-stats {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-steel));
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-inverse);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

/* ===================================
   LOCATIONS SECTION
   =================================== */
.locations-section {}

.location-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-bottom-color: var(--accent-gold);
}

.location-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.location-icon i {
    font-size: 1.25rem;
    color: var(--accent-gold);
}

.location-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.location-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* Phone line below locations */
.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   SERVICE AREAS
   =================================== */
.service-areas {}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-tag {
    background: var(--bg-white);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-tag:hover {
    background: var(--accent-gold);
    color: var(--text-inverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.area-note {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.area-note a {
    color: var(--primary-navy);
    font-weight: 600;
}

.area-note a:hover {
    color: var(--accent-gold);
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose {}

/* Feature box — kept for any page using the 4-box grid variant */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-steel));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-inverse);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-steel) 100%);
}

/* Legacy alias — kept in case other pages use .cta-section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-steel) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* .cta-title — used in about.php and final-cta on index.php */
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

/* Legacy alias */
.cta-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Legacy alias */
.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-inverse);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-phone i {
    color: var(--accent-gold);
}

.cta-phone a {
    color: var(--text-inverse);
}

.cta-phone a:hover {
    color: var(--accent-gold);
}

.cta-hours {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    color: var(--accent-gold);
}

/* ===================================
   RESPONSIVE - TABLET (≤ 991px)
   =================================== */
@media (max-width: 991px) {
    .page-header {
        padding: 80px 0 50px;
    }

    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 15px;
        min-width: 100px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .process-connector {
        display: none;
    }

    .process-step {
        min-width: 200px;
        max-width: 45%;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (≤ 767px)
   =================================== */
@media (max-width: 767px) {
    .page-title {
        font-size: 1.75rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .areas-grid {
        gap: 10px;
    }

    .area-tag {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .process-step {
        min-width: 160px;
        max-width: 100%;
    }

    .about-feature-item {
        padding: 18px;
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE (≤ 575px)
   =================================== */
@media (max-width: 575px) {
    .experience-badge {
        top: 15px;
        right: 15px;
        padding: 12px;
        min-width: 90px;
    }

    .badge-number {
        font-size: 1.75rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .stat-info h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .commitment-stats {
        padding: 25px;
    }

    .stat-item {
        padding: 20px;
    }

    .service-card,
    .feature-box {
        padding: 25px 20px;
    }

    .location-card {
        padding: 22px 18px;
    }

    .cta-phone {
        font-size: 1.1rem;
    }
}

/* ===================================
   HYPERLOCAL SECTION — ABOUT PAGE
   "We Know Bangalore — Every Neighbourhood"
   Uses same .area-service-card pattern as index
   =================================== */
.hyperlocal-section {
    background: var(--bg-white);
}

.area-service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.area-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.area-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.area-service-header i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(200, 162, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-service-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.35;
}

.area-service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.area-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-navy);
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.area-service-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* ===================================
   OTHER AREAS TAG CLOUD — ABOUT PAGE
   =================================== */
.other-areas-wrap {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-soft);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.other-areas-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: none; /* override about.css default if set */
}

.area-tag {
    background: var(--bg-white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}

.area-tag:hover {
    background: var(--primary-navy);
    color: var(--text-inverse);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* area-note (used in about page) */
.area-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.area-note a {
    color: var(--primary-navy);
    font-weight: 600;
    transition: var(--transition);
}

.area-note a:hover {
    color: var(--accent-gold);
}

/* ===================================
   FIX: .mb-lg-0 utility
   =================================== */
@media (min-width: 992px) {
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
}

/* ===================================
   FIX: .about-intro section
   Ensure image wrapper displays correctly
   =================================== */
.about-intro {
    background: var(--bg-white);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   FIX: .commitment-item missing border/spacing
   =================================== */
.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ===================================
   RESPONSIVE — HYPERLOCAL ABOUT PAGE
   =================================== */

/* Tablet: 768px - 991px */
@media (max-width: 991px) {
    .area-service-card {
        padding: 1.5rem;
    }

    .area-service-header h3 {
        font-size: 1rem;
    }

    .other-areas-wrap {
        padding: 1.5rem;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }
}

/* Mobile: ≤ 767px */
@media (max-width: 767px) {
    .area-service-card {
        padding: 1.25rem;
    }

    .area-service-header {
        gap: 10px;
    }

    .area-service-header i {
        font-size: 1.25rem;
        width: 36px;
        height: 36px;
    }

    .area-service-header h3 {
        font-size: 0.95rem;
    }

    .area-service-card p {
        font-size: 0.875rem;
    }

    .other-areas-wrap {
        padding: 1.25rem;
        margin-top: 2rem;
    }

    .other-areas-title {
        font-size: 1rem;
    }

    .areas-grid {
        gap: 8px;
    }

    .area-tag {
        padding: 7px 14px;
        font-size: 0.825rem;
    }

    /* about-feature-item on mobile */
    .about-feature-item {
        padding: 1.25rem;
        gap: 14px;
    }

    .about-feature-item > i {
        font-size: 1.5rem;
    }

    .about-feature-item > div h3 {
        font-size: 1rem;
    }
}

/* Small Mobile: ≤ 575px */
@media (max-width: 575px) {
    .area-service-card {
        padding: 1rem;
    }

    .area-service-header h3 {
        font-size: 0.9rem;
    }

    .area-service-card p {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .area-service-link {
        font-size: 0.85rem;
    }

    .other-areas-wrap {
        padding: 1rem;
        margin-top: 1.5rem;
        border-radius: 8px;
    }

    .area-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Stats on mobile */
    .stat-card {
        padding: 1.25rem 1rem;
    }

    .stat-info h3 {
        font-size: 1.5rem;
    }

    /* Commitment on mobile */
    .commitment-item {
        gap: 12px;
    }

    .commitment-item > i {
        font-size: 1.25rem;
    }

    .commitment-item h4 {
        font-size: 1rem;
    }

    .commitment-item p {
        font-size: 0.875rem;
    }
}

/* Ultra Small: ≤ 374px */
@media (max-width: 374px) {
    .area-service-card {
        padding: 0.875rem;
    }

    .area-service-header i {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .area-service-header h3 {
        font-size: 0.875rem;
    }

    .area-service-card p {
        font-size: 0.8rem;
    }

    .area-service-link {
        font-size: 0.8rem;
    }

    .area-tag {
        padding: 5px 10px;
        font-size: 0.775rem;
    }

    .experience-badge {
        top: 10px;
        right: 10px;
        padding: 10px;
        min-width: 80px;
    }

    .badge-number {
        font-size: 1.6rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }
}