/**

 * Bandcamp Embed Block Styles
 * Extracted from inline styles for better maintainability
 */

/* Base player container */
.bc-player {
    border: 0;
    display: block;
    margin: 0 auto;
    max-width: 700px;
}

/* Slim layout - always 42px height */
.bc-layout-slim {
    height: 42px !important;
    width: 100%;
}

/* Artwork-only layout - square aspect ratio */
.bc-layout-artwork {
    height: auto;
    aspect-ratio: 1/1 !important;
    width: 100%;
}

/* Standard layout - variable heights based on artwork and tracklist */
.bc-layout-standard {
    width: 100%;
}

/* Standard layout with auto-width (370-700px responsive) */
.bc-layout-standard.bc-auto-width {
    min-width: 370px;
    max-width: 700px;
}

/* Standard layout with fixed width */
.bc-layout-standard:not(.bc-auto-width) {
    width: 700px;
    max-width: 100%;
}

/* Height variations for standard layout */
/* No artwork, no tracklist */
.bc-layout-standard.bc-artwork-none:not(.bc-tracklist) {
    height: 120px;
}

/* No artwork, with tracklist */
.bc-layout-standard.bc-artwork-none.bc-tracklist {
    height: 472px;
}

/* Small artwork, no tracklist */
.bc-layout-standard.bc-artwork-small:not(.bc-tracklist) {
    height: 120px;
}

/* Small artwork, with tracklist */
.bc-layout-standard.bc-artwork-small.bc-tracklist {
    height: 588px;
}

/* Big artwork, no tracklist */
.bc-layout-standard.bc-artwork-big:not(.bc-tracklist) {
    height: 820px;
}

/* Big artwork, with tracklist */
.bc-layout-standard.bc-artwork-big.bc-tracklist {
    height: 938px;
}

