﻿.banner-title {
    /*font-family: 'Cormorant Garamond', Georgia, serif;*/
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    /*font-weight: 500;*/
}

.banner-body {
    /*font-family: 'Jost', 'Helvetica Neue', sans-serif;*/
    font-size: clamp(0.78rem, 1.1vw, 0.875rem);
    /*font-weight: 300;*/
}

/* Caption slide-up animation */
.banner-caption {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

    .banner-caption.is-active {
        opacity: 1;
        transform: translateY(0);
    }

/* Dots */
.dot {
    width: 8px;
    height: 8px;
}

.dot-inactive {
    background: rgba(255, 255, 255, 0.4);
}

.dot-active {
    background: #ffffff;
    width: 22px;
}

@media (prefers-reduced-motion: reduce) {
    .banner-caption {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    [style*="transition"] {
        transition: none !important;
    }
}



.releases-section {
    /*background: #fafaf9;*/
    /*font-family: 'DM Sans', 'Helvetica Neue', sans-serif;*/
}

/* ── Title ────────────────────────────────────────────────── */
.releases-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    font-weight: 600;
    font-size: 2.5rem;
}

.releases-title-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c, #e8c96b);
    border-radius: 99px;
}

/* ── Navigation buttons ───────────────────────────────────── */
.slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

    .slider-nav-btn:not(:disabled):hover {
        background: #1a1a1a;
        border-color: #1a1a1a;
        color: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
    }




.ps-section {
    background: #f7f6f3;
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    padding: 3rem 2rem 2.5rem;
}

/* Header */
.ps-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0;
}

.ps-underline {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #b8943a, #e2c265);
    border-radius: 99px;
    margin: 0.5rem auto 0;
}

/* Wrapper */
.ps-wrapper {
    position: relative;
    margin-top: 2rem;
}

.ps-overflow {
    overflow: hidden;
    padding: 0 0.25rem;
}

/* Track — card width is fully CSS-driven via --ps-visible */
.ps-track {
    --ps-gap: 20px;
    --ps-visible: 4;
    display: flex;
    gap: var(--ps-gap);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Cards */
.ps-card {
    flex: 0 0 calc( (100% - (var(--ps-visible) - 1) * var(--ps-gap)) / var(--ps-visible) );
    min-width: 0;
}

.ps-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ps-card__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #e8e6e1;
    aspect-ratio: 1;
}

.ps-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.ps-card__link:hover .ps-card__img {
    transform: scale(1.06);
}

/* Live badge */
.ps-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 99px;
    box-shadow: 0 1px 6px rgba(0,0,0,.14);
}

.ps-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: ps-pulse 2s ease-in-out infinite;
}

@keyframes ps-pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .55;
        transform: scale(.75);
    }
}

/* Card text */
.ps-card__body {
    padding: .75rem .25rem 0;
}

.ps-card__artists {
    font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 .25rem;
}

.ps-card__name {
    /*font-family: 'Playfair Display', Georgia, serif;*/
    font-size: .95rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 .25rem;
}

.ps-card__pub {
    font-size: .7rem;
    color: #aaa;
    letter-spacing: .04em;
    margin: 0;
}

/* Nav buttons */
.ps-nav {
    position: absolute;
    top: calc(50% - 1.5rem); /* align to image center, not text below */
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid #d5d5d5;
    background: #fff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: background .2s, border-color .2s, color .2s, opacity .2s;
}

.ps-nav--prev {
    left: -20px;
}

.ps-nav--next {
    right: -20px;
}

.ps-nav:not(:disabled):hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.ps-nav:disabled {
    opacity: .25;
    cursor: default;
}

/* Dots */
.ps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.ps-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .25s, transform .25s;
}

    .ps-dot.is-active {
        background: #b8943a;
        transform: scale(1.45);
    }

/* View All */
.ps-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.25rem;
}

.ps-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 99px;
    padding: 7px 18px;
    text-decoration: none;
    transition: background .2s, color .2s;
}

    .ps-view-all:hover {
        background: #1a1a1a;
        color: #fff;
    }

/* Responsive */
@media (max-width: 1023px) {
    .ps-nav--prev {
        left: -12px;
    }

    .ps-nav--next {
        right: -12px;
    }
}

@media (max-width: 640px) {
    .ps-section {
        padding: 2.5rem 1rem 2rem;
    }

    .ps-nav--prev {
        left: -6px;
    }

    .ps-nav--next {
        right: -6px;
    }
}