.dj-page {
    margin: 0;
    min-width: 320px;
    color: #fff;
    background:
        radial-gradient(
            circle at top right,
            rgba(12, 124, 255, .12),
            transparent 30%
        ),
        #03101f;
}

.dj-hero {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 90px 22px 55px;
    text-align: center;
    background:
        linear-gradient(
            90deg,
            rgba(2, 11, 22, .9),
            rgba(2, 11, 22, .54),
            rgba(2, 11, 22, .88)
        ),
        url('/assets/images/page-header.png')
        center / cover no-repeat;
    border-bottom: 1px solid #1f4f7d;
}

.dj-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle,
            rgba(12, 124, 255, .1),
            transparent 38%
        ),
        linear-gradient(
            rgba(3, 16, 31, .05),
            rgba(3, 16, 31, .76)
        );
}

.dj-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.dj-eyebrow {
    color: #27a7ff;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.dj-hero h1 {
    margin: 12px 0;
    font-size: clamp(3.4rem, 9vw, 6.5rem);
    line-height: .92;
    letter-spacing: -.055em;
}

.dj-hero p,
.dj-page-heading p {
    color: #b7cee4;
    line-height: 1.7;
}

.dj-shell {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
    padding: 55px 0 90px;
}

.dj-page-heading {
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.dj-page-heading h2 {
    margin: 9px 0 13px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -.04em;
}

.dj-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dj-card {
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(8, 29, 53, .98),
            rgba(4, 18, 35, .98)
        );
    border: 1px solid #1f4f7d;
    border-radius: 14px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .34);
    transition:
        transform .2s ease,
        border-color .2s ease;
}

.dj-card:hover {
    transform: translateY(-4px);
    border-color: #159cff;
}

.dj-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #075ee9, #07182d);
}

.dj-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-card-status {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    color: #fff;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #075ee9, #159cff);
    border: 1px solid #43baff;
    border-radius: 999px;
}

.dj-card-copy {
    padding: 22px;
}

.dj-card-label {
    color: #27a7ff;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.dj-card-copy h2 {
    margin: 7px 0 10px;
    font-size: 1.65rem;
}

.dj-card-copy p {
    min-height: 76px;
    margin: 0;
    color: #a9c2d9;
    font-size: .88rem;
    line-height: 1.65;
}

.dj-card-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.dj-card-socials a {
    padding: 7px 9px;
    color: #dcecff;
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
    background: #0a294a;
    border: 1px solid #2e638f;
    border-radius: 7px;
}

.dj-live-button {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 14px;
    color: #fff;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, #075ee9, #159cff);
    border-radius: 7px;
}

.dj-message {
    padding: 35px;
    color: #b7cee4;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(8, 29, 53, .98),
            rgba(4, 18, 35, .98)
        );
    border: 1px solid #1f4f7d;
    border-radius: 14px;
}

.dj-message h2 {
    margin-top: 0;
    color: #fff;
}

.dj-message-error {
    color: #ffdfe3;
    border-color: #b92e42;
}

@media (max-width: 900px) {
    .dj-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .dj-hero {
        min-height: 300px;
        padding-top: 70px;
    }

    .dj-shell {
        width: calc(100% - 22px);
        padding: 38px 0 65px;
    }

    .dj-grid {
        grid-template-columns: 1fr;
    }

    .dj-card-copy p {
        min-height: 0;
    }
}
