/**
 * BonusDevil Design - Master CSS
 * Version: 1.0.0
 * Brand colors, typography, layout, components
 */

/* ============================================================================
   ROOT VARIABLES
   ============================================================================ */
:root {
    /* Colors */
    --bd-primary-red: #8B1E1E;
    --bd-cta-red: #C0392B;
    --bd-bg-dark: #1a1a2e;
    --bd-card-dark: #16213e;
    --bd-header-light: #FFFFFF;
    --bd-text-white: #FFFFFF;
    --bd-text-secondary: #a0a0b0;
    --bd-text-dark: #1a1a2e;
    
    /* Typography */
    --bd-font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --bd-spacing-xs: 0.25rem;
    --bd-spacing-sm: 0.5rem;
    --bd-spacing-md: 1rem;
    --bd-spacing-lg: 1.5rem;
    --bd-spacing-xl: 2rem;
    
    /* Sizing */
    --bd-radius-sm: 4px;
    --bd-radius-md: 8px;
    
    /* Shadows */
    --bd-shadow-sm: 0 1px 2px rgba(0,0,0,0.1);
    --bd-shadow-md: 0 4px 6px rgba(0,0,0,0.15);
    --bd-shadow-lg: 0 10px 25px rgba(0,0,0,0.2);
}

/* ============================================================================
   GLOBAL STYLES
   ============================================================================ */

* {
    box-sizing: border-box;
}

html, body {
    font-family: var(--bd-font-primary);
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bd-bg-dark);
    color: var(--bd-text-white);
    line-height: 1.6;
}

a {
    color: var(--bd-primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--bd-cta-red);
}

/* ============================================================================
   HEADER & BRANDING
   ============================================================================ */

.site-header {
    background-color: var(--bd-header-light);
    padding: 1rem 0;
    box-shadow: var(--bd-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--bd-spacing-md);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: block;
}

.site-logo-text {
    font-family: var(--bd-font-primary);
    font-weight: 700;
    font-size: 24px;
    color: var(--bd-text-dark);
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1;
}

.site-tagline {
    font-family: var(--bd-font-primary);
    font-weight: 600;
    font-size: 12px;
    color: var(--bd-primary-red);
    margin: 0;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.main-navigation {
    margin-left: auto;
    flex-grow: 1;
    max-width: 600px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: var(--bd-text-dark);
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--bd-cta-red);
}

/* Mega menu / submenu */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bd-header-light);
    min-width: 200px;
    box-shadow: var(--bd-shadow-md);
    border-top: 3px solid var(--bd-cta-red);
    padding: var(--bd-spacing-md) 0;
    margin-top: 0.5rem;
    z-index: 100;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    padding: 0;
}

.main-navigation .sub-menu a {
    padding: 0.75rem var(--bd-spacing-md);
    display: block;
    font-weight: 400;
    font-size: 13px;
}

.main-navigation .sub-menu a:hover {
    background-color: rgba(139, 30, 30, 0.05);
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.breadcrumb {
    background: transparent;
    padding: var(--bd-spacing-md) 0;
    font-size: 13px;
    color: var(--bd-text-secondary);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--bd-spacing-md);
    padding-right: var(--bd-spacing-md);
}

.breadcrumb a {
    color: var(--bd-text-secondary);
}

.breadcrumb a:hover {
    color: var(--bd-text-white);
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: var(--bd-text-secondary);
}

/* ============================================================================
   CONTENT CONTAINER
   ============================================================================ */

.site-content,
.page-wrapper,
main {
    background-color: var(--bd-bg-dark);
    color: var(--bd-text-white);
}

.container,
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--bd-spacing-md);
}

/* ============================================================================
   HERO / PAGE HEADER
   ============================================================================ */

.page-header,
.archive-header {
    background-color: var(--bd-bg-dark);
    padding: 3rem var(--bd-spacing-md);
    margin-bottom: 2rem;
}

.page-header h1,
.archive-header h1 {
    font-family: var(--bd-font-primary);
    font-weight: 700;
    font-size: 48px;
    color: var(--bd-text-white);
    margin: 0 0 1rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .tagline,
.archive-header .description {
    color: var(--bd-text-secondary);
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================================================
   CARDS & GRIDS
   ============================================================================ */

.team-grid,
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--bd-spacing-md);
}

