/* =====================================================================
   EXECOM — FULL-PAGE VERTICAL SECTIONS
   Each team occupies the entire viewport — flip cards with contact info
   ===================================================================== */

/* ── BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* ── LOADING OVERLAY ──────────────────────────────────────────────── */
.page-fade-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    pointer-events: none;
    transition: opacity 1s ease;
    opacity: 1;
}

.page-fade-overlay.loaded {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* ── SCROLL PROGRESS BAR ──────────────────────────────────────────── */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    z-index: 1000;
    transition: width 0.1s linear;
}

/* ── BRANDING ─────────────────────────────────────────────────────── */
.top-left-branding {
    position: fixed;
    top: 2rem;
    left: 3vw;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 101;
    pointer-events: none;
}

.branding-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.branding-logo:last-of-type {
    height: 80px;
    margin-top: 16px;
    margin-left: 10px;
}

.branding-sep {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.2);
    margin-top: -4px;
}

/* ── BACK BUTTON ──────────────────────────────────────────────────── */
.header-back-btn {
    position: fixed;
    right: 3vw;
    top: 2rem;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    font-weight: 200;
    z-index: 101;
    line-height: 1;
}

.header-back-btn:hover {
    color: #fff;
    transform: translateX(-4px);
}

/* ── TEAM INDICATOR (bottom-right) ────────────────────────────────── */
.team-indicator {
    position: fixed;
    bottom: 2.5rem;
    right: 3vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease, background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease, width 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
    padding: 1.2rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 16px;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    cursor: pointer;
    width: 220px;
    box-shadow: none;
    user-select: none;
    -webkit-user-select: none;
}

.team-indicator:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 12px rgba(255, 255, 255, 0.01);
}

.team-indicator.expanded {
    background: rgba(20, 20, 25, 0.75);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    padding-bottom: 1.5rem;
}

.team-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.team-indicator-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.team-indicator-label {
    font-size: 9px;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.team-indicator:hover .team-indicator-label {
    color: rgba(255, 255, 255, 0.5);
}

.team-indicator-name {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    overflow: hidden;
    text-align: right;
    width: 100%;
}

.team-indicator-count {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    margin-top: 0.4rem;
    text-align: right;
    width: 100%;
}

/* ── TEAM INDICATOR MENU ─────────────────────────────────────────── */
.team-indicator-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, margin-top 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0);
    padding-top: 0;
}

.team-indicator.expanded .team-indicator-menu {
    max-height: 380px;
    opacity: 1;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    overflow-y: auto;
    scrollbar-width: none;
}

.team-indicator.expanded .team-indicator-menu::-webkit-scrollbar {
    display: none;
}

.team-menu-item {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    position: relative;
    text-align: right;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.team-menu-item:hover {
    color: #fff;
    padding-right: 0.5rem;
}

.team-menu-item.active {
    color: #fff;
    font-weight: 600;
    opacity: 1;
}

.team-menu-item::after {
    content: '';
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), margin-left 0.3s ease;
    margin-left: 0;
    box-shadow: 0 0 8px rgba(118, 75, 162, 0.6);
}

.team-menu-item.active::after {
    width: 8px;
    margin-left: 0.5rem;
}

/* ── SPEED SCROLL HINT ────────────────────────────────────────────── */
.team-indicator-scroll-hint {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    text-align: right;
    width: 100%;
    text-transform: uppercase;
}

.team-indicator:hover .team-indicator-scroll-hint {
    max-height: 15px;
    opacity: 1;
}

.team-indicator.expanded .team-indicator-scroll-hint {
    display: none; /* Hide hint when expanded */
}

/* ── INTRO SECTION ────────────────────────────────────────────────── */
.intro-section {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 3vw;
}

.big-title {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    line-height: 0.8;
}

.big-title span:first-child {
    font-size: 8vw;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 6s linear infinite;
}

@keyframes titleShimmer {
    to {
        background-position: 200% center;
    }
}

