/* SportApp Teams - List View */
#sportappteamsintro {
    display: none;
}
#sportapp-team-filters {
    display: none;
    margin-top: var(--section-gap, 30px);
    padding: var(--component-gap-sm, 15px);
    background: var(--box-bg, white);
    border-radius: var(--box-border-radius, 8px);
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
}
#sportappteamsintro.visible, #sportapp-team-filters.visible, .elementor-editor-active #sportappteamsintro {
    display: block;
}
#sportapp-team-filter, #sportapp-team-search {
    width: max-content;
    border: 1px solid #181641;
    border-radius: 10px;
    margin: 10px 10px 10px 0;
    display: inline-block;
    height: 45px;
    padding: 5px 10px;
}
@media (max-width: 650px) {
    #sportapp-team-filter, #sportapp-team-search {
        width: calc(50% - 12px);
    }
}

#sportapp-team-filter .sportapp-filter-item {
    font-size: 1.05em;
    color: #002E6C;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    padding: 10px;
    min-width: 10%;
    margin: 10px 10px;
    border: solid 2px;
    text-align: center;
    cursor: pointer;
    width: 200px;
}
#sportapp-team-filter .sportapp-filter-item.sportapp-filter-active {
    background: #002E6C;
    color: white !important;
}

#sportappteams {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--component-gap, 20px);
    margin: var(--section-gap, 30px) 0;
}
@media (max-width: 1100px) {
    #sportappteams {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 750px) {
    #sportappteams {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    #sportappteams {
        grid-template-columns: repeat(1, 1fr);
    }
}

#sportappteams .sportapp-team {
    text-align: center;
    background: var(--box-bg, white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
    border-radius: var(--box-border-radius, 8px);
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
    position: relative;
    padding: 15px;
    text-transform: uppercase;
}
#sportappteams a.sportapp-team {
    cursor: pointer;
    text-decoration: none;
}
#sportappteams a.sportapp-team:hover {
    border: 1px solid #00000054;
}
#sportappteams .sportapp-team .sportapp-team-name {
    font-size: 1.1em;
    font-weight: bold;
}
#sportappteams .sportapp-team .sportapp-team-age-class {
    font-size: 0.9em;
    color: #666;
    background: #EFEFEF;
    padding: 3px 8px;
    border-radius: 5px;
    margin-bottom: 8px;
}
#sportappteams .sportapp-team .sportapp-team-series {
    font-size: 0.85em;
    color: #444;
}

/* Team logo - only shown for series websites */
#sportappteams .sportapp-team .sportapp-team-logo {
    margin: 15px 15px 10px;
    width: auto;
    max-height: 100px;
    max-width: 150px;
    object-fit: contain;
}

/* Adjust team card when it has a logo */
#sportappteams .sportapp-team.has-logo {
    padding-top: 10px;
}

#sportappteams .sportapp-team.has-logo .sportapp-team-name {
    margin-top: 5px;
}

/* SportApp Teams - Single Team View */
#sportappteam .sportapp-team-header {
    max-width: var(--content-max-width, 1100px);
    margin: 0 auto;
    padding: 30px var(--container-padding, 15px) 20px;
}

/* Team header with logo (series websites) */
#sportappteam .sportapp-team-header.has-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

#sportappteam .sportapp-team-header .sportapp-team-header-logo {
    width: auto;
    height: auto;
    max-height: 80px;
    max-width: 120px;
    object-fit: contain;
}

#sportappteam .sportapp-team-header .sportapp-team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ast-global-color-2, #1a2a4a);
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    #sportappteam .sportapp-team-header.has-logo {
        gap: 15px;
    }
    
    #sportappteam .sportapp-team-header .sportapp-team-header-logo {
        max-height: 60px;
        max-width: 80px;
    }
    
    #sportappteam .sportapp-team-header .sportapp-team-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Tabs Navigation - Desktop
   ========================================================================== */

.sportapp-tabs {
    max-width: var(--content-max-width, 1100px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 15px);
}

.sportapp-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
}

