/* ======================================================
   SIXSTATS PLAYER PROFILE
====================================================== */

.playerProfilePage {
    width: 70vw !important;
    max-width: 72.92vw !important;
    margin: 2vw auto 4vw !important;
    padding: 1.4vw !important;

    background: rgba(255,255,255,0.025) !important;
    border: 0.052vw solid rgba(255,255,255,0.10) !important;
    border-radius: 1vw !important;
    box-shadow: 0 0.8vw 2.2vw rgba(0,0,0,0.32) !important;
}

/* ======================================================
   PLAYER HERO
====================================================== */

#playerProfileHero {
    position: relative;
    overflow: hidden;

    margin-bottom: 1.2vw;

    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(135,206,250,0.18),
            transparent 28vw
        ),
        linear-gradient(
            135deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        ),
        var(--bg-card);

    border: 0.052vw solid rgba(135,206,250,0.20);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

/* #playerProfileHero::after {
    position: absolute;
    right: -9vw;
    bottom: -12vw;

    width: 25vw;
    height: 25vw;

    content: "";
    pointer-events: none;

    background: rgba(135,206,250,0.035);
    border: 0.052vw solid rgba(135,206,250,0.08);
    border-radius: 50%;
} */

#playerHeroTopBar {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1vw 1.2vw 0;
}

#playerProfileHero #backButton {
    width: 2.7vw;
    height: 2.7vw;
    min-width: 2.19vw;
    min-height: 2.19vw;
    margin: 0;

    color: var(--accent);
    background: rgba(135,206,250,0.12);
    border: 0.052vw solid rgba(135,206,250,0.28);
    border-radius: 50vw;

    cursor: pointer;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

#playerProfileHero #backButton:hover {
    transform: translateY(-0.12vw);
    background: rgba(135,206,250,0.20);
    border-color: rgba(135,206,250,0.50);
}

#playerProfileType {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;

    padding: 0.45vw 0.7vw;

    color: var(--text-muted);
    background: rgba(15,17,21,0.55);
    border: 0.052vw solid var(--border-soft);
    border-radius: 50vw;

    font-size: 0.7vw;
    letter-spacing: 0.04vw;
    text-transform: uppercase;
}

#playerProfileStatusDot {
    width: 0.48vw;
    height: 0.48vw;
    min-width: 0.365vw;
    min-height: 0.365vw;

    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0.22vw rgba(74,222,128,0.12);
}

#playerHeroLayout {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(17vw, 0.72fr) minmax(0, 1.28fr);
    gap: 2vw;
    align-items: stretch;

    padding: 1vw 1.4vw 1.4vw;
}

/* ======================================================
   PLAYER IMAGE
====================================================== */

#playerHeroVisual {
    min-width: 0;
}

#playerImageFrame {
    position: relative;
    width: 19vw;
    height: 19vw;
    min-height: 17.71vw;
    overflow: hidden;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 38%,
            rgba(135,206,250,0.16),
            transparent 55%
        ),
        linear-gradient(
            150deg,
            rgba(135,206,250,0.08),
            rgba(15,17,21,0.75)
        ),
        var(--bg-secondary);

    border: 0.052vw solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    box-shadow: 0 1vw 2vw rgba(0,0,0,0.32);
}

.playerProfilePage #playerimage {
    position: relative;
    z-index: 1;

    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;

    object-fit: contain;
    object-position: center bottom;

    background: transparent;
    border: none !important;
    border-radius: 0 !important;

    filter: drop-shadow(0 0.8vw 1.2vw rgba(0,0,0,0.38));
}

#playerImageGradient {
    position: absolute;
    z-index: 2;
    inset: 0;

    pointer-events: none;

    background: linear-gradient(
        180deg,
        transparent 65%,
        rgba(15,17,21,0.48) 100%
    );
}

/* ======================================================
   PLAYER IDENTITY
====================================================== */

#playerHeroDetails {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 1vw 0;
}

.playerProfileEyebrow {
    margin: 0 0 0.45vw;

    color: var(--accent);
    font-size: 0.7vw;
    font-weight: 600;
    letter-spacing: 0.12vw;
    text-transform: uppercase;
}

#playerTitleRow {
    display: flex;
    align-items: center;
    gap: 0.8vw;
    min-width: 0;
}

