[aria-labelledby="reels-title"] .music-container {
    max-width: 1200px;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.reel-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .reels-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .reels-grid { gap: 0.75rem; }
}