.team-card,
.logo-card {
    background: var(--bd-text-white);
    border-radius: var(--bd-radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--bd-shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover,
.logo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bd-shadow-md);
    border: 2px solid var(--bd-primary-red);
}

.team-card img,
.logo-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.team-card h3,
.logo-card h3 {
    font-family: var(--bd-font-primary);
    font-weight: 700;
    font-size: 16px;
    color: var(--bd-text-dark);
    margin: 1rem 0 0.5rem 0;
}

.team-card a,
.logo-card a {
    color: var(--bd-text-dark);
    text-decoration: none;
}

.team-card a:hover,
.logo-card a:hover {
    color: var(--bd-cta-red);
}

/* ============================================================================
   BUTTONS / CTAs
   ============================================================================ */

.btn,
.cta-button,
button,
a.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--bd-cta-red);
    color: var(--bd-text-white);
    font-family: var(--bd-font-primary);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--bd-radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover,
.cta-button:hover,
button:hover,
a.button:hover {
    background-color: #a4311f;
    text-decoration: none;
}

.btn-block,
.cta-button-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background-color: var(--bd-cta-red);
}

.btn-secondary {
    background-color: var(--bd-card-dark);
    border: 1px solid var(--bd-text-secondary);
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bd-font-primary);
    font-weight: 700;
    margin: 1rem 0 0.5rem 0;
    color: var(--bd-text-white);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0 0 1rem 0;
    line-height: 1.8;
}

.text-secondary {
    color: var(--bd-text-secondary);
}

.text-dark {
    color: var(--bd-text-dark);
}

/* ============================================================================
   PAGINATION
   ============================================================================ */

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0 var(--bd-spacing-md);
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: var(--bd-radius-sm);
    background-color: var(--bd-card-dark);
    color: var(--bd-text-white);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: var(--bd-cta-red);
    color: var(--bd-text-white);
}

.pagination .current,
.pagination .page-numbers.current {
    background-color: var(--bd-cta-red);
    color: var(--bd-text-white);
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
    .team-grid,
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        padding: 1rem;
        display: block;
    }
    
    .team-grid,
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .page-header h1,
    .archive-header h1 {
        font-size: 32px;
    }
    
    .btn-block,
    .cta-button-block {
        width: 100%;
        margin: 1rem 0;
    }
    
    .site-branding {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .team-grid,
    .logo-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1,
    .archive-header h1 {
        font-size: 28px;
    }
    
    .main-navigation ul {
        gap: 0;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .site-logo {
        gap: 0.5rem;
    }
    
    .site-logo-text {
        font-size: 20px;
    }
}

/* ============================================================================
   TEAM PAGES
   ============================================================================ */

.single-bd_team {
    background: var(--bd-bg-dark);
}

.team-hero {
    background: var(--bd-bg-dark);
    padding: 3rem var(--bd-spacing-md);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.team-logo-container {
    background: var(--bd-text-white);
    border-radius: var(--bd-radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--bd-shadow-md);
}

.team-logo-container img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.team-info h1 {
    color: var(--bd-text-white);
    margin: 0 0 1rem 0;
}

.team-info .meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 14px;
    color: var(--bd-text-secondary);
}

.team-info .meta span {
    padding-right: 1rem;
    border-right: 1px solid var(--bd-text-secondary);
}

.team-info .meta span:last-child {
    border-right: none;
}

.team-cta {
    margin: 2rem 0;
}

.team-cta .btn-block {
    padding: 1rem;
    font-size: 18px;
}

@media (max-width: 768px) {
    .team-hero {
        grid-template-columns: 1fr;
    }
    
    .team-logo-container {
        padding: 1rem;
    }
    
    .team-logo-container img {
        width: 150px;
        height: 150px;
    }
}

/* ============================================================================
   SPORT ARCHIVE / HUB PAGES
   ============================================================================ */

.archive.bd_sport {
    background: var(--bd-bg-dark);
}

.archive-title {
    color: var(--bd-text-white);
    font-size: 32px;
    margin: 2rem 0;
    text-align: center;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
    body, .site-header, .main-navigation {
        background: white;
        color: black;
    }
    
    .no-print {
        display: none;
    }
}

/* =============================================
   SPORT LANDING PAGE
   ============================================= */

.bd-sport-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 60px;
}