.playerProfilePage #playertitle {
    overflow: visible;
    margin: 0;

    color: var(--text-main);
    font-size: 3vw;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.08vw;
    text-align: left;

    text-overflow: ellipsis;
    white-space: nowrap;
}

#playerHeroTeamLink {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 3.7vw;
    height: 3.7vw;
    min-width: 2.71vw;
    min-height: 2.71vw;

    background: rgba(255,255,255,0.04);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

#playerHeroTeamLink:hover {
    transform: translateY(-0.15vw);
    background: rgba(135,206,250,0.08);
    border-color: rgba(135,206,250,0.38);
}

.playerProfilePage #playerTitleLogo {
    width: 2.8vw;
    height: 2.8vw;
    min-width: 1.98vw;
    min-height: 1.98vw;
    object-fit: contain;
}

#playerHeroLegalName {
    margin-top: 0.65vw;

    color: var(--text-muted);
    font-size: 1.05vw;
}

/* ======================================================
   PLAYER INFORMATION
====================================================== */

.playerProfilePage #playerinfodiv {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7vw;

    width: 100%;
    max-width: none;
    margin: 1.5vw 0 0;
    padding: 0;

    background: transparent;
    border-radius: 0;
    text-align: left;
}

.playerInfoItem {
    min-width: 0;
    padding: 0.85vw;

    background: rgba(15,17,21,0.48);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);
}

.playerInfoItemEarnings {
    border-color: rgba(135,206,250,0.20);
    background:
        linear-gradient(
            135deg,
            rgba(135,206,250,0.08),
            transparent
        ),
        rgba(15,17,21,0.48);
}

.playerInfoItemLabel {
    display: block;
    margin-bottom: 0.45vw;

    color: var(--text-muted);
    font-size: 0.62vw;
    letter-spacing: 0.05vw;
    text-transform: uppercase;
}

.playerInfoItemValue {
    display: flex;
    align-items: center;
    gap: 0.45vw;
    min-width: 0;

    color: var(--text-main);
    font-size: 0.86vw;
    font-weight: 600;
}

.playerInfoItemValue span,
.playerInfoItemValue a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.playerProfilePage #playerFlag,
.playerProfilePage #playerNameLogo {
    width: 1.25vw;
    height: 1.25vw;
    min-width: 0.94vw;
    min-height: 0.94vw;

    object-fit: contain;
    flex-shrink: 0;
}

.playerProfilePage #currentTeamLink,
.playerProfilePage #playertotalearnings {
    color: var(--accent);
    font-size: inherit;
}

.playerProfilePage #currentTeamLink:hover {
    text-decoration: underline;
}

#playerProfileLinks {
    display: flex;
    gap: 0.7vw;
    margin-top: 1vw;
}

.playerProfileAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45vw;

    min-height: 2.6vw;
    padding: 0.55vw 0.9vw;

    color: var(--text-main);
    background: rgba(255,255,255,0.04);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);

    font-family: "Oswald", system-ui, sans-serif;
    font-size: 0.78vw;
    cursor: pointer;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.playerProfileAction:hover {
    transform: translateY(-0.1vw);
    color: var(--accent);
    background: var(--accent-soft);
    border-color: rgba(135,206,250,0.38);
}

/* ======================================================
   CAREER METRICS
====================================================== */

.playerProfilePage #careerStatsDiv {
    width: 100%;
    max-width: none;
    margin: 1.2vw auto;
    padding: 1.2vw;

    background: var(--bg-card);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.playerSectionHeading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1vw;
    margin-bottom: 1vw;
}

.playerProfilePage #careerStatsCaption {
    margin: 0.25vw 0 0;

    color: var(--text-main);
    font-size: 1.45vw;
    text-align: left;
}

#careerRoundsSample {
    padding: 0.4vw 0.7vw;

    color: var(--text-muted);
    background: var(--bg-secondary);
    border: 0.052vw solid var(--border-soft);
    border-radius: 50vw;

    font-size: 0.68vw;
    white-space: nowrap;
}

#playerCareerMetricGrid {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0.65vw;
}

.playerCareerMetric {
    /*
     * Start at the width required by the card's content.
     * Longer values get more space and shorter values get less.
     */
    flex: 1 1 max-content;
    min-width: 0;
    padding: 0.7vw;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        ),
        var(--bg-secondary);

    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);
}

