/* ---------- Desktop (default) ---------- */
.music-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 58px;
    margin: 0 160px;
    padding: 80px 0;
}

.music-hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.music-hero-header p {
    max-width: 1355px;
    width: 100%;
    text-align: center;
    font-family: var(--font-henry);
    font-size: 24px;
    font-weight: 300;
}

/* ---------- Tablet (≤1024px) ---------- */
@media (max-width: 1024px) {
    .music-wrapper {
        gap: 38px;
        margin: 0 60px;
        padding: 60px 0;
    }

    .music-hero-header h1 {
        font-size: 38px;
        text-align: center;
    }

    .music-hero-header p {
        font-size: 22px;
        max-width: 90%;
    }
}

/* ---------- Mobile (≤768px) ---------- */
@media (max-width: 768px) {
    .music-wrapper {
        gap: 28px;
        margin: 0 20px;
        padding: 40px 0;
    }

    .music-hero-header h1 {
        font-size: 28px;
        text-align: center;
    }

    .music-hero-header p {
        font-size: 18px;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 10px;
        text-align: center;
    }
}
