.album-header {
    position: relative;
    min-height: 530px;
    padding: 250px 0 0;
    text-align: center;
    color: var(--color-text);
    background: transparent;
    background-position: center;
    background-size: cover;
    overflow: visible;
    margin-left: calc(var(--side-margin) * -1);
    margin-right: calc(var(--side-margin) * -1);
    width: calc(100% + (var(--side-margin) * 2));
}

 .album-header::after {
        content: '';
        position: absolute;
        left:50%;
        translate: -50% 0;
        bottom: 0;
        max-width: var(--archive-content);
        width: 100%;
        height: 100px;
        background: var(--color-primary);
        z-index: 0;
} 
main.album{
    padding: 00px var(--side-margin) 0 ;
    min-height: 60vh;
}

  /* ===========================
   header
=========================== */
.album-header .content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: repeat(6, auto);

    grid-template-areas:
        "coverImage albumTitle"
        "coverImage albumArtist"
        "coverImage catNoLabel"
        "coverImage realeaseDate"
        "coverImage purchaseButtons"
        "coverImage empty";

    column-gap: 20px;
    row-gap: 5px;
    position: relative;
    z-index: 2;
    background: var(--color-primary);
    padding: var(--side-margin) ;
    max-width: var(--archive-content);
    width: 100%;
}

/* COVER */
.album-cover {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    grid-area: coverImage;
    margin-bottom: 0;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% 0;
}

