/* ── 행사 안내 본문 스타일 (레이아웃은 sub-content 유지) ── */
.event-about-section + .event-about-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240, 208, 217, 0.85);
}

.event-about-section .event-about-section-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.85rem;
    padding: 0;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.event-about-flower {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    flex-shrink: 0;
    transform: translateY(-0.12rem);
}

.event-about-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-about-list > li {
    position: relative;
    padding-left: 0.95rem;
    line-height: 1.75;
    font-size: 0.95rem;
    color: var(--text);
}

.event-about-list > li + li {
    margin-top: 0.45rem;
}

.event-about-list > li::before {
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--text-muted);
    font-weight: 700;
    line-height: 1.75;
}

.event-about-list strong {
    font-weight: 700;
    margin-right: 0.35rem;
}

.event-about-list a {
    color: var(--primary);
    text-decoration: none;
}

.event-about-list a:hover {
    text-decoration: underline;
}

.event-about-note {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .event-about-section + .event-about-section {
        padding-top: 1.15rem;
    }

    .event-about-section-title {
        font-size: 0.95rem;
    }

    .event-about-list > li {
        font-size: 0.88rem;
    }
}
