/* ==========================================================================
   Page: About Us — Professional Redesign
   
   Sections: Hero → Stats → Intro → Values → Services → Team → Timeline → Certs → CTA
   Palette: Brand Navy #1A2B8C → #0D1650; Accent Red #D00020 (CTA only)
   Cards: White bg, subtle shadow, 16px radius, hover lift + shadow deepen
   BEM methodology. Mobile-first. 4 standard breakpoints.
   ========================================================================== */

/* ==========================================================================
   1. Hero — Full-width gradient with geometric overlay
   ========================================================================== */
.ab-hero {
    position: relative;
    padding: 5rem 0 4rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    align-items: center;
}

.ab-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ab-hero__geo {
    width: 100%;
    height: 100%;
}

.ab-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

/* Breadcrumb */
.ab-hero__breadcrumb {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.ab-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ab-hero__breadcrumb a:hover {
    color: #fff;
}

/* Badge pill */
.ab-hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.45rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

/* Title */
.ab-hero__title {
    font-size: var(--wp--preset--font-size--5xl, 3rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 1.25rem;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* Description */
.ab-hero__desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 620px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Certification badges row */
.ab-hero__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ab-hero__cert-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Hero responsive */
@media (max-width: 768px) {
    .ab-hero {
        min-height: 360px;
        padding: 3.5rem 0 3rem;
    }

    .ab-hero__title {
        font-size: var(--wp--preset--font-size--4xl, 2.25rem);
        letter-spacing: -0.4px;
    }

    .ab-hero__desc {
        font-size: 1rem;
        max-width: 480px;
    }
}

/* ==========================================================================
   2. Section Header — Shared across all content sections
   ========================================================================== */
.ab-sec-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ab-sec-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--flashgl-primary, #1A2B8C);
    background: rgba(26, 43, 140, 0.06);
    padding: 0.4rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.ab-sec-title {
    font-size: var(--wp--preset--font-size--3xl, 1.875rem);
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 0.875rem;
    line-height: 1.22;
    letter-spacing: -0.3px;
}

.ab-sec-subtitle {
    font-size: 1.0625rem;
    color: #64748B;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Section header responsive */
@media (max-width: 640px) {
    .ab-sec-title {
        font-size: var(--wp--preset--font-size--2xl, 1.5rem);
    }

    .ab-sec-subtitle {
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   3. Stats Row — Clean number display with gradient text
   ========================================================================== */
.ab-stats {
    padding: 2.5rem 0 0;
}

.ab-stats__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ab-stats__row {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.ab-stats__item {
    position: relative;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: transparent;
    border: none;
    border-radius: 0;
}

/* Vertical divider between items (desktop only) */
.ab-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #E2E8F0;
}

@media (max-width: 767px) {
    .ab-stats__item:nth-child(even)::after {
        display: none;
    }
}

/* Gradient number */
.ab-stats__item span {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    letter-spacing: -0.8px;
    line-height: 1;
    background: linear-gradient(135deg, #1A2B8C 0%, #3B4FC7 50%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   4. Intro Section — WordPress content with refined typography
   ========================================================================== */
.ab-intro {
    padding-top: 3rem !important;
    padding-bottom: 4rem;
}

.ab-intro__content {
    font-size: 1rem;
    line-height: 1.85;
    color: #475569;
}

.ab-intro__content h2 {
    font-size: var(--wp--preset--font-size--2xl, 1.5rem);
    font-weight: 700;
    color: #0F172A;
    margin: 2.5rem 0 1.25rem;
    letter-spacing: -0.2px;
}

.ab-intro__content h3 {
    font-size: var(--wp--preset--font-size--xl, 1.25rem);
    font-weight: 700;
    color: #0F172A;
    margin: 2rem 0 1rem;
}

.ab-intro__content p {
    margin-bottom: 1.35rem;
}

.ab-intro__content ul,
.ab-intro__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.ab-intro__content li {
    margin-bottom: 0.375rem;
}

.ab-intro__content a {
    color: var(--flashgl-primary, #1A2B8C);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ab-intro__content a:hover {
    color: var(--flashgl-accent, #D00020);
}

/* ==========================================================================
   5. Core Values — Four premium shadow cards with animated top accent
   ========================================================================== */
.ab-values {
    padding: 5rem 0;
    background: #fff;
}

.ab-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .ab-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ab-values__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.ab-values__card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--flashgl-radius-xl, 16px);
    padding: 2.25rem 1.5rem 2rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-values__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(26, 43, 140, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
}

/* Icon */
.ab-values__icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #EBF0FF 0%, #DDE4FC 100%);
    color: var(--flashgl-primary, #1A2B8C);
}

.ab-values__icon svg {
    width: 28px;
    height: 28px;
}

.ab-values__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.625rem;
    line-height: 1.3;
}

.ab-values__desc {
    font-size: 0.875rem;
    color: #64748B;
    margin: 0;
    line-height: 1.65;
}

/* ==========================================================================
   6. Services Grid — Shadow cards with animated left accent bar
   ========================================================================== */
.ab-services {
    padding: 5rem 0;
}

.ab-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .ab-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ab-services__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.ab-svc-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--flashgl-radius-lg, 12px);
    padding: 1.75rem 1.5rem 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26, 43, 140, 0.09), 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Icon */
.ab-svc-card__icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.ab-svc-card__icon--fallback {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EBF0FF, #DDE4FC);
    border-radius: 10px;
    flex-shrink: 0;
}

.ab-svc-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    line-height: 1.3;
}

.ab-svc-card__desc {
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.ab-svc-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    color: #64748B;
    background: #F8FAFC;
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    width: fit-content;
    letter-spacing: 0.2px;
}

.ab-svc-card__cta {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--flashgl-primary, #1A2B8C);
    margin-top: auto;
    transition: color 0.2s ease;
}

.ab-svc-card:hover .ab-svc-card__cta {
    color: var(--flashgl-accent, #D00020);
}

/* ==========================================================================
   7. Team Grid — Avatar cards with refined shadows and social links
   ========================================================================== */
.ab-team {
    padding: 5rem 0;
    background: #fff;
}

.ab-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .ab-team__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .ab-team__grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        max-width: 920px;
        margin: 0 auto;
    }
}

.ab-team__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.75rem 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--flashgl-radius-xl, 16px);
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-team__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(26, 43, 140, 0.09);
}

.ab-team__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

/* Avatar */
.ab-team__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #EBF0FF;
    background: #F4F6FA;
    flex-shrink: 0;
}

.ab-team__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-team__avatar--fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #1A2B8C 0%, #283593 100%);
}