/* TITLE */
.album-header .content h1 {
    font-size: 3.75rem;
    line-height: 1em;
    margin: 0.75em 0 0em;
    padding: 0 calc(10px + var(--side-margin)*0.5) 0;
    grid-area: albumTitle;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ARTIST */
.album-header .content h2 {
    font-size: 3rem;
    line-height: 1em;
    margin: 0em 0 0.25em;
    padding: 0 calc(10px + var(--side-margin)*0.5) 0.25em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    grid-area: albumArtist;
    text-align: left;
    text-transform: uppercase;
    opacity: 58%;
    font-weight: 700;
    letter-spacing: 2px;
}

/* CATALOGUE NUMBER */
.album-details {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    padding: 0 calc(10px + var(--side-margin)*0.5);
    margin: 0;
    grid-area: catNoLabel;
}

/* RELEASE DATE */
.album-release {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    padding: 0 calc(10px + var(--side-margin)*0.5);
    margin: 0 ;
    grid-area: realeaseDate;
}
.album-details p,
.album-release p {
    margin: 5px 0;
    text-align: left;
}

/* LABEL STYLE */
.label-span {
    color: var(--color-dull-text);
    display: inline-block;
    width: 150px;
    margin-right: 10px;
    text-align: left;
}

/* PURCHASE BUTTONS */
.album-purchase-buttons {
    width: 100%;
    grid-area: purchaseButtons;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 0 calc(10px + var(--side-margin)*0.5);
    margin-top: 40px;
}
.album-purchase-buttons h3 {
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}
.album-purchase-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.album-purchase-list a {
    display: inline-block;
    border: 1px solid #dedede;
    padding: 7px 10px;
    font-size: var(--default-font-size);
}

/* LISTEN PLATFORM LINKS */
.album-listen-links {
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}
.album-listen-label {
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    color: var(--color-dull-text);
    font-size: var(--default-font-size);
}
.album-listen-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.album-listen-list a {
    display: block;
    width: 22px;
    height: 22px;
    color: var(--color-dull-text);
}
.album-listen-list a svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
.album-listen-list a:hover {
    color: var(--color-accent);
}

.album-gallery,
.album-videos,
section.album-credits-production,
.featured-artists,
.album-credits.album-musicians,
.album-credits.album-production,
.album-press-quotes,
.album-description{
    max-width: var(--content-regular);
    width: 100%;
}

.album-gallery,
.album-videos,
section.album-credits-production,
.album-press-quotes,
.album-description{
    padding: 0 40px;
}
  /* ===========================
   Description
=========================== */
.album-description{
    width:100%;
    background: var(--color-primary);
    margin: 0 auto var(--top-margin)  auto;
    position: relative;
    z-index: 2;
} 
.album-description p,
.album-description li{
    color: var(--color-text);
    font-size: var(--default-font-size);
}
  /* ===========================
   Tracks
=========================== */


.album-player{
    width:100%;
    background: var(--color-primary);
    margin: var(--top-margin) auto;
    position: relative;
    z-index: 2;
}

/* Static track listing (display mode) — visually matches .album-player */
.album-track-listing{
    width:100%;
    background: var(--color-primary);
    margin: var(--top-margin) auto;
    position: relative;
    z-index: 2;
}
.album-track-sides{
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.album-track-side{
    margin-bottom: 5px;
}
.album-track-side:last-child{
    margin-bottom: 0;
}
.album-track-listing .track-side-title{
    width: 100%;
    margin: 0 0 5px;
    padding: 10px 20px;
    background: var(--color-secondary);
    border: 1px solid rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: var(--default-font-size);
    color: var(--color-text);
}
.album-track-titles{
    list-style: none;
    margin: 0 0 5px;
    padding: 0;
    counter-reset: album-track-number;
}
.album-track-titles .album-track{
    counter-increment: album-track-number;
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    background: var(--color-secondary);
    border: 1px solid rgba(255,255,255,0.025);
    padding: 0px 10px 0px 0;
}
.album-track-titles .album-track:last-child{
    margin-bottom: 0;
}
.album-track-titles .album-track::before{
    content: counter(album-track-number) ".";
    flex: 0 0 40px;
    opacity: 0.7;
    height: 40px;
    padding: 0 10px;
    text-align: center;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-alt-text);
    background: rgba(255,255,255,0.05);
}
.album-track-titles .album-track p{
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}
.album-track-listing .track-title{
    flex: 1 1 auto;
}
.album-track-listing .track-length{
    flex: 0 0 auto;
    opacity: 0.7;
    padding: 0 10px;
    text-align: right;
    color: var(--color-dull-text);
}
.album-track-listing .track-stream-label{
    flex: 0 0 auto;
    opacity: 0.7;
    padding-left: 10px;
    padding-right: 15px;
    font-size: var(--secondary-font-size);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dull-text);
    white-space: nowrap;
}
.album-track-listing .track-stream-links{
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}
.album-track-listing .track-stream-link{
    opacity: 0.7;
    width: 18px;
    height: 18px;
    display: block;
    color: var(--color-dull-text);
}
.album-track-listing .track-stream-link svg{
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}
.album-track-listing .track-stream-link:hover{
    opacity: 1;
    color: var(--color-accent);
}
.player-main{
    width:100%;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 10px 20px;
    background: var(--color-secondary);
    border: 1px solid rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.player-main figure{
    width: 90px;
    height: 90px;
    margin:0px;
}
.player-main figure img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.player-main button{
    width: 60px;
    height: 60px;
    display: block;
    margin-left: 30px;
}
.player-current{
    width: calc(100% - 170px);
    display: flex;
    flex-wrap: wrap;
    padding-left: 20px;

}
.player-info{
    width: 100%;
}
.player-progress{
    width: calc(100% - 120px);
    margin-top: 15px;
}
.player-progress input[type="range"] {
    width: 100%; 
}
.player-time{
    width: 120px;
    text-align: right;
    margin-top: 15px;
    color: var(--color-dull-text);
}
.player-tracklist{
    list-style: none;
    margin: 0 auto;
    padding:0;
}
.player-tracklist li{
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-secondary);
    border: 1px solid rgba(255,255,255,0.025);
    padding: 0px 10px 0px 0;
}
.track-number{
    opacity: 0.7;
    width: 40px;
    height: 40px;
    padding: 0 10px;
    text-align: center;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-alt-text);
    background: rgba(255,255,255,0.05);
}
.track-title{
    width: calc(100% - 110px);
}
.track-duration{
    opacity: 0.7;
    width: 70px;
    padding: 0 10px;
    text-align: right;
    color: var(--color-dull-text);
}

.player-play {
    color: var(--color-dull-text);
    background: rgba(255,255,255,0.05);
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 12px;
}

.player-play svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: currentColor;
}

.player-play:hover {
    color: var(--color-accent);
}

.player-play.is-playing {
    color: var(--color-alt-text);
}

.player-play-icon {
    width: 24px;
    height: 24px;
    display: none;
}

.player-play-icon--play {
    display: block;
}

.player-play.is-playing .player-play-icon--play {
    display: none;
}

