/* =========================
   RELEASE GRID
========================= */

.releases-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(260px, 1fr));

    gap: 40px;

    margin-top: 40px;

}

/* =========================
   RELEASE CARD
========================= */

.release-card {

    text-decoration: none;

    color: #eeeeee;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

}

.release-card:hover {

    opacity: 0.95;

    transform: translateY(-2px);

}

.release-artwork {

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    display: block;

    border: 1px solid #333;

    background: #111;

}

.release-meta {

    margin-top: 14px;

}

.catalog-number {

    font-size: 0.8rem;

    color: #888;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 8px;

}

.release-title {

    font-size: 1.1rem;

    margin: 0 0 5px;

    color: #fff;

    line-height: 1.4;

}

.release-artist {

    margin: 0;

    color: #aaa;

    font-size: 0.95rem;

}

/* =========================
   SINGLE RELEASE PAGE
========================= */

.release-single {

    display: grid;

    grid-template-columns: 340px 1fr;

    gap: 50px;

    margin-top: 40px;

    align-items: start;

}

.release-sidebar {

    display: flex;

    flex-direction: column;

}

.release-single img {

    width: 100%;

    display: block;

    border: 1px solid #333;

    background: #111;

}

.release-info h1 {

    margin-top: 0;

    margin-bottom: 10px;

    line-height: 1.2;

	font-size: 2.1rem;

}

.release-info h2 {

    margin-top: 0;

    margin-bottom: 20px;

    color: #aaa;

    font-size: 1.2rem;

    font-weight: normal;

}

.release-info p {

    color: #ccc;

    line-height: 1.7;

}

.release-bio,
.release-blurb {

    margin-top: 20px;

    color: #ccc;

    line-height: 1.8;

}

.release-blurb-header,
.artist-bio-header {

    margin-top: 30px;

    margin-bottom: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    color: #888;

}

/* =========================
   STREAMING LINKS
========================= */

.streaming-links {

    margin-top: 30px;

}

.streaming-links h3 {

    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    color: #888;

}

.streaming-links a {

    display: block;

    margin-bottom: 10px;

    padding: 12px 18px;

    border: 1px solid #333;

    background: #111;

    color: #fff;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;

}

.streaming-links a:hover {

    background: #1a1a1a;

    border-color: #555;

}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 768px) {

    .releases-grid {

        gap: 30px;

    }

    .release-single {

        grid-template-columns: 1fr;

        gap: 35px;

    }

}