/* ── 서클 참가 안내 ── */
.sub-content .page-title + .circle-guide-booths {
    margin-top: -0.85rem;
}

.circle-guide-booths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

.circle-guide-booth {
    text-align: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.circle-guide-booth-diagram {
    --booth-table-w: 10rem;
    --booth-table-h: 3.25rem;
    --booth-chair: 1.45rem;
    position: relative;
    height: 11rem;
    margin: 0 auto 1rem;
    max-width: 100%;
}

.circle-booth-table {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    transform: translateX(-50%);
    width: var(--booth-table-w);
    height: var(--booth-table-h);
    border: 2px solid rgba(232, 83, 79, 0.45);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.circle-booth-table--1sp::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 138, 128, 0.32);
}

.circle-booth-table--2sp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 138, 128, 0.32);
}

.circle-booth-chair {
    position: absolute;
    bottom: 0;
    width: var(--booth-chair);
    height: var(--booth-chair);
    border: 2px solid rgba(232, 83, 79, 0.45);
    border-radius: 3px;
    background: #fff;
}

.circle-booth-chair--1,
.circle-booth-chair--2a {
    left: calc(50% - var(--booth-table-w) / 4 - var(--booth-chair) / 2);
}

.circle-booth-chair--2b {
    left: calc(50% + var(--booth-table-w) / 4 - var(--booth-chair) / 2);
}

.circle-booth-dim {
    position: absolute;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.circle-booth-dim--w {
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
}

.circle-booth-dim--d {
    left: calc(50% + var(--booth-table-w) / 2 + 0.45rem);
    bottom: 3.5rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.circle-guide-booth-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
}

.circle-guide-price-icon {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
    flex-shrink: 0;
    transform: translateY(-0.05rem);
}

.circle-guide-booth-desc {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text);
}

.circle-guide-booth-note-wrap {
    margin: 2.75rem 0 2rem;
    text-align: center;
}

.circle-guide-booth-note {
    display: inline-block;
    max-width: 22rem;
    margin: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 243, 238, 0.55);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
    text-align: center;
}

.circle-guide-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240, 208, 217, 0.85);
}

.circle-guide-block + .circle-guide-block {
    margin-top: 1.25rem;
}

.circle-guide-block-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 0.55rem;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.circle-guide-inline-note {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-muted);
}

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

.circle-guide-block-body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text);
}

.circle-guide-block-body p {
    margin: 0;
}

.circle-guide-block-body p + p {
    margin-top: 0.25rem;
}

.circle-guide-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.circle-guide-list > li {
    position: relative;
    padding-left: 0.95rem;
    line-height: 1.75;
    font-size: 0.92rem;
}

.circle-guide-list > li + li {
    margin-top: 0.45rem;
}

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

.circle-guide-tag {
    display: block;
    margin-bottom: 0.15rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .circle-guide-booths {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .circle-guide-booth-diagram {
        --booth-table-w: 8.5rem;
        height: 9.5rem;
    }

    .circle-guide-details {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .circle-guide-booth-desc,
    .circle-guide-block-body,
    .circle-guide-list > li {
        font-size: 0.88rem;
    }
}