.player-play.is-playing .player-play-icon--pause {
    display: block;
}
/* ===========================
   gallery
=========================== */
.album-gallery{
    width:100%;
    background: var(--color-primary);    
    margin: var(--top-margin) auto;
    position: relative;
    z-index: 2;
}

/* =========================
   Album Gallery Grid
========================= */

.album-gallery-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.5rem;
}

.album-gallery-list.album-gallery-cols-1 { grid-template-columns: minmax(0, 1fr); max-width: 1100px; margin: 0 auto; }
.album-gallery-list.album-gallery-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.album-gallery-list.album-gallery-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.album-gallery-list.album-gallery-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.album-gallery-list.album-gallery-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    .album-gallery-list.album-gallery-cols-5,
    .album-gallery-list.album-gallery-cols-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .album-gallery-list.album-gallery-cols-5,
    .album-gallery-list.album-gallery-cols-4,
    .album-gallery-list.album-gallery-cols-3,
    .album-gallery-list.album-gallery-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
    .album-gallery-list.album-gallery-cols-5,
    .album-gallery-list.album-gallery-cols-4,
    .album-gallery-list.album-gallery-cols-3,
    .album-gallery-list.album-gallery-cols-2 { grid-template-columns: 1fr; }
}

.album-gallery-item {
    margin: 0;
}

/* 4:3 thumbnail crop */
.album-gallery-item figure {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    margin: 0;
    background: var(--color-secondary);
}

.album-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Lightbox (CSS only)
========================= */

/* ===== Lightbox ===== */
.album-lightbox  {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}

.album-lightbox.is-open {
    display: flex;
}

.album-lightbox img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.album-lightbox-close {
    position: absolute;
    top: 120px;
    right: 2rem;
    color: #000;
    padding: 10px;
    font-size: 35px;
    line-height: 1em;
    width: 45px;
    text-decoration: none;
    line-height: 20px;
    border: 1px solid #dedede;
    border-radius: 50%;
    display: inline-block;
    height: 45px;
}

/* ===========================
   Videos
=========================== */
.album-videos{
    width:100%;
    background: var(--color-primary);
    margin: var(--top-margin) auto;
    position: relative;
    z-index: 2;
}

/* =========================
   Video grid
========================= */

.album-video-list {
    list-style: none;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 1.5rem;
}

.album-video-item {
    margin: 0 auto;
    min-width: 0;
    max-width: 700px;
    width: 100%;
}

.album-video-item figure {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    margin: 0;
    background: var(--color-secondary);
}

.album-video-item figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-video-item h3 {
    width: 100%;
    margin: 0;
    padding: 10px;
    text-align: center;
    font-size: var(--default-font-size);
    background: var(--color-secondary);
    color: var(--color-text);
}

/* =========================
   Lightbox 
========================= */

.album-lightbox-video {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.9);
    display: none;
    z-index: 99999999;
    align-items: center;
    justify-content: center;
    padding: 150px 1rem 1.5rem;
}

.album-lightbox-video.is-open {
    display: flex;
}

.album-lightbox-video-close {
    position: absolute;
    top: 120px;
    right: 2rem;
    color: #000;
    padding: 10px;
    font-size: 35px;
    line-height: 1em;
    width: 45px;
    text-decoration: none;
    line-height: 20px;
    border: 1px solid #dedede;
    border-radius: 50%;
    display: inline-block;
    height: 45px;
}