/* Hero */
.bd-sport-hero {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 60%, #2a0a0a 100%);
    padding: 60px 24px;
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 3px solid #8B1E1E;
}
.bd-sport-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
}
.bd-sport-tagline {
    color: #aaaacc;
    font-size: 1.1rem;
    margin: 0;
}

/* Section titles */
.bd-sport-section {
    margin-bottom: 48px;
}
.bd-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    border-left: 4px solid #8B1E1E;
    padding-left: 12px;
    margin-bottom: 20px;
}

/* League / Country filter cards */
.bd-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.bd-filter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px 12px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}
.bd-filter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139,30,30,0.3);
}
.bd-filter-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a2e;
    display: block;
}
.bd-filter-count {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-top: 4px;
}

/* Team grid */
.bd-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}
.bd-team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 10px 12px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    text-align: center;
}
.bd-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139,30,30,0.35);
}
.bd-team-logo-wrap {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.bd-team-logo-wrap img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}
.bd-logo-placeholder {
    background: #f0f0f0;
    border-radius: 6px;
}
.bd-card-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}
.bd-card-cta {
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    background: #8B1E1E;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Mobile */
@media (max-width: 600px) {
    .bd-filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bd-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .bd-sport-hero {
        padding: 40px 16px;
    }
}
/* ===== TEAM SINGLE PAGE STYLES ===== */

/* SECTION 1: HERO SECTION */
.bd-team-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.bd-team-hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.bd-team-logo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    font-size: 14px;
}

.bd-team-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.1;
}

.bd-team-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.bd-team-hero-tags .bd-tag {
    background: rgba(139, 30, 30, 0.3);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 30, 30, 0.5);
}

.bd-team-hero-cta {
    background: #8B1E1E;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bd-team-hero-cta:hover {
    background: #a02424;
    transform: translateY(-2px);
}

/* SECTION 2: QUICK FACTS BAR */
.bd-quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #1a1a2e;
    padding: 32px 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.bd-quick-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bd-quick-fact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.bd-quick-fact-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

/* SECTION 3: AVAILABLE OFFERS */
.bd-team-offers {
    margin-bottom: 40px;
}

.bd-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 24px;
    text-align: center;
}

.bd-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.bd-offer-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bd-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(139,30,30,0.2);
}

.bd-offer-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.bd-offer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    padding: 16px 16px 8px;
    margin: 0;
}

.bd-offer-cta {
    color: #8B1E1E;
    text-decoration: none;
    padding: 0 16px 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bd-offer-cta:hover {
    color: #a02424;
}

.bd-offer-placeholder {
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
}

.bd-offer-placeholder p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin: 0 0 16px;
    font-size: 1rem;
}

.bd-link-cta {
    color: #8B1E1E;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.bd-link-cta:hover {
    color: #a02424;
}

/* SECTION 4: ABOUT THIS TEAM */
.bd-team-about {
    margin-bottom: 40px;
}

.bd-team-about-content {
    background: #ffffff;
    padding: 32px 28px;
    border-radius: 10px;
    border-left: 4px solid #8B1E1E;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: #333;
}

.bd-team-about-content p {
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.bd-team-about-content p:last-child {
    margin-bottom: 0;
}

/* SECTION 5: RELATED TEAMS */
.bd-related-teams {
    margin-bottom: 40px;
}

.bd-related-teams-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.bd-related-team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 16px 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bd-related-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139,30,30,0.25);
}

.bd-related-team-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.bd-related-team-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bd-team-hero-title {
        font-size: 2.2rem;
    }
    
    .bd-related-teams-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .bd-team-hero {
        padding: 40px 16px;
    }
    
    .bd-team-hero-title {
        font-size: 1.8rem;
    }
    
    .bd-quick-facts {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 16px;
    }
    
    .bd-offer-grid {
        grid-template-columns: 1fr;
    }
    
    .bd-team-about-content {
        padding: 20px 16px;
    }
    
    .bd-related-teams-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .bd-team-hero-logo {
        width: 90px;
        height: 90px;
    }
    
    .bd-team-hero-title {
        font-size: 1.5rem;
    }
    
    .bd-related-teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
