/* ── Artist Marquee Widget ─────────────────────────────────────── */

/* Outer wrapper — position:relative so card pool can anchor to it */
.am-wrapper {
    position: relative;
}

/* Section — overflow:hidden for marquee clipping ONLY */
.am-section {
    overflow: hidden;
    padding: 60px 0 40px;
/*     background: linear-gradient(160deg, #3b0a2a 0%, #c0442a 50%, #e8824a 100%); */
    position: relative;
}

/* Heading */
.am-heading-wrap {
    text-align: center;
    margin-bottom: 32px;
    pointer-events: none;
}
.am-heading {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    line-height: 1;
    opacity: 0.18;
}

/* Track rows */
.am-track {
    overflow: hidden;
    white-space: nowrap;
    cursor: default;
    margin-bottom: 12px;
}
.am-track:last-child { margin-bottom: 0; }

.am-inner {
    display: inline-flex;
    align-items: center;
    will-change: transform;
}

.am-inner--ltr {
    animation: am-scroll-ltr var(--am-speed, 20s) linear infinite;
}
.am-inner--rtl {
    animation: am-scroll-rtl var(--am-speed, 25s) linear infinite;
}

/* Pause state controlled by JS */

@keyframes am-scroll-ltr {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes am-scroll-rtl {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Artist name + separator */
.am-item {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    cursor: pointer;
}
.am-artist-name {
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #000;
    transition: color 0.2s;
}
.am-sep {
    font-size: clamp(22px, 4vw, 42px);
    font-weight: 800;
    color: #000;
    padding: 0 8px;
/*     opacity: 0.6; */
    transition: color 0.2s;
}

/* White on hover */
.am-item:hover .am-artist-name{
    color: #ffffff !important;
    opacity: 1;
}

/* White when card is active — JS adds .am-item--active */
.am-item--active .am-artist-name,
.am-item--active .am-sep {
    color: #ffffff;
    opacity: 1;
}

/* ── Cards pool — below the section, not inside overflow:hidden ── */
.am-cards-pool {
    position: relative;
    width: 100%;
    height: 0;
    overflow: visible;
    pointer-events: none;
    transition: height 0.25s ease;
/* 	height: 100px !important;
    overflow: visible; */
}

.am-cards-pool.am-has-card {
    height: 220px;
}

/* Individual card */
.am-card {
    position: absolute;
    top: 16px;
    width: 280px;
    background: rgba(0,0,0,0.55);
    border-radius: 14px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
    text-decoration: none;
    display: block;
	-webkit-box-shadow: 32px 47px 60px 40px #000000ab !important;
    box-shadow: 32px 47px 60px 40px #000000ab !important;
}
.am-card.am-card--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Card image */
.am-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: #333;
}
.am-card-img--placeholder {
    background: linear-gradient(135deg, #555 0%, #222 100%);
}

/* Badge */
.am-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    color: #111;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
	border: 1px solid #F25A2F;
}

/* Card text */
.am-card-info {
    padding: 10px 14px 14px;
	position: absolute;
	bottom: 0;
}
.am-card-info {
    text-shadow: 1px 1px 2px black;
}
.am-card-artist {
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
	font-family: Sixsound-Regular, sans-serif;
    font-size: 14px;
    letter-spacing: 1.12px;
    line-height: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
.am-card-track {
    color: rgba(255,255,255,0.75);
	font-family: "GT Planar", sans-serif;
    font-size: 19px;
    line-height: 28px;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
    .am-card { width: 220px; }
    .am-heading { font-size: 48px; }
    .am-cards-pool.am-has-card { height: 180px; }
}