/* ==========================================================================
   Music page — editorial layout, sibling to the radar (places_page.css) and
   the magazine (content_page.css). Flat surfaces, hairline rules, uppercase
   furniture, red as the only accent.
   ========================================================================== */

.music-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 1.5rem 4rem;
    color: #eee;
}

.music-page a {
    text-decoration: none;
}

/* --- Masthead ------------------------------------------------------------ */

.music-masthead {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #fff;
    padding-bottom: 1.25rem;
}

.music-masthead-inner {
    position: relative;
    z-index: 2;
}

.music-masthead-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.music-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ff0000;
}

.music-date {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777;
}

.music-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.music-strapline {
    margin-top: 0.75rem;
    color: #999;
    font-size: 1rem;
    max-width: 46ch;
}

/* Vinyl behind the masthead — the music page's answer to the radar sweep.
   Deliberately faint so the type stays the loudest thing on the page. */
.music-vinyl-bg {
    position: absolute;
    top: 50%;
    right: 2%;
    width: 420px;
    height: 420px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    mask-image: radial-gradient(circle, #000 45%, transparent 72%);
    -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 72%);
}

.music-groove,
.music-shine,
.music-label {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.music-groove {
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.music-groove-1 { width: 150px; height: 150px; }
.music-groove-2 { width: 230px; height: 230px; }
.music-groove-3 { width: 310px; height: 310px; }
.music-groove-4 { width: 400px; height: 400px; }

.music-label {
    width: 96px;
    height: 96px;
    border: 1px solid rgba(255, 0, 0, 0.45);
    background: radial-gradient(circle, rgba(255, 0, 0, 0.18), transparent 70%);
}

.music-shine {
    width: 400px;
    height: 400px;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.14) 0deg, rgba(255, 0, 0, 0.12) 30deg, transparent 80deg, transparent 360deg);
    animation: music-spin 9s linear infinite;
}

@keyframes music-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .music-shine {
        animation: none;
    }
}

/* --- Stat rail ----------------------------------------------------------- */

.music-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #333;
}

.music-stat {
    padding: 1.25rem 1rem 1.25rem 0;
    border-right: 1px solid #222;
}

.music-stat:last-child {
    border-right: none;
}

.music-stat:not(:first-child) {
    padding-left: 1.25rem;
}

.music-stat-num {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
}

.music-stat-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #777;
}

/* --- Shared section furniture -------------------------------------------- */

.music-section-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    margin: 3rem 0 0.75rem;
}

.music-section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #333;
}

.music-section-intro {
    color: #888;
    font-size: 0.9rem;
    margin: 0 0 1.5rem;
}

.music-more {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    border-bottom: 1px solid #ff0000;
    padding-bottom: 2px;
}

.music-more:hover {
    color: #fff;
}

/* --- Search + genre rail ------------------------------------------------- */

.music-search {
    display: flex;
    gap: 0;
    margin: 2rem 0 1.25rem;
    max-width: 520px;
}

.music-search-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.75rem 0.9rem;
    background: #0e0e0e;
    border: 1px solid #333;
    border-right: none;
    border-radius: 0;
    color: #eee;
    font-size: 0.9rem;
    font-family: inherit;
}

.music-search-input::placeholder {
    color: #666;
}

.music-search-input:focus {
    outline: none;
    border-color: #ff0000;
}

.music-search-btn {
    flex: 0 0 auto;
    padding: 0 1.25rem;
    background: #ff0000;
    border: 1px solid #ff0000;
    border-radius: 0;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.15s;
}

.music-search-btn:hover {
    background: #cc0000;
}

.music-genre-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #222;
}

.music-genre-rail-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #666;
    margin-right: 0.4rem;
}

/* --- Chips (shared by the genre rail and the genre index) ---------------- */

.music-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    color: #aaa;
    border: 1px solid #262626;
    transition: color 0.15s, border-color 0.15s;
    text-transform: capitalize;
}

.music-chip[hidden] {
    display: none;
}

.music-chip:hover {
    color: #fff;
    border-color: #555;
}

.music-chip-count {
    font-size: 0.68rem;
    font-weight: 700;
    color: #ff0000;
}

.music-chip.is-active {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
}

.music-chip.is-active .music-chip-count {
    color: #fff;
}

.music-chip-clear {
    border-style: dashed;
    color: #888;
    text-transform: none;
}

/* --- New releases -------------------------------------------------------- */

.music-releases {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 2px;
}

.music-release-lead {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    min-height: 340px;
}

/* Absolute so the lead never dictates the row height — it stretches to match
   the release grid beside it, whatever that ends up being. */
.music-release-lead img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%) contrast(1.05);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.music-release-lead:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.05);
}

