/* ── Bio / About Section ─────────────────────────────── */
.bio-section{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    padding: 0 24px;
}

.bio-left {
    flex: 0 1 clamp(280px, 44vw, 520px);
    display: flex;
    justify-content: center;
}

.bio-right{
    flex: 1 1 0;
    max-width: 800px;
    display: flex;
    flex-direction: column;
}

.hooting-figure, .shooting-figure {
    display: block;
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
    box-shadow: 0 18px 40px rgba(0,0,0,0.6), 0 2px 8px rgba(0,212,255,0.06);
}

.shooting-img{
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.shooting-figure::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 20%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
}

.shooting-caption{
    display: block;
    font-size: 0.7rem;
    color: rgba(245,245,245,0.6);
    padding: 10px 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), transparent);
}

.shooting-figure:hover .shooting-img{
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.02);
}

.bio-section p{
    padding: 20px 20px 20px 0;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    color: whitesmoke;
    line-height: 1.7;
}

.bio-right .eyebrow {
    padding-left: 0;
}

/* ── Spotify Stats Card ─────────────────────────────── */
.spotify-dates {
    padding: 20px;
}

.spotify-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.stat {
    background: #0d1117;
    border-left: 3px solid #00d4ff;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.58rem;
    color: rgba(0, 212, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 8px;
}

.cities-heading {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(0, 212, 255, 0.45);
    margin: 16px 0 4px 0;
    padding-left: 12px;
    border-left: 3px solid rgba(0, 212, 255, 0.25);
}

.spotify-cities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spotify-cities li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d1117;
    border-left: 3px solid rgba(0, 212, 255, 0.2);
    padding: 10px 14px;
}

.city {
    font-size: 0.78rem;
    color: rgba(0, 212, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.listeners {
    font-size: 0.72rem;
    color: rgba(0, 212, 255, 0.4);
    font-variant-numeric: tabular-nums;
}
