/* ---------- Eric Records – Audio Row ---------- */
.eric-audio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem auto;
    max-width: 720px;
}

.eric-audio-col {
    flex: 1 1 280px;
    /* grow, shrink, min-width */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Stack on small screens */
@media (max-width: 639px) {
    .eric-audio-row {
        gap: 1.5rem;
    }
}

/* ---------- custom player styles ---------- */
.audio-container {
    width: 100%;
    max-width: 260px;
}

.audio-player {
    background: #2d3132;
    padding: 4px 10px 4px 4px;
    /* ← Right padding added */
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-pause {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="range"] {
    flex: 1;
    cursor: pointer;
    appearance: none;
    background: #a2c6d4;
    height: 5px;
    border-radius: 5px;
}

.volume {
    max-width: 60px;
}