.music-release-lead-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.94) 25%, rgba(0, 0, 0, 0.55) 65%, transparent);
}

.music-flag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000;
    background: #fff;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.7rem;
}

.music-release-lead-artist {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #ff0000;
    margin-bottom: 0.35rem;
}

.music-release-lead-title {
    display: block;
    font-size: clamp(1.5rem, 3.2vw, 2.4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 0.5rem;
    max-width: 20ch;
}

.music-release-lead:hover .music-release-lead-title {
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.music-release-lead-meta {
    display: block;
    font-size: 0.78rem;
    color: #aaa;
    margin: 0;
}

.music-release-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.music-release {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    aspect-ratio: 1;
}

.music-release img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.music-release:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.music-release-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.7rem 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 30%, transparent);
}

.music-release-artist {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff0000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-release-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-top: 0.15rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.music-release-date {
    display: block;
    font-size: 0.65rem;
    color: #999;
    margin-top: 0.2rem;
}

/* --- The chart ----------------------------------------------------------- */

.music-chart {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #262626;
    columns: 2;
    column-gap: 3rem;
}

.music-chart-item {
    break-inside: avoid;
    border-bottom: 1px solid #262626;
}

.music-chart-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
}

.music-chart-rank {
    flex: 0 0 auto;
    width: 2rem;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    color: #444;
    text-align: right;
}

.music-chart-link:hover .music-chart-rank {
    color: #ff0000;
}

/* Week-on-week movement. Red is reserved for the accent, so a climb is white
   and a fall is grey rather than green and red. */
.music-chart-move {
    flex: 0 0 auto;
    width: 2.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
}

.music-chart-move.is-up {
    color: #fff;
}

.music-chart-move.is-new {
    color: #ff0000;
}

.music-chart-thumb {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    background: #111;
    overflow: hidden;
}

.music-chart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(45%);
    transition: filter 0.25s;
}

.music-chart-link:hover .music-chart-thumb img {
    filter: grayscale(0%);
}

.music-chart-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #333;
}

.music-chart-body {
    min-width: 0;
    flex: 1 1 auto;
}

.music-chart-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #eee;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-chart-link:hover .music-chart-name {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.music-chart-meta {
    display: block;
    font-size: 0.72rem;
    color: #777;
    margin-top: 0.15rem;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-chart-meter {
    display: block;
    height: 3px;
    background: #222;
    margin-top: 0.45rem;
}

.music-chart-meter-fill {
    display: block;
    height: 100%;
    background: #ff0000;
}

/* --- On tour ------------------------------------------------------------- */

.music-tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.music-tour-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    background: #111;
    border: 1px solid #222;
    transition: background 0.2s, border-color 0.2s;
}

.music-tour-tile:hover {
    background: #161616;
    border-color: #ff0000;
}

.music-tour-date {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #ff0000;
}

.music-tour-name {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
    margin-top: 0.5rem;
}

.music-tour-tile:hover .music-tour-name {
    color: #ff0000;
}

.music-tour-venue {
    display: block;
    font-size: 0.78rem;
    color: #999;
    margin-top: 0.3rem;
}

.music-tour-count {
    display: block;
    margin-top: auto;
    padding-top: 0.8rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
}

/* --- Just announced (tour tiles with the act's own picture on top) -------- */

.music-announce-img {
    display: block;
    margin: -1.2rem -1.2rem 1rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b0b0b;
}

.music-announce-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(45%);
    transition: filter 0.25s, transform 0.4s;
}

.music-announce:hover .music-announce-img img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.music-announce-with {
    display: block;
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 0.25rem;
}

.music-announce-when {
    display: block;
    color: #777;
    margin-top: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
    .music-announce:hover .music-announce-img img {
        transform: none;
    }
}

/* Visually hidden, still announced. There is no global .sr-only on this site. */
.music-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Artist grid (new arrivals + the full index) ------------------------- */

.music-artist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.music-artist-grid.is-index {
    grid-template-columns: repeat(5, 1fr);
}

.music-artist {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    aspect-ratio: 1;
}

.music-artist img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(45%) brightness(0.85);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.music-artist:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.95);
}

.music-artist-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: #2a2a2a;
}

.music-artist-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.85rem 0.9rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 30%, transparent);
}

.music-artist-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.music-artist:hover .music-artist-name {
    color: #ff0000;
}

.music-artist-meta {
    display: block;
    font-size: 0.68rem;
    color: #aaa;
    margin-top: 0.2rem;
    text-transform: capitalize;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-artist-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.7rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    border-left: 2px solid #ff0000;
    padding: 0.15rem 0.4rem;
}

/* --- Index header (count + active filters) ------------------------------- */

