/* layouts.css - Grid Systems, Page Layouts, Responsive Design, and Complex Components */

/* Game Card Layouts */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.schedule-item.filtered-out {
    opacity: 0;
    transform: scale(0.95);
}

/* Team Detail Page Standards */
.team-header-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333;
}

/* Service and Channel Cards */
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: rgba(255,255,255,0.2);
}

/* Schedule Table Styles */
.schedule-table {
    width: 100%;
    background: transparent;
}

.schedule-table thead {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule-table th {
    color: white;
    background: transparent;
    border: none;
    padding: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table td {
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.schedule-table tr:hover td {
    background: rgba(255,255,255,0.03);
}

.schedule-table .text-white {
    color: rgba(255,255,255,0.5);
}

/* Schedule Table Column Widths - Standard across all leagues */
.schedule-table {
    table-layout: fixed;  /* Force fixed layout for consistent column widths */
}

.schedule-table th:nth-child(1),
.schedule-table td:nth-child(1) {
    width: 10%;  /* Date - compact */
}

.schedule-table th:nth-child(2),
.schedule-table td:nth-child(2) {
    width: 22%;  /* Opponent/Matchup */
}

.schedule-table th:nth-child(3),
.schedule-table td:nth-child(3) {
    width: 12%;  /* Time - reduced for better balance */
    white-space: nowrap;
}

.schedule-table th:nth-child(4),
.schedule-table td:nth-child(4) {
    width: 12%;  /* Linear TV - equal spacing */
}

.schedule-table th:nth-child(5),
.schedule-table td:nth-child(5) {
    width: 12%;  /* Streaming - equal spacing */
}

.schedule-table th:nth-child(6),
.schedule-table td:nth-child(6) {
    width: 12%;  /* League Pass - equal spacing */
    text-align: center;
}

.schedule-table th:nth-child(7),
.schedule-table td:nth-child(7) {
    width: 20%;  /* Result - more space */
    text-align: center;  /* Center the result text */
}

/* Schedule Tables - Mobile Optimization */
@media (max-width: 768px) {
    /* Make table scrollable on mobile */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .schedule-table {
        font-size: 0.75rem;
        min-width: 600px; /* Force minimum width to enable scrolling */
    }
    .schedule-table th,
    .schedule-table td {
        padding: 0.175rem 0.105rem;
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .schedule-table .bi {
        font-size: 0.875rem;
    }
    .schedule-table a {
        font-size: 0.7rem;
    }
    .schedule-table small {
        font-size: 0.65rem;
    }

    /* Compact badges for schedule tables on mobile */
    .schedule-table .badge-channel,
    .schedule-table .badge-service,
    .schedule-table .badge-channel-compact,
    .schedule-table .badge-service-compact {
        font-size: 0.65rem;
        padding: 0.1rem 0.2rem;
    }

    /* Keep all columns visible but adjust widths for mobile */
    .schedule-table th:nth-child(1),
    .schedule-table td:nth-child(1) {
        width: 60px;  /* Date - fixed width */
        min-width: 60px;
    }
    
    .schedule-table th:nth-child(2),
    .schedule-table td:nth-child(2) {
        width: 70px;  /* Opponent - reduced by 30% */
        min-width: 70px;
    }
    
    .schedule-table th:nth-child(3),
    .schedule-table td:nth-child(3) {
        width: 80px;  /* Time */
        min-width: 80px;
    }
    
    .schedule-table th:nth-child(4),
    .schedule-table td:nth-child(4) {
        width: 84px;  /* TV - reduced by 30% */
        min-width: 84px;
    }
    
    .schedule-table th:nth-child(5),
    .schedule-table td:nth-child(5) {
        width: 120px;  /* Streaming */
        min-width: 120px;
    }
    
    .schedule-table th:nth-child(6),
    .schedule-table td:nth-child(6) {
        width: 80px;  /* DTC/Exclusive */
        min-width: 80px;
    }
    
    .schedule-table th:nth-child(7),
    .schedule-table td:nth-child(7) {
        width: 100px;  /* Result */
        min-width: 100px;
    }
    /* Make table more compact on mobile */
    .schedule-table th:first-child,
    .schedule-table td:first-child {
        padding-left: 0.175rem;
    }
    .schedule-table th:last-child,
    .schedule-table td:last-child {
        padding-right: 0.175rem;
    }
}

/* Enhanced Game Card Styles - Cool Steel Grey Theme */
.game-card {
    background: #1a1d25;
    border: 1px solid #2a2d35;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
    position: relative;
    width: 100%; /* Ensure card takes full width of column */
}

.game-card:hover {
    background: #242730;
    border-color: #3a3d45;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.game-card .card-body {
    position: relative;
}

/* Game Status Indicators */
.game-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-weight: 500;
}

.game-status[data-status="in_progress"] {
    color: #00ff41;
}

.game-status[data-status="finished"] {
    color: rgba(255,255,255,0.6);
}

.game-status[data-status="scheduled"] {
    color: #5dd9f3;
}

/* Game Clock Display */
.game-clock {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Score Display */
.away-score, .home-score {
    min-width: 2rem;
    text-align: right;
    transition: color 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

/* Scheduled games - smaller, muted scores */
.game-card[data-status="scheduled"] .away-score,
.game-card[data-status="scheduled"] .home-score,
.game-card:not([data-status]) .away-score,
.game-card:not([data-status]) .home-score {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

/* In progress games - larger, bold scores */
.game-card[data-status="in_progress"] .away-score,
.game-card[data-status="in_progress"] .home-score {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 4px rgba(255,255,255,0.3);
}

/* Finished games - medium size, normal weight */
.game-card[data-status="finished"] .away-score,
.game-card[data-status="finished"] .home-score,
.game-card[data-status="final"] .away-score,
.game-card[data-status="final"] .home-score {
    font-size: 1.25rem;
    font-weight: 500;
    color: #e9ecef;
}

/* Team Names */
.game-card .team-name {
    font-weight: 500;
    color: #fff;
    transition: color 0.2s ease;
}

.game-card:hover .team-name {
    color: #fff;
}

/* Share Card Styles for Image Generation */
#shareCard {
    position: absolute;
    left: -9999px;
    width: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 40px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#shareCard .header {
    text-align: center;
    margin-bottom: 30px;
}

#shareCard .league {
    color: #5dd9f3;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

#shareCard .date {
    color: #ffffff;
    font-size: 16px;
    opacity: 0.9;
}

#shareCard .teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

#shareCard .team {
    flex: 1;
    text-align: center;
}

#shareCard .team-abbrev {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

#shareCard .score {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
}

#shareCard .team-name {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

#shareCard .status-container {
    flex: 0 0 100px;
    text-align: center;
}

#shareCard .status {
    background: rgba(93, 217, 243, 0.2);
    border: 2px solid #5dd9f3;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
}