.ab-team__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.ab-team__role {
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0;
}

/* Social links */
.ab-team__social {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.625rem;
    padding-top: 0.875rem;
    border-top: 1px solid #F1F5F9;
    width: 100%;
    justify-content: center;
}

.ab-team__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    color: #94A3B8;
    background: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
}

.ab-team__social-link:hover {
    background: var(--flashgl-primary, #1A2B8C);
    color: #fff;
    border-color: var(--flashgl-primary, #1A2B8C);
}

.ab-team__social-link--linkedin {
    color: #0077B5;
    border-color: #CBD5E1;
}

.ab-team__social-link--linkedin:hover {
    background: #0077B5;
    color: #fff;
    border-color: #0077B5;
}

/* ==========================================================================
   8. Journey / Timeline — Centered vertical line with alternating cards
   ========================================================================== */
.ab-journey {
    padding: 5rem 0;
}

.ab-timeline {
    position: relative;
    padding: 0;
}

/* Vertical line */
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #1A2B8C 0%, rgba(59, 79, 199, 0.4) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Timeline row */
.ab-timeline__row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}

.ab-timeline__row:last-child {
    margin-bottom: 0;
}

.ab-timeline__row--left {
    flex-direction: row;
}

.ab-timeline__row--right {
    flex-direction: row-reverse;
}

/* Year marker */
.ab-timeline__marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}

