 .wpa-athlete-feed {
        font-family: inherit;
        color: #fff;
    }

    .wpa-hero-athlete {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 32px;
        align-items: start;
        margin-bottom: 48px;
        min-height: 300px;
    }

    .wpa-hero-img {
        width: 340px;
        height: 380px;
        object-fit: cover;
        object-position: top center;
        border-radius: 20px;
        flex-shrink: 0;
    }

    .wpa-hero-body { padding-top: 8px; }

    .wpa-hero-name {
		display: flex;
        flex-direction: column;
        color: #ffffff;
        font-size: clamp(2.4rem, 5vw, 4rem) !important;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        margin: 0 0 12px;
        letter-spacing: -0.02em;
    }
		
	.wpa-hero-name .wpa-name-first,
    .wpa-hero-name .wpa-name-last {
        display: block;
        line-height: 1;
    }

    .wpa-hero-subtitle {
        color: var(--yellow);
        font-size: 1.25rem;
        font-weight: 400;
        margin: 0;
    }

    .wpa-hero-stats {
        display: flex;
        gap: 32px;
        margin: 0 0 20px;
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .wpa-hero-stats span strong { color: var(--yellow); font-weight: 700; }

    .wpa-hero-bio {
        font-size: 1rem;
        line-height: 1.65;
        margin: 0 0 28px;
        opacity: 0.92;
}

	.wpa-hero-bio h3 {
		color: #ffffff !important;
    }

    .wpa-sponsor-box {
        border: 2px solid #fff;
        padding: 16px 24px;
        text-align: center;
        font-weight: 900;
        font-size: 1rem;
        letter-spacing: 0.05em;
        background: #fff;
        color: var(--navy);
        min-width: 160px;
        align-self: start;
        line-height: 1.3;
		border-radius: 6px;
    }

    .wpa-sponsor-box img {
        max-width: 140px;
        max-height: 64px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }

    .wpa-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--yellow);
        color: var(--navy);
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        padding: .3em 1em;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        transition: background 0.2s, transform 0.15s;
    }

    .wpa-btn:hover { background: #f0d800; transform: translateY(-1px); }

    .wpa-btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--yellow);
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: opacity 0.2s;
    }

    .wpa-btn-outline:hover { opacity: 0.75; }

    .wpa-supporting-athletes {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2em;
        margin-bottom: 28px;
    }

    .wpa-athlete-card {
        position: relative;
        border-radius: 8px;
        overflow: visible;
        /* aspect-ratio: 3/3.4; */
        cursor: pointer;
        text-decoration: none;
        display: block;
    }

    .wpa-athlete-card img {
        width: 100%;
        height: 100%;
		max-height: 200px;
        object-fit: cover;
        object-position: top center;
        border-radius: 20px;
        transition: transform 0.35s ease;
    }

    .wpa-athlete-card:hover img { transform: scale(1.04); }

    /* Wrapper straddles the bottom edge so the pill hangs over the card */
    .wpa-athlete-card-label-wrap {
        position: absolute;
        bottom: -.8em;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

    .wpa-athlete-card-label {
        background: var(--yellow);
        color: var(--navy);
        font-weight: 800;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 0.3em 1em;
        display: flex;
        align-items: center;
        gap: 6px;
        width: fit-content;
        border-radius: 100px;
        white-space: nowrap;
    }

    .wpa-feed-footer { text-align: center; padding-top: 3em; }

    .wpa-skeleton {
        background: linear-gradient(90deg, rgba(255,255,255,0.08) 25%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 75%);
        background-size: 200% 100%;
        animation: wpa-shimmer 1.5s infinite;
        border-radius: 8px;
    }

    .wpa-skeleton--hero { grid-column: 1 / -1; height: 320px; }
    .wpa-skeleton--card { aspect-ratio: 3/3.4; }

    @keyframes wpa-shimmer {
        0%   { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    @media (max-width: 900px) {
        .wpa-hero-athlete { grid-template-columns: 1fr; }
        .wpa-hero-img { width: 100%; height: 300px; }
        .wpa-sponsor-box { justify-self: start; }
        .wpa-supporting-athletes { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 500px) {
        .wpa-athlete-feed { padding: 32px 16px; }
        .wpa-supporting-athletes { grid-template-columns: 1fr; }
    }

@media (max-width: 900px) {
    .wpa-hero-img    { order: 1; }
    .wpa-sponsor-box { order: 2; }
    .wpa-hero-body   { order: 3; }
}

.wpa-athlete-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wpa-athlete-card-position {
    text-align: center;
    color: #fff;
    margin-top: 1em;
}