/* .playerCareerMetric::after {
    position: absolute;
    right: -2vw;
    bottom: -2.5vw;

    width: 5vw;
    height: 5vw;

    content: "";
    background: rgba(135,206,250,0.05);
    border-radius: 50%;
} */

.playerCareerMetricFeatured {
    border-color: rgba(135,206,250,0.35);
    background:
        linear-gradient(
            145deg,
            rgba(135,206,250,0.14),
            rgba(135,206,250,0.025)
        ),
        var(--bg-secondary);
}

.playerCareerMetricLabel,
.playerCareerMetric strong,
.playerCareerMetric small {
    position: relative;
    z-index: 1;
    display: block;
}

.playerCareerMetricLabel {
    color: var(--text-muted);
    font-size: 0.6vw;
    letter-spacing: 0.05vw;
    text-transform: uppercase;
}

.playerCareerMetric strong {
    display: block;
    width: max-content;
    max-width: 100%;

    margin: 0.65vw 0 0.3vw;

    color: var(--text-main);
    font-size: 1.35vw;
    font-variant-numeric: tabular-nums;
    line-height: 1.25;

    white-space: nowrap;
}

.playerCareerMetric small {
    overflow: visible;
    line-height: 1.2;

    color: var(--text-muted);
    font-size: 0.58vw;

    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ======================================================
   AD SPACING
====================================================== */

.playerProfilePage #eventTabsAdDiv {
    width: 100%;
    margin: 1.3vw auto;
}

/* ======================================================
   PLAYER DATA TABS
====================================================== */

.playerProfilePage > .tab {
    position: sticky;
    z-index: 20;
    top: 0.7vw;

    display: flex;
    justify-content: flex-start;
    gap: 0.55vw;
    overflow-x: auto;

    margin: 1.2vw 0;
    padding: 0.7vw;

    background: rgba(28,34,48,0.94);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: 0 0.7vw 1.6vw rgba(0,0,0,0.25);

    backdrop-filter: blur(0.625vw);
}

.playerProfilePage .tablinks {
    flex: 0 0 auto;
    padding: 0.55vw 0.95vw;

    color: var(--text-main);
    background: transparent;
    border: 0.052vw solid var(--border-soft);
    border-radius: 50vw;

    font-family: "Oswald", system-ui, sans-serif;
    font-size: 0.78vw;
    cursor: pointer;

    transition:
        color 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.playerProfilePage .tablinks:hover {
    color: var(--accent);
    background: var(--accent-soft);
    border-color: rgba(135,206,250,0.35);
}

.playerProfilePage .tablinks.active {
    color: #000;
    background: var(--accent);
    border-color: var(--accent);
}

.playerProfilePage .tabcontent {
    width: 100%;
    max-width: none;
    margin: 0 0 1.2vw;
    padding: 1.2vw;

    background: var(--bg-card);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.playerProfilePage #playerAwardsTitle {
    margin: 0 0 1vw;

    color: var(--text-main);
    font-size: 1.4vw;
    text-align: left;
}

.playerAwardDate {
    font-size: 0.7vw;
}

/* ======================================================
   PROFILE TABLES
====================================================== */

.playerProfilePage #playerEventStatstable,
.playerProfilePage #playerOperatorStatstable,
.playerProfilePage #playerMatchesStatstable {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    overflow: hidden;

    background: transparent;
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow: none;
}

.playerProfilePage #playerEventStatstable th,
.playerProfilePage #playerOperatorStatstable th,
.playerProfilePage #playerMatchesStatstable th {
    padding: 0.8vw;

    color: var(--text-main);
    background: var(--bg-secondary);
    border-bottom: 0.052vw solid var(--border-soft);

    font-size: 0.78vw;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.playerProfilePage #playerEventStatstable td,
.playerProfilePage #playerOperatorStatstable td,
.playerProfilePage #playerMatchesStatstable td {
    padding: 0.78vw;

    color: var(--text-muted);
    border-bottom: 0.052vw solid rgba(255,255,255,0.055);

    font-size: 0.76vw;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.playerProfilePage #playerEventStatstable tbody tr,
.playerProfilePage #playerOperatorStatstable tbody tr,
.playerProfilePage #playerMatchesStatstable tbody tr {
    transition: background 0.15s ease;
}

.playerProfilePage #playerEventStatstable tbody tr:hover,
.playerProfilePage #playerOperatorStatstable tbody tr:hover,
.playerProfilePage #playerMatchesStatstable tbody tr:hover {
    background: rgba(135,206,250,0.055);
}