.album-lightbox-media {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.album-video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.album-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

  /* ===========================
   credits
=========================== */

section.album-credits-production{
    width:100%;
    background: var(--color-primary);
    margin: var(--top-margin) auto;
    position: relative;
    z-index: 2;
}

.album-credits-inner {
    width: 100%;
    display: grid;
    gap: calc(var(--side-margin)/4);
    margin: 0 auto;
}

.album-credits-columns{
    display: grid;
    width: 100%;
    gap: calc(var(--side-margin)/2);
}

/* Two columns only when both exist */
.album-credits-columns.has-two{
    grid-template-columns: 1fr 1fr;
}

/* One column when only one exists */
.album-credits-columns.has-one{
    grid-template-columns: 1fr;
}
.credit-hyphen{
    margin: 0 15px;
}
.temp-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.band-members{
    width: 100%;
}
.band-members h3{
    width: 100%;
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 10px;
}
ul.band-credit-list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
ul.band-credit-list li{
    padding: 10px 30px;
    background: var(--color-secondary);
}
ul.band-credit-list li p{
    width: 100%;
    text-align: center;
}
ul.band-credit-list li p strong.band-artist-name{
    width: 100%;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}
ul.band-credit-list li p span.band-credit-hyphen{
    display: none;
}
ul.band-credit-list li p span.band-artist-instruments{
    width: 100%;
    display: block;
    font-size: 0.9rem;
    line-height: 1.1em;
}

.featured-artists{
    width: 100%;
}
.featured-artists h3{
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}
.featured-artists h3 span{
    position: relative;
    display: inline-block;
    padding: 0 15px;
    z-index: 2;
    background-color: var(--color-primary);
}
.featured-artists h3:after{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
    opacity: 0.3;
    border-top:1px solid var(--color-alt-text);
}

ul.featured-credit-list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
ul.featured-credit-list li{
    padding: 10px 30px;
    background: var(--color-tertiary);
}
ul.featured-credit-list li p{
    width: 100%;
    text-align: center;
    margin: 0;
    line-height: 20px;
}
ul.featured-credit-list li p strong.featured-artist-name{
    width: 100%;
    font-size: 1.1rem;
    display: block;
}
ul.featured-credit-list li p .featured-artist-tracks{
    width: 100%;
    display: block;
    font-size: 0.9rem;
    color: var(--color-alt-text);
}
ul.featured-credit-list li p .featured-artist-instruments{
    width: 100%;
    display: block;
    font-size: 0.9rem;
    line-height: 1.1em;
}
.credits-divider{
    display: block;
    width: 100%;
    height: 20px;
}
.album-credits.album-musicians h3{
    width: 100%;
    padding-left: 30px;
    margin-bottom: 10px;
}
.album-credits.album-musicians ul.album-credit-list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.album-credits.album-musicians ul.album-credit-list li{
    width: 100%;
    padding: 10px 30px;
    background: var(--color-secondary);
}
.album-credits.album-musicians ul.album-credit-list p{
    width: 100%;
    margin: 0;
    font-size: var(--secondary-font-size);
}
.album-credits.album-musicians ul.album-credit-list strong.artist-name{
    display: inline-block;
}
.album-credits.album-musicians ul.album-credit-list span.artist-instruments{
    display: inline-block;
}

.album-credits.album-production h3{
    width: 100%;
    padding-left: 30px;
    margin-bottom: 10px;
}
.album-credits.album-production ul.album-credit-list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.album-credits.album-production ul.album-credit-list li{
    width: 100%;
    padding: 10px 30px;
    background:var(--color-tertiary);
}
.album-credits.album-production ul.album-credit-list li p{
    width: 100%;
    margin: 0;
    font-size: var(--secondary-font-size);
    color: var(--color-dull-text);
}
.album-credits.album-production ul.album-credit-list strong{
    display: inline-block;
}
.album-credits.album-production ul.album-credit-list span{
    display: inline-block;
}

.album-recording-info{
    width: 100%;
}
.album-recording-info h3{
    width: 100%;
    padding-left: 30px;
    margin-bottom: 10px;
}
.recording-entry{
    background:var(--color-tertiary);
    padding: 15px 30px 8px;
    margin-bottom: 5px;
}
.recording-entry p {
    width: 100%;
    margin: 0 0 0px;
    display: block;
    font-size: var(--secondary-font-size);
    color: var(--color-dull-text);
}

.album-thanks{
    width: 100%;
    background:var(--color-tertiary);
    padding: 15px 30px;
}
.album-thanks h3{
    width: 100%;
    margin: 0px;
}
.album-thanks p{
    width: 100%;
    margin: 0;
    font-size: var(--secondary-font-size);
    color: var(--color-dull-text);
}

  /* ===========================
   press
=========================== */

.album-press-quotes{
    width:100%;
    background: var(--color-primary);
    margin: var(--top-margin) auto;
    position: relative;
    z-index: 2;
}
.press-inner{
    margin: 0 auto;
}
.album-press-quotes h2{
    width: 100%;
}
ul.press-quote-list{
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.press-quote-list li.press-quote{
    width: 100%;
    margin-bottom: 5px;
    padding: 15px 65px 15px 30px;
    background: var(--color-secondary);
    position: relative;
}
ul.press-quote-list li.press-quote::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;

    width: 40px;
    height: 45px;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    opacity: 0.2;
    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 80.01 51.64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='white'%3E%3Cpath d='m4.89.01c-.57.13-2.1.57-3.34 2-1.6 1.84-1.57 3.98-1.55 4.48 0 1.62 1.31 2.93 2.93 2.93s2.94-1.31 2.94-2.93-1.28-2.9-2.87-2.93c.02-.16.05-.31.08-.47.38-1.76 1.41-2.74 1.81-3.08z'/%3E%3Cpath d='m12.69.01c-.57.13-2.1.57-3.34 2-1.6 1.84-1.57 3.98-1.55 4.48 0 1.62 1.31 2.93 2.93 2.93s2.94-1.31 2.94-2.93-1.28-2.9-2.87-2.93c.02-.16.05-.31.08-.47.38-1.76 1.41-2.74 1.81-3.08z'/%3E%3Cpath d='m77.06 42.22c-1.62 0-2.94 1.31-2.94 2.93s1.28 2.9 2.87 2.93c-.02.16-.05.31-.08.47-.38 1.76-1.41 2.74-1.8 3.07.57-.13 2.1-.57 3.34-2 1.6-1.84 1.57-3.98 1.55-4.48 0-1.6-1.32-2.92-2.94-2.92z'/%3E%3Cpath d='m67.31 51.63c.57-.13 2.1-.57 3.34-2 1.6-1.84 1.57-3.98 1.55-4.48 0-1.62-1.31-2.93-2.93-2.93s-2.94 1.31-2.94 2.93 1.28 2.9 2.87 2.93c-.02.16-.05.31-.08.47-.38 1.76-1.41 2.74-1.81 3.08z'/%3E%3Cpath d='m61.41 46.12h-43.85c-5.35 0-9.7-4.35-9.7-9.7v-20.17c0-.57-.46-1.03-1.03-1.03s-1.03.46-1.03 1.03v20.17c0 6.48 5.27 11.75 11.75 11.75h43.85c.57 0 1.03-.46 1.03-1.03s-.45-1.02-1.02-1.02z'/%3E%3Cpath d='m72.14 15.22v19.96c0 .57.46 1.03 1.03 1.03s1.03-.46 1.03-1.03v-19.96c0-6.48-5.27-11.75-11.75-11.75h-43.86c-.57 0-1.03.46-1.03 1.03s.46 1.03 1.03 1.03h43.85c5.35-.01 9.7 4.34 9.7 9.69z'/%3E%3C/g%3E%3C/svg%3E");
}
ul.press-quote-list li.press-quote blockquote{
    width: 100%;
    margin: 0;

}
ul.press-quote-list li.press-quote h3.press-quote-title{
    width: 100%;
    margin: 0;

}
ul.press-quote-list li.press-quote p.press-quote-text{
    width: 100%;

}
ul.press-quote-list li.press-quote cite.press-quote-source{
    width: 100%;
    color: var(--color-dull-text);
    font-size: 0.8em;
    text-align: right;
    display: block;
}

  /* ===========================
   last section
=========================== */
main.album section:last-of-type {
    /*padding-bottom: calc(var(--side-margin)*1.5);*/
}
main.album section:firt-of-type {
    margin: calc(var(--top-margin)*0.75);
}

  /* ===========================
   Responsive
=========================== */
@media screen and (max-width:1450px){
    /* TITLE */
    .album-header .content h1 {
        font-size: 3rem;
    }
}
@media screen and (max-width:1300px){
    /* TITLE */
    .album-header .content h1 {
        font-size: 2.5rem;
        padding: 0 0 0 calc(10px + var(--side-margin)*0.25);
    }

    /* ARTIST */
    .album-header .content h2 {
        font-size: 1.75rem;
        padding: 0 0 0em calc(10px + var(--side-margin)*0.25);
    }

    /* CATALOGUE NUMBER */
    .album-details {
        padding: 0 0 0 calc(10px + var(--side-margin)*0.25);
    }

    /* RELEASE DATE */
    .album-release {
        padding: 0 0 0 calc(10px + var(--side-margin)*0.25);
    }
    .album-purchase-buttons  {
        padding: 0 0 0 calc(10px + var(--side-margin) * 0.25);
    }
 
    .album-release p,
    .album-details p{
        width: 100%;
    }
    .album-release,
    .album-details{
        width: 100%;
        flex-wrap: wrap;
    }
    .album-header .content {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 40% 60%;
        grid-template-rows: repeat(6, auto);

        column-gap: calc(var(--side-margin)*0.5);
        row-gap: 5px;
    }
}

@media screen and (max-width: 1200px) {
    .album-header .content h1 {
        font-size: 2.63rem;
    }
    /* .album-header .content {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 40% 60%;
        grid-template-rows: repeat(6, auto);

        grid-template-areas:
            "coverImage albumTitle"
            "coverImage albumArtist"
            "coverImage catNoLabel"
            "coverImage realeaseDate"
            "coverImage empty"
            "purchaseButtons purchaseButtons";

        column-gap: calc(var(--side-margin)*0.5);
        row-gap: 5px;
    }   */
}
@media screen and (max-width: 1024px) {
    .album-credits-columns.has-two{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 950px) {
    ul.band-credit-list,
    ul.featured-credit-list{
        display: flex;
        flex-wrap: wrap;
        gap:10px;
        justify-content: center;
    }
    ul.band-credit-list li,
    ul.featured-credit-list li{
        width: calc(50% - 5px);
    }
}
@media screen and (max-width: 900px) {
    .album-header {        
        padding: 100px 0 160px;
    }
    .album-header::after {
        width: 100%;
    }
     .album-header .content.content-regular {
        max-width: 450px;
    }
    .album-header .content{
        display: block;
    }

    
    /* PURCHASE BUTTONS */
    .album-purchase-buttons {
        padding: 0 ;
        justify-content: center;
        width: 100%;
    }
    .album-purchase-list {
        justify-content: center;
    }
    .album-listen-links {
        justify-content: center;
    }
   /* .album-header .content{
        grid-template-rows: repeat(6, auto);

        grid-template-areas:
            "coverImage coverImage" 
            "albumTitle albumTitle"
            "albumArtist albumArtist"
            "catNoLabel catNoLabel"
            "realeaseDate realeaseDate"
            "empty empty"
            "purchaseButtons purchaseButtons";
    }*/
        /* TITLE */
    .album-header .content h1 {
        font-size: 2.25rem;
        padding: 0 0 0 ;
        text-align: center;
    }

    /* ARTIST */
    .album-header .content h2 {
        font-size: 1.75rem;
        padding: 0 0 1.25em ;
        text-align: center;
    }

    /* CATALOGUE NUMBER */
    .album-details {
        padding: 0 0 0;
    }

    /* RELEASE DATE */
    .album-release {
        padding: 0 0 0 ;
    }

    /* PURCHASE BUTTONS */
    .album-purchase-list {
        padding: var(--side-margin) 0;
        justify-content: center;
    }
    .album-release p,
    .album-details p{
        width: 100%;
        text-align: center;
    }
    .label-span {
        width: auto;
    }
    /*---- Player ---*/
    .player-main figure {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    .player-main button{
        margin-left: 0;
    }
    .player-title{
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 15px;
    }
    .player-current{
        width: 100%;
    }
    .player-progress {
        width: 100%;
    }
    .player-time{
        width: 100%;
        text-align: center;
    }
    .track-duration{
        display:none;
    }
    .track-title {
        width: calc(100% - 40px);
    }
    .track-number {
        height: 70px;
    }
    .album-track-listing .track-length{
        display:none;
    }
    .album-track-titles .album-track::before{
        height: 70px;
    }
    .album-track-titles .album-track p{
        flex-wrap: wrap;
    }
    .album-track-listing .track-title{
        width: 100%;
    }
    .album-track-listing .track-stream-label{
        padding-left: 0;
    }
    .album-track-listing .track-stream-links{
        padding-left: 0;
    }
}
@media screen and (max-width: 650px) {

    .player-main{
        flex-wrap: wrap;
        justify-content: center;
    }
    .player-current {
        width: 100%;    
        padding-left: 0px;
    }
    ul.band-credit-list li,
    ul.featured-credit-list li{
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .player-progress{
        width:100%;
        margin-top: 15px;
    }
    .player-time{
        width: 100%;
        text-align: center;
    }
}