.btn-sound-preview {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
   
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #b65a3f;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: rgba(182, 90, 63, 0.08);
    transition: all 0.2s ease;
}
.btn-sound-preview svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}
.btn-sound-preview.playing {
    background: #dbb960;
    color: #000;
}