.music-index-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.music-count {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #777;
    margin: 0;
}

.music-count strong {
    color: #fff;
}

.music-count em {
    color: #ff0000;
    font-style: normal;
}

/* --- Genre index --------------------------------------------------------- */

.music-filter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.music-filter-input {
    flex: 1 1 auto;
    max-width: 420px;
    padding: 0.7rem 0.9rem;
    background: #0e0e0e;
    border: 1px solid #333;
    border-radius: 0;
    color: #eee;
    font-size: 0.9rem;
    font-family: inherit;
}

.music-filter-input::placeholder {
    color: #666;
}

.music-filter-input:focus {
    outline: none;
    border-color: #ff0000;
}

.music-filter-empty {
    font-size: 0.8rem;
    color: #777;
}

.music-filter-empty[hidden] {
    display: none;
}

.music-genre-index {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* --- Empty state --------------------------------------------------------- */

.music-empty {
    padding: 4rem 1rem;
    text-align: center;
    color: #888;
    border: 1px solid #222;
}

.music-empty a {
    color: #ddd;
    font-weight: 600;
    border-bottom: 1px solid #ff0000;
}

.music-empty a:hover {
    color: #ff0000;
}

/* --- Pagination ---------------------------------------------------------- */

.music-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    margin-top: 3rem;
}

.music-pagination a,
.music-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #aaa;
    border: 1px solid #333;
    transition: all 0.15s;
}

.music-pagination a:hover {
    color: #fff;
    border-color: #ff0000;
}

.music-pagination span.current {
    color: #fff;
    background: #ff0000;
    border-color: #ff0000;
}

.music-pagination span.disabled {
    color: #444;
}

.music-pagination span.ellipsis {
    border: none;
    min-width: auto;
    padding: 0 0.2rem;
    color: #555;
}

/* --- Elsewhere ----------------------------------------------------------- */

.music-elsewhere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

/* Applied when the Merch tile is hidden, so three tiles still fill the row
   instead of leaving a fourth column empty. The mobile override below wins on
   source order and keeps small screens at two columns. */
.music-elsewhere-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.music-elsewhere-tile {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
}

.music-elsewhere-tile img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
    filter: grayscale(60%) brightness(0.75);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.music-elsewhere-tile:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(0.85);
}

.music-elsewhere-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1rem 1.1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.music-elsewhere-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
}

.music-elsewhere-tile:hover .music-elsewhere-title {
    color: #ff0000;
}

