/* HRN DJ Profile public page — poster style, logo palette
   Red #CE3A32 · Gold #E9B44C · Deep Gold #BA903A · Green #2F7A44
   Forest #154126 · Deep #0d2b18 · Cream #F2EBD9 · Ink #121a14 */

.hrn-dj-page {
    position: relative;
    overflow: hidden;
    background: #121a14;
    color: #F2EBD9;
    padding-bottom: 140px;
}

/* Bottom diagonal accents — gold slash right, green wedge left, red keyline */
.hrn-dj-page::before {
    content: "";
    position: absolute;
    bottom: -50px; right: -70px;
    width: 60%; height: 220px;
    background: #E9B44C;
    clip-path: polygon(0 100%, 100% 18%, 100% 100%);
    pointer-events: none;
}
.hrn-dj-page::after {
    content: "";
    position: absolute;
    bottom: -50px; left: -90px;
    width: 52%; height: 190px;
    background: #154126;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    pointer-events: none;
}

/* ---------- HERO ---------- */
.hrn-dj-hero {
    position: relative;
    padding: 56px 0 30px;
    overflow: hidden;
}
.hrn-dj-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    z-index: 0;
}
/* Red slash behind the hero's top-right corner */
.hrn-dj-hero::before {
    content: "";
    position: absolute;
    top: -60px; right: -80px;
    width: 55%; height: 75%;
    background: #CE3A32;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 65%);
    opacity: 0.92;
    z-index: 1;
}
.hrn-dj-hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
    gap: 28px;
}
.hrn-dj-kicker {
    margin: 0;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E9B44C;
}
.hrn-dj-name {
    margin: 14px 0 10px;
    font-size: clamp(52px, 8vw, 88px);
    line-height: 0.95;
    color: #F2EBD9;
    font-weight: 700;
}
.hrn-dj-name-accent { color: #CE3A32; }
.hrn-dj-tagline {
    margin: 0;
    color: #E9B44C;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Full-bleed photo on an offset angled panel */
.hrn-dj-hero-media {
    position: relative;
    justify-self: end;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 0.85;
}
.hrn-dj-hero-panel {
    position: absolute;
    inset: 6% -5% -6% 5%;
    background: #E9B44C;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}
.hrn-dj-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
    background: #0d2b18;
    border: 0;
    border-radius: 0;
    filter: grayscale(12%) contrast(1.05);
}

/* ---------- SECTIONS ---------- */
.hrn-dj-section {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    padding: 34px 28px 0;
}
.hrn-dj-section h2 {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 700;
    color: #2F9E55;
    border: 0;
    padding: 0 0 10px;
    position: relative;
}
.hrn-dj-section h2::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 56px; height: 4px;
    background: #CE3A32;
}
.hrn-dj-bio {
    max-width: 620px;
    line-height: 1.8;
    font-size: 15px;
    background: rgba(13, 43, 24, 0.72);
    padding: 16px 20px;
    border-left: 4px solid #E9B44C;
}
.hrn-dj-bio p { margin: 0 0 10px; }
.hrn-dj-bio p:last-child { margin: 0; }

/* Schedule chips */
.hrn-dj-slots { display: flex; flex-wrap: wrap; gap: 8px; }
.hrn-dj-slot {
    font-size: 13px;
    padding: 7px 15px;
    background: #0d2b18;
    border: 1px solid #2F9E55;
    color: #F2EBD9;
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

/* Discography */
.hrn-dj-disc {
    margin: 0; padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 6px 30px;
    font-size: 15px;
}
.hrn-dj-disc li { color: #F2EBD9; }
.hrn-dj-disc li::first-line { color: inherit; }

/* Releases — horizontal art + text cards */
.hrn-dj-releases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.hrn-dj-release {
    display: flex;
    align-items: stretch;
    background: rgba(13, 43, 24, 0.9);
    text-decoration: none;
    color: #F2EBD9;
    overflow: hidden;
    transition: transform .15s ease;
}
a.hrn-dj-release:hover { transform: translateY(-3px); }
.hrn-dj-release-art {
    width: 42%;
    aspect-ratio: 1;
    flex-shrink: 0;
    background-color: #154126;
    background-size: cover;
    background-position: center;
}
.hrn-dj-release-title {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #2F9E55;
    align-self: center;
}

/* ---------- FOOTER ---------- */
.hrn-dj-footer {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 44px auto 0;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.hrn-dj-social { color: #E9B44C; display: inline-flex; }
.hrn-dj-social:hover { color: #CE3A32; }
.hrn-dj-listen {
    color: #F2EBD9;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-left: 1px solid rgba(233, 180, 76, 0.5);
    padding-left: 20px;
}
.hrn-dj-listen:hover { color: #E9B44C; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
    .hrn-dj-hero-grid { grid-template-columns: 1fr; }
    .hrn-dj-hero-media { justify-self: center; max-width: 340px; margin-top: 8px; }
    .hrn-dj-hero::before { width: 90%; height: 40%; opacity: 0.85; }
    .hrn-dj-name { font-size: clamp(44px, 12vw, 64px); }
    .hrn-dj-page::before { width: 90%; }
    .hrn-dj-page::after { width: 80%; }
    .hrn-dj-bio { max-width: none; }
}