.ab-timeline__year {
    display: inline-block;
    background: var(--flashgl-primary, #1A2B8C);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.35rem 0.95rem;
    border-radius: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(26, 43, 140, 0.25);
    white-space: nowrap;
}

/* Timeline card */
.ab-timeline__card {
    flex: 1;
    max-width: calc(50% - 2.75rem);
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--flashgl-radius-lg, 12px);
    margin-top: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-timeline__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 43, 140, 0.09), 0 2px 4px rgba(0, 0, 0, 0.03);
}

.ab-timeline__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.375rem;
    line-height: 1.3;
}

.ab-timeline__desc {
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
}

/* Timeline mobile — single column, line on left */
@media (max-width: 768px) {
    .ab-timeline::before {
        left: 1.5rem;
    }

    .ab-timeline__row,
    .ab-timeline__row--left,
    .ab-timeline__row--right {
        flex-direction: row;
    }

    .ab-timeline__marker {
        left: 1.5rem;
    }

    .ab-timeline__card {
        max-width: none;
        flex: 1;
        margin-left: 3.25rem;
        margin-right: 0;
        padding: 1.125rem 1.25rem;
    }

    .ab-timeline__row {
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   9. Certifications — Clean icon cards with hover lift
   ========================================================================== */
.ab-certs {
    padding: 5rem 0;
    background: #fff;
}

.ab-certs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .ab-certs__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.ab-certs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--flashgl-radius-xl, 16px);
    padding: 2rem 1.5rem 1.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ab-certs__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(26, 43, 140, 0.09), 0 2px 4px rgba(0, 0, 0, 0.03);
}

.ab-certs__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    width: 100%;
    margin-bottom: 1rem;
    flex-shrink: 0;
    overflow: hidden;
}

.ab-certs__icon img {
    max-height: 56px;
    object-fit: contain;
}

.ab-certs__icon--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EBF0FF, #DDE4FC);
    color: var(--flashgl-primary, #1A2B8C);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.ab-certs__name {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.ab-certs__desc {
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0 0 1rem;
    line-height: 1.6;
    flex: 1;
}

.ab-certs__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--flashgl-primary, #1A2B8C);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.ab-certs__link:hover {
    gap: 0.625rem;
    color: var(--flashgl-accent, #D00020);
}

.ab-certs__link svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.ab-certs__link:hover svg {
    transform: translateX(2px);
}

/* ==========================================================================
   10. Final CTA — Bold red banner with white button
   ========================================================================== */
.ab-cta {
    padding: 5.5rem 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ab-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ab-cta__title {
    font-size: var(--wp--preset--font-size--3xl, 1.875rem);
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.ab-cta__desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
    line-height: 1.6;
}

/* White pill button */
.ab-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #fff;
    color: var(--flashgl-accent, #D00020);
    border: 2px solid #fff;
    border-radius: 14px;
    padding: 1rem 2.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease,
                transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.ab-cta__btn:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.ab-cta__btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* Phone line */
.ab-cta__phone {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.ab-cta__phone a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 0.25rem;
    transition: border-color 0.2s ease;
}

.ab-cta__phone a:hover {
    border-color: rgba(255, 255, 255, 0.7);
}

/* CTA responsive */
@media (max-width: 640px) {
    .ab-cta {
        padding: 4rem 0;
    }

    .ab-cta__title {
        font-size: var(--wp--preset--font-size--2xl, 1.5rem);
    }

    .ab-cta__desc {
        font-size: 0.9375rem;
    }

    .ab-cta__btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ==========================================================================
   11. Utilities — Section footer link & empty state
   ========================================================================== */
.ab-section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.ab-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: #fff;
    color: var(--flashgl-primary, #1A2B8C);
    border: 2px solid #E2E8F0;
    border-radius: 14px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ab-link-btn:hover {
    border-color: var(--flashgl-primary, #1A2B8C);
    background: #F8FAFF;
    color: var(--flashgl-primary, #1A2B8C);
}

.ab-link-btn svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.ab-link-btn:hover svg {
    transform: translateX(3px);
}

/* Empty state text */
.ab-empty {
    text-align: center;
    color: #94A3B8;
    padding: 3rem 0;
    font-size: 0.9375rem;
}