.big-title .sub-accent {
    font-size: 1.3vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.44em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    padding-left: 0.3vw;
}

.big-title .sub-year {
    font-size: 1vw;
    font-weight: 300;
    letter-spacing: 0.6em;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 16px;
    padding-left: 0.3vw;
}

.title-divider {
    width: 1.5px;
    height: 90px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    filter: blur(5px);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.5;
    animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.5; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(4px); }
}

.scroll-hint-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-hint-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s ease-in-out infinite;
}

@keyframes wheelScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.scroll-hint span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

/* ── TEAM SECTION (Full Viewport) ─────────────────────────────────── */
.team-scene {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 6rem; /* Push down to avoid top header/badge overlap */
    box-sizing: border-box;
}

/* Team name — big centered, fades out when members appear */
.team-name-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 6vw;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    opacity: 0;
    z-index: 2;
}

/* Smaller font for long team names */
.team-name-display.long-name {
    font-size: 4vw;
    letter-spacing: 0.1em;
}

/* Team badge (small, top-center) */
.team-badge {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    z-index: 5;
}

.team-badge-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
}

.team-badge-accent {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.team-badge-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}
/* ── MEMBERS GRID ────────────────────────────────────────────────── */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 140px));
    gap: 1.2rem 1rem;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    padding: 0.4rem 0;
    justify-content: center;
    perspective: 1000px;
    z-index: 10;
    opacity: 0; /* Animated by GSAP */
}

.members-grid.grid-small {
    grid-template-columns: repeat(auto-fit, minmax(120px, 140px));
    justify-content: center;
}

.members-grid.grid-large {
    grid-template-columns: repeat(auto-fit, minmax(110px, 130px));
    gap: 1rem 0.8rem;
}

.members-grid.panel-grid {
    grid-template-columns: repeat(auto-fit, minmax(98px, 120px));
    gap: 1rem 0.6rem;
    max-width: 800px;
}

/* ── MEMBER CARD (3D Flipping) ────────────────────────────────────── */
.member-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 170px;
    perspective: 1000px;
    cursor: pointer;
    background: transparent;
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.members-grid.panel-grid .member-card {
    min-height: 140px;
}

.member-card:hover {
    transform: translateY(-8px);
}

.card-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-card.flipped .card-flipper {
    transform: rotateY(180deg);
}

/* Shared face styles */
.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: inherit;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

/* ── CARD FRONT (Full image) ──────────────────────────────────────── */
.card-front {
    transform: translateZ(1px);
    z-index: 2;
}

.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Keeps the face/head at the top */
    filter: grayscale(15%) brightness(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover .card-front img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Centered Front Overlay - Visible by default */
.card-front-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    transition: background 0.4s ease;
}

.member-card:hover .card-front-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
}

.card-front-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    word-wrap: break-word;
    width: 100%;
}

.card-front-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    word-wrap: break-word;
    width: 100%;
}