.sportapp-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.sportapp-tab:hover {
    color: var(--ast-global-color-0, #1a2a4a);
}

.sportapp-tab.active {
    color: var(--ast-global-color-0, #1a2a4a);
    border-bottom-color: var(--ast-global-color-0, #1a2a4a);
}

/* Hide icons on desktop */
.sportapp-tab-icon {
    display: none;
}

.sportapp-tab-content {
    max-width: var(--content-max-width, 1100px);
    margin: 0 auto;
}

/* ==========================================================================
   Tabs Navigation - Mobile Bottom Bar
   ========================================================================== */

@media (max-width: 768px) {
    /* Fixed bottom bar */
    .sportapp-tabs {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        max-width: none;
        margin: 0;
        padding: 0;
        background: var(--ast-global-color-0, #1a2a4a);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }

    .sportapp-tabs-nav {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        gap: 0;
        border-bottom: none;
        padding: 0;
    }

    .sportapp-tab {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 10px 8px;
        margin-bottom: 0;
        border-bottom: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        font-weight: 500;
        text-align: center;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

    .sportapp-tab:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

    .sportapp-tab.active {
        color: #ffffff;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.15);
    }

    /* Show icons on mobile */
    .sportapp-tab-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .sportapp-tab-icon img {
        width: 100%;
        height: 100%;
        filter: brightness(0) invert(1); /* Make icons white */
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }

    .sportapp-tab:hover .sportapp-tab-icon img,
    .sportapp-tab.active .sportapp-tab-icon img {
        opacity: 1;
    }

    .sportapp-tab-label {
        line-height: 1.2;
    }

    /* Add padding to content so it doesn't hide behind the bottom bar */
    .sportapp-tab-content {
        /*padding-bottom: 70px;*/
    }

    /* Add bottom padding to the whole team detail container */
    .sportapp-team-detail {
        /*padding-bottom: 60px;*/
    }

    /* Safe area inset for devices with home indicator (iPhone X+) */
    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        .sportapp-tabs {
            padding-bottom: env(safe-area-inset-bottom);
        }
    }
}

/* ==========================================================================
   Ottelut (Matches) Tab
   ========================================================================== */

.sportapp-ottelut-section {
    margin-top: 30px;
}

.sportapp-ottelut-block {
    margin-bottom: 40px;
}

.sportapp-ottelut-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ast-global-color-2, #1a2a4a);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.sportapp-ottelut-widget {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Style the embedded widget tables */
.sportapp-ottelut-widget [class*="widget-taulukot"],
.sportapp-ottelut-widget .pesistulokset-widget-taulukot,
.sportapp-ottelut-widget .jenkkifutis-widget-taulukot {
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Placeholder text */
.sportapp-placeholder {
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
}

.sportapp-team-lower-title {
    font-size: 2vh;
    font-weight: bold;
    text-transform: uppercase;
}

#sportappteam .sportapp-team-section {
    max-width: var(--content-max-width, 1100px);
    margin: var(--section-gap, 30px) auto;
    padding: 0 var(--container-padding, 15px);
}

.sportapp-team-section.sportapp-team-intro-logo,
.sportapp-team-section.sportapp-team-serieses-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}
.sportapp-team-intro-logo .sportapp-team-introduction {
    flex: 1;
}
.sportapp-team-intro-logo .sportapp-team-logo {
    flex: 1;
    text-align: center;
}
.sportapp-team-intro-logo .sportapp-team-logo img {
    max-width: 200px;
}
.sportapp-team-serieses,
.sportapp-team-club-info {
    flex: 1;
}
@media (max-width: 700px) {
    .sportapp-team-section.sportapp-team-intro-logo {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .sportapp-team-section.sportapp-team-serieses-info {
        flex-direction: column;
        gap: 30px;
    }
    .sportapp-team-serieses,
    .sportapp-team-club-info {
        width: 100%;
    }
    .sportapp-team-intro-logo .sportapp-team-logo {
        width: 100%;
    }
}

.sportapp-team-whitebox {
    background: var(--box-bg, white);
    padding: var(--component-gap, 20px);
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
    border-radius: var(--box-border-radius, 8px);
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
}

/* ==========================================================================
   Team Description (from websiteIntegration)
   ========================================================================== */

.sportapp-team-description {
    margin-bottom: var(--component-gap, 20px);
}

.team-description-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.team-description-content p {
    margin: 0 0 1em 0;
}

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

.team-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--card-border-radius, 6px);
    margin: 1em 0;
}

.team-description-content strong {
    font-weight: 600;
    color: #1a2a4a;
}

/* Box headings in team sections - use unified box-heading class */
.sportapp-team-serieses h2.box-heading,
.sportapp-team-club-info h2.box-heading {
    /* Uses unified .box-heading styles from design system */
}

/* Series name headings inside the whitebox */
.sportapp-team-serieses h3,
.sportapp-team-club-info h3 {
    color: var(--box-heading-color, #002E6C);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin: 0 0 10px 0;
}

.sportapp-series-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.sportapp-series-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.sportapp-series-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 8px;
}
.sportapp-series-level {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}
.sportapp-series-level img {
    height: 24px;
    width: auto;
}
.sportapp-series-groups {
    margin-top: 10px;
}
.sportapp-group-item {
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 8px;
}
.sportapp-group-phase {
    font-size: 0.9em;
    color: #666;
}

.sportapp-socials a {
    display: block;
    color: var(--box-heading-color, #002E6C);
    font-weight: bold;
    font-size: 1rem;
}

.sportapp-button {
    background-color: var(--box-bg, #fff);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ast-global-color-2, #1a2a4a);
    border-radius: var(--card-border-radius, 6px);
    position: relative;
    margin: 5px;
    z-index: 1;
}

/* Back button */
.sportapp-back-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: #002E6C;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.sportapp-back-button:hover {
    background: #001d44;
}

/* ==========================================================================
   Players Tab - Grid & Cards
   ========================================================================== */

.sportapp-players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1000px) {
    .sportapp-players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sportapp-players-grid {
        grid-template-columns: 1fr;
    }
}

/* Player Card */
.player-card {
    display: block;
    background: var(--box-bg, #fff);
    border-radius: var(--box-border-radius, 8px);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.player-card-content {
    display: flex;
    align-items: stretch;
    min-height: 180px;
}

.player-card-info {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.player-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ast-global-color-2, #1a2a4a);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.player-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.player-stat {
    display: flex;
    flex-direction: column;
}

.player-stat .stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: capitalize;
}

.player-stat .stat-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ast-global-color-2, #1a2a4a);
}

.player-card-image {
    width: 140px;
    min-width: 140px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.player-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.player-no-image {
    width: 100%;
    height: 100%;
}

@media (max-width: 400px) {
    .player-card-content {
        min-height: 150px;
    }
    
    .player-card-info {
        padding: 15px;
    }
    
    .player-card-name {
        font-size: 1.1rem;
    }
    
    .player-card-image {
        width: 100px;
        min-width: 100px;
    }
    
    .player-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .player-stat .stat-value {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   Single Player View
   ========================================================================== */

.single-player-view {
    padding-top: 20px;
}

.player-back-link {
    display: inline-block;
    margin-bottom: 25px;
    color: var(--ast-global-color-0, #002E6C);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.player-back-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Player Header Box
   ========================================================================== */

.player-header-box {
    background: var(--box-bg, #fff);
    border-radius: var(--box-border-radius, 8px);
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
    padding: var(--component-gap, 20px) var(--component-gap, 20px) 0 var(--component-gap, 20px);
    margin-bottom: var(--component-gap, 20px);
}

.player-header-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.player-header-image {
    flex-shrink: 0;
    height: 200px;
    border-radius: var(--card-border-radius, 6px);
    overflow: hidden;
}

.player-header-image img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}

.player-header-info {
    flex: 1;
    min-width: 0;
    padding-bottom: var(--component-gap, 20px);
}

.player-header-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ast-global-color-0, #1a2a4a);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.player-header-age {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.player-header-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.player-header-bio p {
    margin: 0 0 0.75em 0;
}

.player-header-bio p:last-child {
    margin-bottom: 0;
}

/* Player sponsors in header */
.player-header-sponsors {
    margin-top: var(--component-gap, 20px);
    padding-top: var(--component-gap, 20px);
    border-top: 1px solid #e5e7eb;
}

.player-sponsors-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--box-heading-color, #6b7280);
    margin: 0 0 12px 0;
}

.player-header-sponsors .player-sponsors-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

@media (max-width: 768px) {
    .player-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .player-header-image {
        height: 125px;
    }

    .player-header-name {
        font-size: 1.5rem;
    }

    .player-header-sponsors .player-sponsors-content {
        justify-content: center;
    }
}

.player-iframe-container {
    margin: var(--component-gap, 20px) 0;
    background: var(--box-bg, #fff);
    border-radius: var(--box-border-radius, 8px);
    overflow: hidden;
    /*border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));*/
    /*box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));*/
}

.player-iframe-container iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
}

/* Loading state */
.sportapp-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-style: italic;
}

/* ==========================================================================
   Team Sponsors Section
   ========================================================================== */

.team-sponsors-wrapper {
    max-width: var(--content-max-width, 1100px);
    margin: var(--section-gap, 30px) auto;
    padding: 0 var(--container-padding, 15px);
}

.team-sponsors-wrapper .teams-content-box {
    background: var(--box-bg, #fff);
    padding: 25px;
    border-radius: var(--box-border-radius, 8px);
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
}

/* .sponsors-title styles are unified in the design system */

.team-sponsor-tier {
    margin-bottom: 20px;
}

.team-sponsor-tier:last-child {
    margin-bottom: 0;
}

.team-sponsor-tier-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.team-sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.team-sponsor-logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.team-sponsor-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.team-sponsor-logo .sponsor-name-text {
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--ast-global-color-2, #1a2a4a);
    font-weight: 500;
}

/* Sponsor logo sizes */
.team-sponsor-tier-xl .team-sponsor-logo img {
    max-height: 100px;
}

.team-sponsor-tier-l .team-sponsor-logo img {
    max-height: 80px;
}

.team-sponsor-tier-m .team-sponsor-logo img {
    max-height: 60px;
}

.team-sponsor-tier-s .team-sponsor-logo img {
    max-height: 45px;
}

.team-sponsor-tier-xs .team-sponsor-logo img {
    max-height: 35px;
}

@media (max-width: 600px) {
    .team-sponsor-logos {
        gap: 12px;
    }
    
    .team-sponsor-tier-xl .team-sponsor-logo img {
        max-height: 70px;
    }
    
    .team-sponsor-tier-l .team-sponsor-logo img {
        max-height: 55px;
    }
    
    .team-sponsor-tier-m .team-sponsor-logo img {
        max-height: 45px;
    }
}

/* ==========================================================================
   Player Sponsors Section
   ========================================================================== */

.player-sponsors-wrapper {
    margin-bottom: var(--component-gap, 20px);
}

.player-sponsors-box {
    background: var(--box-bg, #fff);
    padding: var(--component-gap, 20px);
    border-radius: var(--box-border-radius, 8px);
    border: var(--box-border, 1px solid rgba(0, 0, 0, 0.06));
    box-shadow: var(--box-shadow, 0 2px 8px rgba(0, 0, 0, 0.08));
}

/* .sponsors-title styles are unified in the design system */

.player-sponsor-tier {
    margin-bottom: 15px;
}

.player-sponsor-tier:last-child {
    margin-bottom: 0;
}

.player-sponsor-tier-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.player-sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-sponsor-logo:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.player-sponsor-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.player-sponsor-logo .sponsor-name-text {
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--ast-global-color-2, #1a2a4a);
    font-weight: 500;
}

/* Player sponsor logo sizes */
.player-sponsor-tier-xl .player-sponsor-logo img {
    max-height: 80px;
}

.player-sponsor-tier-l .player-sponsor-logo img {
    max-height: 65px;
}

.player-sponsor-tier-m .player-sponsor-logo img {
    max-height: 50px;
}

.player-sponsor-tier-s .player-sponsor-logo img {
    max-height: 40px;
}

.player-sponsor-tier-xs .player-sponsor-logo img {
    max-height: 30px;
}