#shareCard .status-text {
    color: #5dd9f3;
    font-size: 14px;
    font-weight: 600;
}

#shareCard .footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#shareCard .brand {
    color: #5dd9f3;
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Game Header Layout */
.mobile-game-header {
    padding: 1rem 0;
}

.mobile-teams-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-team {
    flex: 1;
    text-align: center;
    max-width: 80px;
}

.mobile-team-abbrev {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.mobile-team-score {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 4px rgba(255,255,255,0.3);
}

.mobile-game-center {
    flex: 0 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.mobile-scheduled-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    margin-top: 0.5rem;
}

.mobile-date {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.mobile-time {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Mobile team hover states */
.mobile-team a:hover .mobile-team-abbrev {
    color: #5dd9f3;
    text-decoration: none;
}

/* Adjust mobile quick actions spacing */
@media (max-width: 767px) {
    .quick-actions {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
        justify-content: space-between;
    }
    
    .quick-action-btn {
        flex: 1;
        min-width: 0;
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    /* Hide text only for icon-based buttons */
    .quick-action-btn:has(i) span {
        display: none;
    }
    
    .quick-action-btn i {
        font-size: 1.25rem;
    }
    
    /* Fix button cutoff issue */
    .mb-4:has(.quick-actions) {
        position: relative;
        z-index: 10;
    }
}

/* Detail Page Specific Layouts */
.tab-content-wrapper {
    margin-top: 1rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dashboard and Statistics Layout */
.dashboard-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.stat-card {
    flex: 1;
    min-width: 150px;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid var(--accent);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-card.live {
    border-left-color: #dc3545;
}

.stat-card.upcoming {
    border-left-color: #ffc107;
}

.stat-card.favorite {
    border-left-color: #28a745;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tab Content for Quick Actions */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Minimalist Tab Container */
.tab-container {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
}

/* SEO Tab System */
.seo-viewing-tabs {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.seo-tab-nav {
    display: flex;
    background-color: var(--accent);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
    position: relative;
}

.seo-tab-nav::-webkit-scrollbar {
    height: 4px;
}

.seo-tab-nav::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.seo-tab-nav::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* Fade indicators for scrollable content */
.seo-viewing-tabs {
    position: relative;
}

.seo-viewing-tabs::before,
.seo-viewing-tabs::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 50px;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.seo-viewing-tabs::before {
    left: 0;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.seo-viewing-tabs::after {
    right: 0;
    background: linear-gradient(270deg, var(--accent) 0%, transparent 100%);
}

@media (max-width: 768px) {
    .seo-viewing-tabs.scrollable::before,
    .seo-viewing-tabs.scrollable::after {
        display: block;
    }
}

.seo-tab-button {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.seo-tab-button:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.seo-tab-button.active {
    color: var(--text-primary);
    border-bottom-color: var(--favorite);
    background-color: rgba(255, 255, 255, 0.1);
}

.seo-tab-content {
    display: none; /* Hide all tabs by default */
    padding: 1.5rem;
    min-height: 200px;
}

.seo-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Team Detail Page Layout */
.todays-viewing-options .badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Section Headings */
.section-heading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.section-heading i {
    color: var(--accent-light);
}

/* SEO Service Components */
.seo-service-card {
    background-color: var(--accent);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease;
}

.seo-service-card:hover {
    transform: translateY(-2px);
}

.seo-service-card h5 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.seo-league-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

/* Team Services Components */
.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.service-card.primary {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.service-card.exclusive {
    border-color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Service Box Styles */
.service-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-box:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Out of Market (primary) service boxes */
.service-box.primary {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.08);
}

/* Service type specific border colors for primary */
.service-box.primary[data-service-type="service"] {
    border-color: var(--btn-service);
    background-color: rgba(32, 178, 170, 0.08);
}

.service-box.primary[data-service-type="channel"] {
    border-color: var(--btn-channel);
    background-color: rgba(77, 163, 255, 0.08);
}

/* In Market (local) service boxes */
.service-box.local {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.08);
}

/* Service type specific border colors for local */
.service-box.local[data-service-type="service"] {
    border-color: var(--btn-service);
    background-color: rgba(32, 178, 170, 0.08);
}

.service-box.local[data-service-type="channel"] {
    border-color: var(--btn-channel);
    background-color: rgba(77, 163, 255, 0.08);
}

.service-box.has-games {
    border-color: rgba(40, 167, 69, 0.5);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.service-name {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.3rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-body {
        padding: 0.75rem;
    }

    .btn-group .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .date-navigation + div .btn-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .date-navigation + div .btn {
        flex: 1;
        white-space: nowrap;
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .seo-tab-button {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        min-width: auto;
        flex: 0 0 auto;
    }
    
    .seo-tab-nav {
        gap: 0.25rem;
        padding: 0 0.5rem;
    }
    
    /* Option to use icons on mobile */
    .seo-tab-button .tab-icon {
        display: inline-block;
        margin-right: 0.25rem;
    }
    
    .seo-tab-button .tab-text {
        display: inline;
    }
    
    /* Ultra small screens - icons only */
    @media (max-width: 480px) {
        .seo-tab-button .tab-text {
            display: none;
        }
        
        .seo-tab-button .tab-icon {
            margin-right: 0;
            font-size: 1.1rem;
        }
        
        .seo-tab-button {
            min-width: 50px;
        }
    }
    
    .seo-tab-content {
        padding: 1rem;
    }
    
    .seo-league-services {
        grid-template-columns: 1fr;
    }

    .watch-options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-option {
        flex-direction: column;
        text-align: center;
    }
    
    .watch-tabs-nav {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .watch-tab-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .tile-nav.filters {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.5rem;
    }
    
    .tile-nav.services {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 0.875rem;
    }
    
    .tile-nav.dates {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.4rem;
    }
    
    .tile-nav.leagues {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .tile-button {
        padding: 0.75rem 0.5rem;
        min-height: 70px;
    }
    
    .tile-button.compact {
        padding: 0.6rem 0.4rem;
        min-height: 60px;
    }
    
    .tile-count {
        font-size: 1.3rem;
    }
    
    .tile-count.large {
        font-size: 1.5rem;
    }
    
    .tile-count.small {
        font-size: 1.1rem;
    }
    
    .tile-label {
        font-size: 0.8rem;
    }
    
    .tile-label.small {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tile-nav.filters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tile-nav.services {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .tile-nav.dates {
        grid-template-columns: repeat(7, 1fr);
    }
    
    .tile-nav.leagues {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   League Details - Team Grid Layout
   ========================= */

/* League grid system (desktop) */
.league-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1.5rem;
    max-width: 100%;
}

/* =========================
   Service List Items
   ========================= */

.service-list-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-list-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.service-overview {
    font-size: 0.9rem;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* League Detail Headers */
.division-header {
    color: #888;
    font-size: 0.85rem;
}

.conference-category-header {
    color: #ccc;
    font-size: 0.9rem;
}

.conference-header-toggle {
    cursor: pointer;
}

/* League Detail Team Links */
.team-link {
    color: white;
    font-size: 0.95rem;
}

.team-link-sm {
    color: white;
    font-size: 0.85rem;
}