﻿main {
  padding-top: 10px;
  gap: 40px;
}

.music-label-section .text-header {
    text-align: center;
}

.hero-title p {
    margin: 28px auto 0;
    max-width: 820px;
    font-size: 20px;
    line-height: 1.6;
    color: #222;
    text-align: center;
}


/* SECTION */
.event-section {
    background: #fafafa;
    padding: 80px 0;
}

/* CONTENT WRAPPER */
.event-box {
    max-width: 1020px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
}

/* ===== LEFT MENU ===== */
.event-menu {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.menu-item {
    position: relative;
    padding-left: 36px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    color: #777;
    font-weight: 500;
}

.menu-item:hover {
    color: #000;
}

.menu-item.active {
    color: #000;
    font-weight: 600;
    background: linear-gradient(to right, #ffe600, transparent);
    padding: 10px 10px 10px 36px;
    border-radius: 20px;
}

.menu-item .dot {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
}

.menu-item .dot::after {
    content: "";
    position: absolute;
    inset: 4px;
    background: #ffe600;
    border-radius: 50%;
}

/* ===== RIGHT GALLERY : MASONRY ===== */
.event-gallery.masonry {
    column-count: 3;
    column-gap: 20px;
}

/* item */
.event-gallery .gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;    
    overflow: hidden;
    display: block;
}

/* image */
.event-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}