.playerProfilePage .playerStatTeamLogo,
.playerProfilePage .playerStatEventLogo {
    width: 1.8vw;
    height: 1.8vw;
    min-width: 1.25vw;
    min-height: 1.25vw;
    object-fit: contain;

    transition: transform 0.18s ease;
}

.playerProfilePage .playerStatTeamLogo:hover,
.playerProfilePage .playerStatEventLogo:hover {
    transform: translateY(-0.12vw) scale(1.05);
}

/* ======================================================
   MATCH FILTER
====================================================== */

.playerProfilePage #matchTypeFilter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7vw;

    margin: 0 0 1vw;
    padding: 0.8vw;

    background: var(--bg-secondary);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);
}

.playerProfilePage #typeChoiceLabel {
    color: var(--text-muted);
    font-size: 0.78vw;
}

.playerProfilePage #typeChoice {
    min-width: 8vw;
    height: 2.3vw;
    min-height: 1.875vw;
    padding: 0 0.65vw;

    color: var(--text-main);
    background: var(--bg-card);
    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);
    outline: none;

    font-family: "Oswald", system-ui, sans-serif;
    font-size: 0.76vw;
}

.playerProfilePage #typeChoice:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.18vw var(--accent-soft);
}

.playerProfilePage #operatorsDisclaimer {
    margin: -0.5vw 0 1vw;

    color: #fca5a5;
    font-size: 0.67vw;
    text-align: left;
}

/* ======================================================
   AWARDS
====================================================== */

.playerProfilePage #awardsContainer {
    width: 100%;
    max-width: none;
}

.playerProfilePage #awardsDiv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8vw;
    margin: 0;
}

.playerProfilePage #awardsDiv + #awardsDiv {
    margin-top: 0.8vw;
}

.playerProfilePage #award {
    min-width: 0;
    padding: 1vw;

    background:
        linear-gradient(
            145deg,
            rgba(135,206,250,0.07),
            rgba(255,255,255,0.015)
        ),
        var(--bg-secondary);

    border: 0.052vw solid var(--border-soft);
    border-radius: var(--radius-sm);
    box-shadow: none;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.playerProfilePage #award:hover {
    transform: translateY(-0.18vw);
    border-color: rgba(135,206,250,0.35);
}

.playerProfilePage #awardImage {
    width: 4.2vw;
    height: 4.2vw;
    min-width: 3.02vw;
    min-height: 3.02vw;

    margin: 0 auto 0.7vw;
    object-fit: contain;
}

.playerProfilePage .awardCaption {
    color: var(--text-main);
    font-size: 0.78vw;
    text-align: center;
}

/* ======================================================
   RESPONSIVE — TABLET
====================================================== */

@media (max-width: 1150px) {
    .playerProfilePage {
        width: 92vw !important;
        max-width: 92vw !important;
    }

     #playerCareerMetricGrid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    #playerHeroLayout {
        grid-template-columns: minmax(22.61vw, 0.75fr) 1.25fr;
    }

    .playerProfilePage #playerinfodiv {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   RESPONSIVE — MOBILE
====================================================== */

