.sh,
.sh-ticker,
.shah-athlete,
.sh *,
.sh-ticker *,
.shah-athlete * {
    box-sizing: border-box;
}

.sh,
.sh-ticker {
    --orange: #F26A21;
    --orange-dk: #C8510F;
    --dark: #111;
    --white: #fff;
    --t: 0.18s cubic-bezier(.4,0,.2,1);
    font-family: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
    max-width: 100%;
}

.sh-ticker {
    align-items: center;
    background: var(--dark);
    border-bottom: 3px solid var(--orange);
    display: flex;
    height: 42px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 10000;
}

.sh-ticker-label {
    align-items: center;
    background: var(--orange);
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 900;
    height: 100%;
    letter-spacing: 3.4px;
    padding: 0 40px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2;
}

.sh-ticker-label::after {
    border-bottom: 21px solid transparent;
    border-left: 18px solid var(--orange);
    border-top: 21px solid transparent;
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
}

.sh-ticker-track {
    flex: 1;
    margin-left: 22px;
    mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
    overflow: hidden;
}

.sh-ticker-inner {
    animation: ticker 24s linear infinite;
    display: flex;
    gap: 0;
    white-space: nowrap;
}

.sh-ticker-inner:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sh-tick {
    align-items: center;
    color: rgba(255,255,255,.9);
    display: inline-flex;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: .3px;
    padding: 0 56px 0 0;
    white-space: nowrap;
}

.sh-tick::before {
    color: var(--orange);
    content: "▸";
    font-size: 15px;
    margin-right: 12px;
}

.sh {
    box-shadow: 0 4px 28px rgba(0,0,0,.16);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
}

body.admin-bar .sh {
    top: 32px;
}