.music-elsewhere-sub {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.15rem;
}

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 1024px) {
    .music-releases {
        grid-template-columns: 1fr;
    }

    .music-release-lead {
        min-height: 300px;
    }

    .music-release-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .music-artist-grid.is-index {
        grid-template-columns: repeat(4, 1fr);
    }

    .music-tour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .music-vinyl-bg {
        width: 300px;
        height: 300px;
        right: -8%;
        opacity: 0.35;
    }

    .music-chart {
        columns: 1;
    }

    .music-artist-grid,
    .music-artist-grid.is-index {
        grid-template-columns: repeat(3, 1fr);
    }

    .music-elsewhere-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .music-page {
        padding-top: 90px;
    }

    .music-vinyl-bg {
        display: none;
    }

    .music-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-stat {
        border-bottom: 1px solid #222;
    }

    .music-stat:nth-child(2n) {
        border-right: none;
    }

    .music-stat:nth-child(3),
    .music-stat:nth-child(4) {
        border-bottom: none;
    }

    .music-stat:nth-child(odd) {
        padding-left: 0;
    }

    .music-release-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-artist-grid,
    .music-artist-grid.is-index {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .music-filter-input {
        max-width: none;
    }
}

@media (max-width: 420px) {
    .music-tour-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Custom scrollbars (matches the radar and the magazine) -------------- */

html {
    scrollbar-width: thin;
    scrollbar-color: #444 #101010;
}

::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #101010;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border: 2px solid #101010;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff0000;
}

::-webkit-scrollbar-corner {
    background: #101010;
}

/* ==========================================================================
   Music hub, Sept 2026: releases, Moshradar artists, Your music, Follow and
   Hype (templates/views/bands/artists.html, partials/_release_card.html,
   _artist_card.html, _follow_button.html, _hype_button.html). Same
   furniture as the rest of the page: hairlines, uppercase labels, red only.
   ========================================================================== */

.mh-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.music-masthead--slim { padding-bottom: 1rem; }
.mh-jump { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-top: 1rem; }
.mh-jump a { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #bbb; border-bottom: 1px solid #444; padding-bottom: 2px; }
.mh-jump a:hover { color: #fff; border-color: #ff0000; }

.mh-subheading { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #aaa; margin: 2rem 0 0.75rem; }
.mh-quiet { color: #888; font-size: 0.95rem; }
.mh-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.5rem 0 1.25rem; }
.mh-chips .music-chip { cursor: pointer; font: inherit; }

/* Buttons */
.mh-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.75rem; border: 1px solid #444; color: #eee; background: transparent; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; cursor: pointer; }
.mh-btn:hover { border-color: #fff; }
.mh-btn--primary { background: #ff0000; border-color: #ff0000; color: #fff; }
.mh-btn--primary:hover { background: #d40000; }

.mh-follow, .mh-hype { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.7rem; border: 1px solid #555; background: transparent; color: #ddd; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.mh-follow:hover, .mh-hype:hover { border-color: #fff; color: #fff; }
.mh-follow.is-on { border-color: #ff0000; color: #fff; }
.mh-hype.is-on { border-color: #ff0000; color: #ff4d4d; }
.mh-follow-form, .mh-hype-form { display: inline; margin: 0; }
.mh-consent { margin-top: 0.5rem; font-size: 0.85rem; color: #ccc; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.mh-tick { color: #ff0000; margin-left: 0.3rem; font-size: 0.85em; }

/* Release cards */
.mh-release-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem 1.25rem; }
.mh-release-grid--row { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.mh-lead-flag { position: absolute; top: -0.75rem; left: 0; z-index: 2; }
.mh-release { display: flex; flex-direction: column; gap: 0.6rem; }
.mh-release[hidden] { display: none; }
.mh-release-cover { display: block; aspect-ratio: 1 / 1; background: #111; overflow: hidden; }
.mh-release-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.mh-release-cover:hover img { transform: scale(1.03); }
.mh-release-body { display: flex; flex-direction: column; gap: 0.25rem; }
.mh-release-meta { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }
.mh-release-title { font-weight: 800; font-size: 1.05rem; line-height: 1.2; color: #fff; }
.mh-release-artist { color: #ddd; font-size: 0.9rem; }
.mh-release-artist:hover { color: #fff; text-decoration: underline; }
.mh-release-tour { color: #ff4d4d; font-size: 0.8rem; font-weight: 700; }
.mh-release-tour:hover { color: #fff; }
.mh-release-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.35rem; }

/* Coming soon */
.mh-coming { list-style: none; margin: 0; padding: 0; border-top: 1px solid #333; }
.mh-coming-item { display: grid; grid-template-columns: 4.5rem 1fr auto; gap: 1rem; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid #222; }
.mh-coming-date { font-weight: 900; font-size: 1rem; color: #ff0000; text-transform: uppercase; }
.mh-coming-body a { color: #fff; font-weight: 700; }
.mh-coming-tour { margin-left: 0.5rem; font-size: 0.75rem; color: #999; text-transform: uppercase; letter-spacing: 0.08em; }

/* Feeds: Latest from the bands, Your music */
.mh-feed { list-style: none; margin: 0; padding: 0; border-top: 1px solid #333; }
.mh-feed-item { display: grid; grid-template-columns: 1.5rem 1fr auto; gap: 0.75rem; align-items: baseline; padding: 0.65rem 0; border-bottom: 1px solid #222; color: #ccc; }
.mh-feed-item i { color: #ff0000; }
.mh-feed-item a { color: #fff; font-weight: 700; }
.mh-feed-when { font-size: 0.7rem; color: #777; text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.mh-yours { border: 1px solid #333; padding: 1.25rem 1.25rem 0.5rem; margin: 2rem 0; }

/* Artist cards */
.mh-act-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; }
.mh-act-grid--row { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.mh-act { display: flex; flex-direction: column; gap: 0.5rem; }
.mh-act-link { display: flex; flex-direction: column; gap: 0.35rem; color: #eee; }
.mh-act-link img, .mh-act-empty { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #151515; display: flex; align-items: center; justify-content: center; color: #444; font-size: 2rem; }
.mh-act-name { font-weight: 800; line-height: 1.2; }
.mh-act-meta { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.08em; }

.mh-cta { border-top: 1px solid #333; margin-top: 1.5rem; padding-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; align-items: center; color: #bbb; }
.mh-cta p { flex: 1 1 320px; margin: 0; }
.mh-cta h2 { width: 100%; margin: 0; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }

@media (max-width: 700px) {
    .mh-release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 0.75rem; }
    .mh-coming-item { grid-template-columns: 3.5rem 1fr; }
    .mh-coming-item .mh-follow-form, .mh-coming-item > .mh-follow { grid-column: 2; justify-self: start; }
    .mh-feed-item { grid-template-columns: 1.25rem 1fr; }
    .mh-feed-when { grid-column: 2; }
    .mh-act-grid, .mh-act-grid--row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