@media (max-width: 768px) {
    .playerProfilePage {
        width: 94vw !important;
        max-width: 94vw !important;
        margin: 14px auto 24px !important;
        padding: 10px !important;
        border-radius: 14px !important;
    }

    #playerProfileHero {
        border-radius: 14px;
    }

    #playerHeroTopBar {
        padding: 12px 12px 0;
    }

    #playerProfileHero #backButton {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    #playerProfileType {
        gap: 7px;
        padding: 7px 10px;
        font-size: 10px;
    }

    #playerHeroLayout {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 12px;
    }

    #playerImageFrame {
        width: 100%;
        height: 320px;
        min-height: 0;
        border-radius: 14px;
    }

    #playerHeroDetails {
        padding: 4px 0 0;
    }

    .playerProfileEyebrow {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    #playerTitleRow {
        gap: 9px;
    }

    .playerProfilePage #playertitle {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    #playerHeroTeamLink {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 12px;
    }

    .playerProfilePage #playerTitleLogo {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }

    #playerHeroLegalName {
        margin-top: 7px;
        font-size: 14px;
    }

    .playerProfilePage #playerinfodiv {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
    }

    .playerInfoItem {
        padding: 11px;
        border-radius: 10px;
    }

    .playerInfoItemLabel {
        margin-bottom: 6px;
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    .playerInfoItemValue {
        gap: 7px;
        font-size: 14px;
    }

    .playerProfilePage #playerFlag,
    .playerProfilePage #playerNameLogo {
        width: 20px;
        height: 20px;
    }

    #playerProfileLinks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 10px;
    }

    .playerProfileAction {
        min-height: 42px;
        padding: 9px 12px;
        border-radius: 10px;
        font-size: 13px;
    }

    .playerProfilePage #careerStatsDiv {
        margin: 12px auto;
        padding: 12px;
        border-radius: 14px;
    }

    .playerSectionHeading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }

    .playerProfilePage #careerStatsCaption {
        margin-top: 3px;
        font-size: 19px;
    }

    #careerRoundsSample {
        padding: 6px 9px;
        font-size: 11px;
    }

    #playerCareerMetricGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .playerCareerMetric {
        padding: 12px;
        border-radius: 10px;
    }

    .playerCareerMetricLabel {
        font-size: 10px;
        letter-spacing: 0.6px;
    }

    .playerCareerMetric strong {
        margin: 9px 0 5px;
        font-size: 22px;
    }

    .playerCareerMetric small {
        font-size: 10px;
    }

    .playerProfilePage > .tab {
        position: static;
        gap: 7px;
        margin: 12px 0;
        padding: 9px;
        border-radius: 14px;
    }

    .playerProfilePage .tablinks {
        padding: 8px 11px;
        font-size: 12px;
    }

    .playerProfilePage .tabcontent {
        margin-bottom: 12px;
        padding: 12px;
        border-radius: 14px;
        overflow: hidden;
    }

    .playerProfilePage #playerAwardsTitle {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .playerProfilePage #playerEventStatstable,
    .playerProfilePage #playerOperatorStatstable,
    .playerProfilePage #playerMatchesStatstable {
        display: block;
        width: 100%;
        overflow-x: auto;
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .playerProfilePage #playerEventStatstable th,
    .playerProfilePage #playerEventStatstable td,
    .playerProfilePage #playerOperatorStatstable th,
    .playerProfilePage #playerOperatorStatstable td,
    .playerProfilePage #playerMatchesStatstable th,
    .playerProfilePage #playerMatchesStatstable td {
        padding: 10px;
        font-size: 12px;
    }

    .playerProfilePage .playerStatTeamLogo,
    .playerProfilePage .playerStatEventLogo {
        width: 26px;
        height: 26px;
    }

    .playerProfilePage #matchTypeFilter {
        align-items: stretch;
        flex-direction: column;
        gap: 7px;
        padding: 10px;
        border-radius: 10px;
    }

    .playerProfilePage #typeChoiceLabel {
        font-size: 12px;
    }

    .playerProfilePage #typeChoice {
        width: 100%;
        height: 42px;
        padding: 0 10px;
        font-size: 14px;
        border-radius: 9px;
    }

    .playerProfilePage #operatorsDisclaimer {
        margin: -4px 0 10px;
        font-size: 11px;
    }

    .playerProfilePage #awardsDiv {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .playerProfilePage #award {
        padding: 11px;
        border-radius: 10px;
    }

    .playerProfilePage #awardImage {
        width: 56px;
        height: 56px;
    }

    .playerProfilePage .awardCaption {
        font-size: 12px;
    }
}

@media (max-width: 430px) {
    #playerImageFrame {
        height: 280px;
    }

    .playerProfilePage #playertitle {
        font-size: 31px;
    }

    #playerCareerMetricGrid {
        grid-template-columns: 1fr 1fr;
    }

    #playerProfileLinks {
        grid-template-columns: 1fr;
    }

    .playerProfilePage #awardsDiv {
        grid-template-columns: 1fr;
    }
}

/* Prevent Oswald descenders from being clipped */
.playerProfilePage #playertitle,
.playerCareerMetric strong,
.playerCareerMetric small,
.playerInfoItemValue,
.playerProfilePage td,
.playerProfilePage th,
.playerProfilePage .awardCaption {
    line-height: 1.25;
}

/* These elements contain text and should not clip vertically */
.playerProfilePage #playertitle,
.playerCareerMetric strong,
.playerCareerMetric small {
    overflow: visible;
    padding-bottom: 0.08vw;
}