.sh-banner {
    align-items: center;
    background: #fff;
    border-bottom: 3px solid var(--orange);
    display: flex;
    height: clamp(178px, 15vw, 238px);
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sh-field {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
}

.sh-eq {
    animation: eq-float var(--d,7s) ease-in-out infinite var(--dl,0s);
    filter: saturate(.7) blur(.4px);
    font-size: var(--sz,72px);
    line-height: 1;
    opacity: var(--op,.13);
    position: absolute;
    user-select: none;
    will-change: transform;
}

.sh-eq--1 { left: -8px; top: 50%; margin-top: -38px; --sz: 76px; --d: 7.5s; --dl: 0s; --r: -5deg; --op: .14; }
.sh-eq--2 { left: 6%; top: 10%; --sz: 66px; --d: 9s; --dl: 1.3s; --r: -20deg; --op: .12; }
.sh-eq--3 { left: 17%; top: 58%; --sz: 58px; --d: 8s; --dl: .7s; --r: 14deg; --op: .12; }
.sh-eq--4 { left: 30%; top: 8%; --sz: 56px; --d: 6.5s; --dl: 2s; --r: 8deg; --op: .11; }
.sh-eq--5 { left: 44%; top: 62%; --sz: 54px; --d: 11s; --dl: 3s; --r: 0deg; --op: .10; }
.sh-eq--6 { right: 28%; top: 5%; --sz: 60px; --d: 8.5s; --dl: 1.8s; --r: -10deg; --op: .11; }
.sh-eq--7 { right: 15%; top: 55%; --sz: 52px; --d: 7s; --dl: 3.5s; --r: 0deg; --op: .10; }
.sh-eq--8 { right: 5%; top: 12%; --sz: 58px; --d: 6s; --dl: 4s; --r: 5deg; --op: .11; }
.sh-eq--9 { right: -6px; top: 50%; margin-top: -30px; --sz: 62px; --d: 9.5s; --dl: 2.7s; --r: 12deg; --op: .12; }

@keyframes eq-float {
    0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
    50% { transform: translateY(-6px) rotate(var(--r,0deg)); }
}

.sh-logo {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 6px 0;
    position: relative;
    width: min(960px, calc(100vw - 110px));
    z-index: 4;
}

.sh-logo a {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    width: 100%;
}

.sh-logo img {
    height: clamp(142px, 13.5vw, 200px);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: min(1040px, calc(100vw - 96px));
    mix-blend-mode: multiply;
    object-fit: contain;
    object-position: center;
    transform: translateZ(0) scale(1);
    transform-origin: center;
    transition: filter var(--t), transform var(--t);
    width: min(960px, calc(100vw - 110px));
}

.sh-logo a:hover img {
    opacity: .92;
    transform: translateZ(0) scale(1.015);
}

.sh-hbg {
    align-items: center;
    background: var(--orange);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(242,106,33,.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 4px;
    height: 44px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: background var(--t);
    width: 44px;
    z-index: 10;
}

.sh-hbg:hover {
    background: var(--orange-dk);
}

.sh-hbg span {
    background: #fff;
    border-radius: 2px;
    display: block;
    height: 3px;
    transition: all var(--t);
    width: 22px;
}

.sh-hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sh-hbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sh-hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sh-drawer {
    background: var(--dark);
    border-radius: 0 0 12px 12px;
    border-top: 2px solid var(--orange);
    box-shadow: 0 20px 48px rgba(0,0,0,.45);
    display: none;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    width: 240px;
    z-index: 500;
}

.sh-drawer.open {
    display: flex;
}

.sh-drawer a {
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.82);
    display: flex;
    font-size: 15px;
    font-weight: 800;
    gap: 10px;
    letter-spacing: 1px;
    padding: 12px 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background var(--t), color var(--t);
}

.sh-drawer a:hover {
    background: rgba(255,255,255,.06);
    color: #fff;
}

.sh-drawer a.dr-store {
    background: var(--orange);
    border-bottom: none;
    color: #fff;
    font-weight: 900;
}

.sh-drawer a.dr-store:hover {
    background: var(--orange-dk);
}

.sh-cats {
    align-items: center;
    background: #fff;
    border-bottom: 2px solid rgba(242,106,33,.18);
    display: flex;
    gap: 14px;
    height: auto;
    justify-content: center;
    min-height: 54px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px clamp(12px, 3vw, 28px);
    scrollbar-width: none;
}

.sh-cats::-webkit-scrollbar {
    display: none;
}

.sh-cats-row {
    align-items: center;
    display: flex;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    max-width: none;
    min-width: 0;
    width: auto;
}

.sh-cat {
    align-items: center;
    background: transparent;
    border: 2px solid rgba(242,106,33,.52);
    border-radius: 6px;
    color: #111 !important;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: clamp(18px, 1.35vw, 24px);
    font-weight: 900;
    height: 40px;
    justify-content: center;
    letter-spacing: .5px;
    padding: 0 16px;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none !important;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
    white-space: nowrap;
    -webkit-text-fill-color: #111 !important;
    -webkit-text-stroke: 0 transparent !important;
}

.sh-cat:hover,
.sh-cat.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff !important;
    transform: translateY(-1px);
    -webkit-text-fill-color: #fff !important;
}

