/* About page styles - global .page-container(max-width, padding) 사용 */

.page-container--about .page-content {
    padding: var(--space-5) 0;
}

.page-container--about .page-content .page-title,
.page-container--contact .page-content .page-title,
.page-container--location .page-content .page-title {
    border-bottom: none;
}

.about-hero {
    padding: 0 0 var(--space-5) 0;
}

.about-hero--no-box {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-hero .page-title {
    margin-bottom: var(--space-5);
}

.about-hero .about-lead {
    margin-bottom: var(--space-2);
    font-weight: bold;
}

.about-hero .about-meta {
    margin: var(--space-3) 0;
}

.about-hero-body {
    padding: var(--space-3) 0 0;
}

.about-hero-body p {
    margin-bottom: var(--space-4);
}

.about-hero-body p:last-child {
    margin-bottom: 0;
}

.about-section {
    padding: var(--space-5);
}

.about-standalone {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: var(--border);
}

.about-booking-wrap {
    margin: var(--space-4) 0;
}

.about-booking-btn {
    display: inline-block;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    margin-bottom: var(--space-5);
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: #000;
    border: var(--border-width) solid #000;
    border-radius: var(--btn-radius);
    box-sizing: border-box;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.about-booking-btn:hover {
    background: #fff;
    color: #000;
    border-color: var(--border-color);
}

/* about-section(2단) 위: 페이지 스냅 갤러리 + 좌우 화살표 */
.about-image-gallery {
    position: relative;
    width: 100%;
    margin: var(--space-5) 0;
}

.about-image-gallery-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.about-image-gallery-track::-webkit-scrollbar {
    display: none;
}

.about-image-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 0;
    height: 30rem;
}

.about-image-slide .about-image-card-image {
    width: 100%;
    height: 30rem;
    max-height: 30rem;
    overflow: hidden;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-slide .about-image-card-image img {
    width: 100%;
    height: auto;
    max-height: 30rem;
    object-fit: contain;
    display: block;
}

.about-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: var(--border);
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-gallery-arrow img {
    display: block;
    width: 1.25rem;
    height: auto;
    max-height: 2rem;
    filter: brightness(0) invert(1);
}

.about-gallery-prev img {
    /* 왼쪽 화살표: SVG 기본 방향 유지 */
}

.about-gallery-next img {
    transform: rotate(180deg);
}

.about-gallery-arrow:hover {
    background: #333;
    color: #fff;
    border-color: #000;
}

.about-gallery-arrow:hover img {
    filter: brightness(0) invert(1);
}

.about-gallery-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.about-gallery-arrow:disabled:hover {
    background: #000;
    color: #fff;
    border-color: var(--border-color);
}

.about-gallery-arrow:disabled:hover img {
    filter: none;
}

.about-gallery-prev {
    left: var(--space-4);
}

.about-gallery-next {
    right: var(--space-4);
}

.about-block {
}

.about-block .section-title {
    font-weight: bold;
    margin-bottom: var(--space-5);
    border-bottom: var(--border);
}

.about-block p {
    margin-bottom: var(--space-4);
}

.about-block p:last-child {
    margin-bottom: 0;
}

/* about-section이 .about-col 두 개 감싼 경우: 2단 그리드 */
.about-section:has(> .about-col) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    align-items: start;
    margin: var(--space-5) 0;
}

.about-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-col .section-title {
    font-weight: bold;
    margin-bottom: var(--space-5);
    border-bottom: var(--border);
}

.about-col p {
    margin-bottom: var(--space-4);
}

.about-col p:last-child {
    margin-bottom: 0;
}

.about-col a {
    text-decoration: underline;
}

.page-container--about .about-col .about-section,
.page-container--about .about-col .about-block {
    padding: 0;
    border: none;
    background: transparent;
    margin: 0;
}

.page-container--about .about-col .about-block {
    margin-bottom: 0;
}

/* 위치 */
.about-map-section {
}

.about-map-section .section-title {
    margin-bottom: var(--space-5);
}

.about-address-list {
    padding: 0;
}

.about-address-list dt {
    font-weight: bold;
    margin-top: var(--space-2);
    margin-bottom: var(--space-1);
}

.about-address-list dt:first-child {
    margin-top: 0;
}

.about-address-list dd {
    margin: 0 0 0 0;
    padding: 0;
}

.about-map-embed {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.about-map-links {
    display: flex;
    flex-wrap: wrap;
}

.about-map-link {
    text-decoration: underline;
}

.about-map-link:hover {
    text-decoration: underline;
}

.about-footer {
    border-top: var(--border);
}

.about-footer p {
}

.about-footer p:last-child {
}

/* 참여 주체: 나란히, 번호 없음, 검색/정렬 */
.artist-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.artist-search {
    padding: var(--pad);
    border: 1px solid #000;
    background: white;
    width: 100%;
    box-sizing: border-box;
}

.artist-sort {
    display: flex;
    gap: var(--space-2);
}

.artist-sort-btn {
    padding: var(--pad);
    border: var(--border);
    background: white;
    color: #111;
    cursor: pointer;
}

.artist-sort-btn:hover {
    background: #f0f0f0;
}

.artist-sort-btn:focus,
.artist-sort-btn:focus-visible {
    color: #111;
}

.artist-sort-btn.active {
    background: black;
    color: white;
    border-color: black;
}

.artist-sort-btn.active:focus,
.artist-sort-btn.active:focus-visible {
    color: white;
}

.artist-list-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--space-3) var(--space-5);
    padding-bottom: var(--space-3);
}

.artist-list-inline .artist-chip {
    display: inline-flex;
    align-items: baseline;
    gap: var(--gap-inline);
}

.artist-list-inline .artist-chip .artist-name-link {
    text-decoration: underline;
}

.artist-list-inline .artist-chip .artist-name-link:hover {
    text-decoration: underline;
}

/* 768px 이하 (Mobile) */
@media (max-width: 768px) {
    .about-hero--no-box {
        width: 100%;
    }

    .about-gallery-arrow {
        font-size: 1.1rem;
        min-width: var(--touch-target, 44px);
        min-height: var(--touch-target, 44px);
    }

    .about-gallery-prev {
        left: var(--space-1);
    }

    .about-gallery-next {
        right: var(--space-1);
    }

    .about-section:has(> .about-col) {
        grid-template-columns: 1fr;
    }

    .about-col {
    }

    .about-section {
    }

    .about-section .section-title {
    }

    .about-hero {
    }
}