/* Tap hint icon */
.card-tap-hint {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.member-card:hover .card-tap-hint {
    opacity: 1;
    transform: scale(1);
}

.card-tap-hint svg {
    width: 10px;
    height: 10px;
    fill: rgba(255, 255, 255, 0.85);
}

/* ── CARD BACK (Contact info) ─────────────────────────────────────── */
.card-back {
    transform: rotateY(180deg) translateZ(1px);
    background: linear-gradient(135deg, #16161c 0%, #0c0c0f 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 0.5rem;
    gap: 0.6rem;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.card-back-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
}

.card-back-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 85%;
    margin-bottom: 0.1rem;
}

/* Social links */
.card-back-socials {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.2rem;
}

.social-link {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.social-link svg {
    width: 12px;
    height: 12px;
    fill: rgba(255, 255, 255, 0.6);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: #fff;
}

.social-link.linkedin:hover {
    border-color: #0077b5;
}

.social-link.linkedin:hover svg {
    fill: #0077b5;
}

.social-link.instagram:hover {
    border-color: #e4405f;
}

.social-link.instagram:hover svg {
    fill: #e4405f;
}

.social-link.email:hover {
    border-color: #667eea;
}

.social-link.email:hover svg {
    fill: #667eea;
}

/* No links placeholder */
.card-back-empty {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

/* Close hint on back */
.card-back-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    margin-top: auto;
}

/* ── PANEL GRID ───────────────────────────────────────────────────── */
.members-grid.panel-grid {
    grid-template-columns: repeat(auto-fit, minmax(98px, 120px));
    max-width: 700px;
    gap: 1rem 0.6rem;
    justify-content: center;
}

.panel-grid .card-front-name {
    font-size: 0.55rem;
}

.panel-grid .card-front-role {
    font-size: 0.45rem;
}

.panel-grid .card-back-name {
    font-size: 0.65rem;
}

.panel-grid .card-back-role {
    font-size: 0.48rem;
    padding-bottom: 0.2rem;
    width: 90%;
}

.panel-grid .social-link {
    width: 22px;
    height: 22px;
}

.panel-grid .social-link svg {
    width: 10px;
    height: 10px;
}

.panel-grid .card-back {
    padding: 0.5rem 0.3rem;
    gap: 0.4rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .big-title span:first-child {
        font-size: 14vw;
        letter-spacing: 0.08em;
    }

    .big-title .sub-accent {
        font-size: 2.8vw;
        letter-spacing: 0.28em;
        margin-top: 6px;
    }

    .big-title .sub-year {
        font-size: 2.2vw;
    }

    .team-name-display {
        font-size: 10vw;
    }

    .team-name-display.long-name {
        font-size: 6vw;
    }

    .team-indicator-name {
        font-size: 1.4rem;
    }

    .team-indicator {
        bottom: 8%;
        right: 8%;
    }

    .header-back-btn {
        font-size: 1.8rem;
        top: 35px;
        right: 35px;
    }

    .members-grid {
        grid-template-columns: repeat(2, minmax(110px, 130px)) !important;
        gap: 1.2rem 0.8rem;
        max-width: 95%;
        justify-content: center;
    }

    .members-grid:has(> .member-card:only-child),
    .members-grid.single-lead {
        grid-template-columns: minmax(110px, 130px) !important;
    }

    .members-grid.panel-grid {
        grid-template-columns: repeat(auto-fit, minmax(97px, 114px)) !important;
        gap: 0.8rem 0.5rem;
        justify-content: center;
    }

    /* Center single trailing cards in 2-column grids (tablet) */
    .members-grid .member-card:nth-child(odd):last-child {
        grid-column: span 2 !important;
        justify-self: center !important;
        width: 100% !important;
        max-width: 130px !important;
    }

    /* Center single trailing cards in 3-column panel grids (tablet) */
    .members-grid.panel-grid .member-card:nth-child(3n+1):last-child {
        grid-column: span 3 !important;
        justify-self: center !important;
        width: 100% !important;
        max-width: 114px !important;
    }

    .card-tap-hint {
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    .members-grid {
        grid-template-columns: repeat(2, minmax(95px, 115px)) !important;
        gap: 0.8rem 0.6rem;
    }

    .members-grid:has(> .member-card:only-child),
    .members-grid.single-lead {
        grid-template-columns: minmax(95px, 115px) !important;
    }

    .members-grid.panel-grid {
        grid-template-columns: repeat(auto-fit, minmax(92px, 108px)) !important;
        gap: 0.6rem 0.4rem;
    }

    /* Adjust single trailing cards max-width for mobile */
    .members-grid .member-card:nth-child(odd):last-child {
        max-width: 115px !important;
    }
    .members-grid.panel-grid .member-card:nth-child(odd):last-child {
        max-width: 108px !important;
    }

    .team-name-display {
        font-size: 9vw;
    }

    .team-name-display.long-name {
        font-size: 5.5vw;
    }
}