.sh-cat.store {
    background: var(--dark);
    border-color: var(--dark);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.sh-cat.store:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

.sh-tipbar {
    align-items: center;
    background: #fff;
    border-bottom: 0;
    border-left: 1px solid rgba(242,106,33,.22);
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    height: 40px;
    justify-content: center;
    min-height: 0;
    padding: 0 0 0 14px;
}

.sh-tipbar .sh-tip-text {
    color: #111;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.sh-tipbar .sh-tip-form {
    align-items: center;
    border: 1.5px solid rgba(242,106,33,.32);
    border-radius: 6px;
    display: flex;
    height: 30px;
    overflow: hidden;
    transition: border-color var(--t);
}

.sh-tipbar .sh-tip-form:focus-within {
    border-color: var(--orange);
}

.sh-tipbar .sh-tip-input {
    background: #fff;
    border: none;
    color: #111;
    display: none;
    font-family: Barlow, sans-serif;
    font-size: 16px;
    font-weight: 500;
    height: 100%;
    outline: none;
    padding: 0;
    width: 0;
}

.sh-tipbar .sh-tip-input::placeholder {
    color: #bbb;
}

.sh-tipbar .sh-tip-btn {
    background: var(--orange);
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    font-weight: 900;
    height: 100%;
    letter-spacing: 1px;
    padding: 0 14px;
    text-transform: uppercase;
    transition: background var(--t);
    white-space: nowrap;
}

.sh-tipbar .sh-tip-btn:hover {
    background: var(--orange-dk);
}

.sh-tipbar .sh-tip-btn.is-sent {
    background: var(--dark);
}

.sh-tags {
    align-items: center;
    background: var(--dark);
    border-bottom: 3px solid var(--orange);
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    height: auto;
    justify-content: flex-start;
    min-height: 56px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px clamp(14px, 3vw, 34px);
    scrollbar-width: none;
}

.sh-tags::-webkit-scrollbar {
    display: none;
}

.sh-tags-label {
    border-right: 2px solid rgba(242,106,33,.45);
    color: var(--orange);
    flex-shrink: 0;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 900;
    letter-spacing: 6px;
    margin-right: 10px;
    padding-right: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

.sh-tag {
    align-items: center;
    background: transparent;
    border: 2px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: #fff2ea !important;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: clamp(18px, 1.6vw, 26px);
    font-weight: 900;
    letter-spacing: 0;
    min-width: 0;
    padding: 7px 18px;
    text-decoration: none;
    text-shadow: none !important;
    transition: all var(--t);
    white-space: nowrap;
    -webkit-text-fill-color: #fff2ea !important;
    -webkit-text-stroke: 0 transparent !important;
}

.sh-tag:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.shah-header-active :where(#masthead, .site-header, .custom-header, .header-main, .header-top, .header-image, .header-wrapper, .main-header, .site-branding, .main-navigation, .navbar, .navigation, .header-navigation),
.sh-header-active :where(#masthead, .site-header, .custom-header, .header-main, .header-top, .header-image, .header-wrapper, .main-header, .site-branding, .main-navigation, .navbar, .navigation, .header-navigation) {
    display: none !important;
}

html:has(.sh) {
    overflow-x: hidden;
}

.shah-athlete {
    --shah-orange: #F26A21;
    --shah-ink: #171717;
    --shah-charcoal: #262626;
    --shah-line: rgba(242, 106, 33, .28);
    --shah-paper: #ffffff;
    --shah-soft: #fff6ef;
    color: var(--shah-ink);
    font-family: Inter, Roboto, Arial, sans-serif;
    max-width: 100%;
}

.shah-athlete {
    background: #fff;
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(18px, 4vw, 44px);
}

.shah-athlete__hero {
    align-items: stretch;
    background: linear-gradient(135deg, #fff 0 58%, var(--shah-soft) 58% 100%);
    border: 2px solid var(--shah-line);
    display: grid;
    gap: clamp(18px, 4vw, 40px);
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
    padding: clamp(24px, 5vw, 54px);
}

.shah-eyebrow {
    color: var(--shah-orange);
    font-family: Oswald, Inter, sans-serif;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.shah-athlete h1,
.shah-card h2 {
    color: var(--shah-charcoal);
    font-family: Oswald, Inter, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.shah-athlete h1 {
    font-size: clamp(3rem, 8vw, 6.6rem);
    line-height: .94;
    margin: 0;
}

.shah-athlete__tagline {
    color: rgba(23,23,23,.72);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.45;
    margin: 18px 0 0;
}

.shah-athlete__bar {
    background: var(--shah-orange);
    display: block;
    height: 7px;
    margin-top: 28px;
    width: min(220px, 70%);
}

.shah-athlete__hero img {
    aspect-ratio: 16 / 10;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.shah-athlete__layout {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 310px;
    margin-top: 24px;
}

.shah-athlete__main,
.shah-athlete__side {
    display: grid;
    gap: 24px;
}

.shah-card,
.shah-ad {
    background: #fff;
    border: 1px solid rgba(23,23,23,.12);
    box-shadow: 0 14px 30px rgba(23,23,23,.06);
    padding: clamp(18px, 3vw, 30px);
}

.shah-card h2 {
    border-left: 7px solid var(--shah-orange);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1;
    margin: 0 0 20px;
    padding-left: 13px;
}

.shah-bio-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.shah-bio-grid div {
    border-bottom: 1px solid rgba(23,23,23,.1);
    padding-bottom: 12px;
}

.shah-bio-grid dt {
    color: var(--shah-orange);
    font-family: Oswald, Inter, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.shah-bio-grid dd {
    color: rgba(23,23,23,.82);
    margin: 4px 0 0;
}

.shah-video {
    aspect-ratio: 16 / 9;
    background: #fff6ef;
    border: 1px solid var(--shah-line);
}

.shah-video iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.shah-stat-grid,
.shah-coverage-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shah-stat-grid div {
    background: var(--shah-soft);
    border: 1px solid var(--shah-line);
    padding: 16px;
}

.shah-stat-grid strong {
    color: var(--shah-orange);
    display: block;
    font-family: Oswald, Inter, sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.shah-stat-grid span {
    color: rgba(23,23,23,.72);
    display: block;
    font-size: .78rem;
    font-weight: 800;
    margin-top: 8px;
    text-transform: uppercase;
}

.shah-ad {
    border: 2px dashed rgba(242,106,33,.36);
    text-align: center;
}

.shah-ad span {
    color: rgba(23,23,23,.52);
    display: block;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.shah-ad p {
    color: rgba(23,23,23,.72);
    margin: 0;
}

.shah-coverage-card {
    border: 1px solid rgba(23,23,23,.12);
    color: var(--shah-charcoal);
    display: block;
    padding: 12px;
    text-decoration: none;
}

.shah-coverage-card img {
    aspect-ratio: 16 / 9;
    display: block;
    margin-bottom: 12px;
    object-fit: cover;
    width: 100%;
}

.shah-coverage-card strong,
.shah-related-list a {
    color: var(--shah-charcoal);
    display: block;
    font-weight: 900;
}

.shah-coverage-card span {
    color: var(--shah-orange);
    display: block;
    font-size: .78rem;
    font-weight: 800;
    margin: 8px 0;
}

.shah-coverage-card p,
.shah-empty {
    color: rgba(23,23,23,.68);
    margin: 0;
}

.shah-related-list {
    display: grid;
    gap: 10px;
}

.shah-related-list a {
    border-bottom: 1px solid rgba(23,23,23,.12);
    padding-bottom: 10px;
    text-decoration: none;
}

@media (max-width: 980px) {
    .shah-athlete__hero,
    .shah-athlete__layout {
        grid-template-columns: 1fr;
    }

    .shah-athlete__side {
        grid-row: auto;
    }
}

@media (max-width: 782px) {
    body.admin-bar .sh {
        top: 46px;
    }
}

@media (max-width: 660px) {
    .sh-banner {
        height: 132px;
    }

    .sh-logo {
        width: calc(100vw - 74px);
    }

    .sh-logo img {
        height: 106px;
        max-width: calc(100vw - 76px);
        object-fit: contain;
        object-position: center;
        transform: translateZ(0) scale(1);
        width: calc(100vw - 74px);
    }

    .sh-logo a:hover img {
        transform: translateZ(0) scale(1.01);
    }

    .sh-hbg {
        height: 38px;
        right: 10px;
        width: 38px;
    }

    .sh-hbg span {
        height: 3px;
        width: 20px;
    }

    .sh-cats {
        gap: 7px;
        justify-content: flex-start;
        min-height: 42px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 5px 8px;
        scrollbar-width: none;
    }

    .sh-cats::-webkit-scrollbar,
    .sh-tags::-webkit-scrollbar {
        display: none;
    }

    .sh-cats-row {
        flex: 0 0 auto;
        flex-wrap: nowrap;
        gap: 7px;
        justify-content: flex-start;
        min-width: max-content;
        width: auto;
    }

    .sh-cat {
        flex: 0 0 auto;
        font-size: 14px;
        height: 30px;
        letter-spacing: .2px;
        padding: 0 8px;
    }

    .sh-tipbar {
        border-left: 1px solid rgba(242,106,33,.22);
        flex: 0 0 auto;
        gap: 6px;
        height: 30px;
        min-height: 0;
        padding: 0 0 0 8px;
    }

    .sh-tipbar .sh-tip-text {
        color: #111;
        display: block;
        font-size: 0;
        min-width: 0;
    }

    .sh-tipbar .sh-tip-text::before {
        content: "Tips?";
        font-size: 14px;
    }

    .sh-tipbar .sh-tip-input {
        display: none;
    }

    .sh-tipbar .sh-tip-btn {
        border-radius: 6px;
        font-size: 13px;
        padding: 0 10px;
    }

    .sh-tipbar .sh-tip-form {
        border: 0;
        flex: 0 0 auto;
        height: 28px;
    }

    .sh-tags {
        flex-wrap: nowrap;
        gap: 8px;
        height: auto;
        justify-content: flex-start;
        min-height: 44px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 6px 9px;
        scrollbar-width: none;
    }

    .sh-tag {
        flex: 0 0 auto;
        font-size: 16px;
        padding: 5px 11px;
    }

    .sh-tags-label {
        border-bottom: 0;
        border-right: 2px solid rgba(242,106,33,.45);
        flex: 0 0 auto;
        font-size: 21px;
        letter-spacing: 5px;
        margin: 0 8px 0 0;
        padding: 0 12px 0 0;
        text-align: left;
    }

    .sh-ticker {
        height: 36px;
    }

    .sh-ticker-label {
        font-size: 15px;
        letter-spacing: 3px;
        padding: 0 16px;
    }

    .sh-ticker-label::after {
        border-bottom-width: 18px;
        border-left-width: 12px;
        border-top-width: 18px;
        right: -12px;
    }

    .sh-ticker-track {
        margin-left: 16px;
    }

    .sh-ticker-inner {
        animation-duration: 16s;
    }

    .sh-tick {
        font-size: 17px;
        padding-right: 34px;
    }

    .sh-tick::before {
        font-size: 12px;
        margin-right: 8px;
    }

    .sh-drawer {
        border-radius: 0 0 10px 10px;
        width: 100%;
    }

    .sh-drawer a {
        font-size: 15px;
        padding: 11px 16px;
    }
}

@media (max-width: 640px) {
    .shah-athlete {
        padding: 14px;
    }

    .shah-athlete__hero {
        padding: 20px;
    }

    .shah-bio-grid,
    .shah-stat-grid,
    .shah-coverage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .sh-banner {
        height: 118px;
    }

    .sh-logo {
        width: calc(100vw - 66px);
    }

    .sh-logo img {
        height: 94px;
        max-width: calc(100vw - 68px);
        transform: translateZ(0) scale(1);
        width: calc(100vw - 66px);
    }

    .sh-cat {
        font-size: 13px;
        height: 28px;
        padding: 0 7px;
    }

    .sh-tag {
        font-size: 15px;
        padding: 5px 10px;
    }

    .sh-tags-label {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .sh-tipbar .sh-tip-text::before {
        font-size: 13px;
    }

    .sh-tipbar .sh-tip-btn {
        font-size: 12px;
        padding: 0 9px;
    }
}
