.lb-number {
    display: none !important;
}

.artist-brand-category-section h2 {
    /* font-size: 1.5em; */
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.artist-list-container {
    margin-bottom: 40px;
    display: flex; 
    gap: 40px;
}
.artist-list {
    width: 50%;
}
.artist-preview {
    width: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    /* border: 1px solid #ddd;  */
    /* height: 300px;  */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.artist-brand-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.artist-brand-post .post-title {
    color: #fff;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid var(--base);
    border-radius: 5px;
    font-weight: bold;
}
.artist-brand-post-item {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}

.artist-brand-post-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.artist-brand-post-item h3 {
    /* font-size: 1.2em; */
    color: #555;
}

.artist-brand-post-item h3 a {
    text-decoration: none;
    color: var(--base-3);
}

.artist-brand-post-item h3 a:hover {
    color: var(--base-3);
}
.artist-brand-post-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 0;
    text-align: center;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}

.artist-brand-post-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.artist-brand-post-item:hover img {
    transform: scale(1.05); /* 이미지 확대 효과 */
}

.artist-brand-post-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 어두운 오버레이 */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.artist-brand-post-item:hover .overlay {
    opacity: 1;
}

.artist-brand-post-item .overlay h3 {
    color: var(--base-3);
    font-size: 1.2em;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.artist-brand-post-item:hover .overlay h3 {
    opacity: 1;
    transform: translateY(0);
}

/* 기본 섹션 스타일 */
.artist-brand-category-section {
    padding: 40px 60px;
}

/* 홀수 섹션 스타일 */
.artist-brand-category-section:nth-child(odd) {
    background-color: #f9f9f9;
}

/* 짝수 섹션 스타일 */
.artist-brand-category-section:nth-child(even) {
    background-color: var(--base-3)fff;
}

/* 기본 그리드 스타일 */
.artist-brand-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 기본 4열 */
    gap: 20px;
}

/* 포스트 아이템 */
.artist-brand-post-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}

.artist-brand-post-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .artist-brand-category-grid {
        grid-template-columns: repeat(3, 1fr); /* 태블릿: 3열 */
    }
}

@media (max-width: 768px) {
    .artist-brand-category-grid {
        grid-template-columns: repeat(2, 1fr); /* 모바일: 2열 */
    }
}

@media (max-width: 480px) {
    .artist-brand-category-grid,
    .artist-brand-categories-grid {
        grid-template-columns: 1fr !important; /* 작은 모바일: 1열 */
    }
    .artist-list {
        width: 100%;
    }
    .artist-preview {
        display: none;
    }
    .artist-brand-post-item {
        padding: 10px;
    }

    .artist-brand-category-section {
        padding: 20px;
    }
}

/* 이미지 반응형 */
.artist-brand-post-item img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    transition: transform 0.3s;
    object-fit: cover;
}

.artist-brand-post-item:hover img {
    transform: scale(1.05); /* 이미지 확대 효과 */
}

/* 오버레이 */
.artist-brand-post-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.artist-brand-post-item:hover .overlay {
    opacity: 1;
}

.artist-brand-post-item .overlay h3 {
    color: var(--base-3);
    /* font-size: 1.2em; */
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.artist-brand-post-item:hover .overlay h3 {
    opacity: 1;
    transform: translateY(0);
}


/* Exhibitions Category Page Template CSS  */
/* Exhibition Posts Grid */
.full-width-container {
    width: 100%;
}
.artist-brand-post .post-thumbnail {
    height: 100%;
    /* max-height: 400px; */
    aspect-ratio: 1;
}
.artist-brand-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 한 줄에 4개 */
    gap: 20px;
    padding: 0 0 10px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Exhibition Post Item */
.artist-brand-post {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
    transition: box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.artist-brand-post:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Thumbnail Image */
.artist-brand-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.artist-brand-post:hover .post-thumbnail img {
    filter: grayscale(100%) brightness(1.1);
    transform: scale(1.0);
}

/* Overlay Effect */
.artist-brand-post .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 6px;
}

.artist-brand-post:hover .overlay {
    opacity: 1;
}

/* Post Title */
.artist-brand-post .overlay h2 {
    color: var(--base-3);
    /* font-size: 1.2em; */
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.artist-brand-post:hover .overlay h2 {
    opacity: 1;
    transform: translateY(0);
}
.abo-tab-wrap { width:clamp(940px, 91.6vw, 1760px); margin: 0 auto 100px; max-width: 1440px; }
.abo-tabs { display:flex; gap:10%; margin-bottom:16px; padding: 0 50px;}
.abo-tab {
    border:1px solid #e5e7eb; background:var(--base-2); padding:8px 14px; border-radius:8px; cursor:pointer;
    font-weight:600; width: 100%; font-size: 18px;
}
.abo-tab.is-active { background:var(--base-1); color:var(--contrast); border-color:var(--contrast); }
.abo-panels { width:100%; margin-top: -61px; z-index: 1; position: relative;}
.dropbox-option.tab-input-container { padding: 5px;background: #E5E2DD; border-radius: 12px; }
.dropbox-option.tab-artist-item { padding:14px 35px; border-bottom:0px solid #f2f2f2; cursor:pointer; font-size: clamp(16px, 14.3px + 0.3vw, 18px); }
.tab-artist-list-container, .abo-tabs-container {
    /* display:grid;  grid-template-columns: repeat(2, minmax(0, 1fr)); gap:24px; align-items:stretch; position: relative; z-index: 2; */
    display:grid;  
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    column-gap: clamp(30px, 8.523vw, 150px); /* 14.86% 비율 유지, 최소 24px, 최대 214px */
    max-width: 1440px;
    margin: 0 auto;
    position: relative; z-index: 2; 
    padding: 0 clamp(30px, 8.523vw, 150px);
}
.dropbox-option.tab-artist-list {
    border:0px solid #eee; border-radius:12px; overflow:hidden;
    max-height: 70vh; overflow-y:auto; margin: 80px 0px 0; background: #E5E2DD;  min-height: auto;
    padding: 5px;
}
.tab-artist-list {
    border:0px solid #eee; border-radius:12px; overflow:hidden;
    max-height: 70vh; overflow-y:auto; padding: 65px 0px 0; min-height: 64vh;
}
.tab-artist-item { padding:14px 16px; border-bottom:1px solid #f2f2f2; cursor:pointer; }
.tab-artist-item:last-child { border-bottom:none; }
.tab-artist-link { text-decoration:none; color:inherit; font-weight:600; display:block; }
.dropbox-option.tab-artist-link { font-weight:400; }
.dropbox-option.tab-artist-item:hover ,.tab-artist-item:hover { background:#fafafa; border-radius: 10px;}

.tab-artist-preview {
    border:1px solid #eee; border-radius:30px 30px 30px 130px; min-height:320px;
    background-size:cover; background-position:center center; display:flex; align-items:center; justify-content:center;
    padding:0; width: 100%; margin: 0 auto; aspect-ratio: 622 / 722 ;
}
.tab-artist-preview.has-image { background-color:#000; }
.abo-hint { color:#888; margin:0; }
.abo-empty { color:#999; padding:16px; }

/* === GRID SECTION (탭 하단) === */
.tab-type-grid { margin-top: clamp(50px, 8vw, 150px); }
.abo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* 카드 컨테이너 */
.abo-grid-card { display:block; text-decoration:none; }

/* 썸네일 래퍼 */
.abo-grid-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--base-3);
}

/* 실제 이미지 (줌-인 대상) */
.abo-grid-thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .5s ease;
  display: block;
}

/* 검정 오버레이 (기본 은은하게) */
.abo-grid-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background .35s ease;
}

/* 가운데 라벨 */
.abo-grid-title {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  color: #fff; font-weight: 700; letter-spacing: .2px;
  background: rgba(0,0,0,.75);
  border: 1px solid #fff; border-radius: 8px;
  padding: 6px 10px; line-height: 1; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0;
}
.abo-grid-card:hover .abo-grid-title {
    opacity: 1;
}

/* 호버 효과: 이미지 살짝 확대 + 오버레이 더 진하게 */
.abo-grid-card:hover .abo-grid-thumb > img {     filter: grayscale(100%) brightness(1.1);
    transform: scale(1.0); }
.abo-grid-card:hover .abo-grid-overlay { background: rgba(0,0,0,.35); }

.abo-tabs-container {
    margin-bottom: 0.75rem;
}
.dropbox-option.abo-tab-select {font-size: clamp(20px, 17px + 1.8vw, 28px);     padding: 5px 75px 5px 35px;
    border-radius: 10px;
    font-family: 'Optician Sans';}
.dropbox-option.abo-tab-select:focus {background-color: #f3f0ea; border: 0px;}    
.abo-tab-select {
    display: inline-block;
    padding: 0.45rem 2.1rem 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid #dfd8cf;
    background: #f3f0ea;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3b352f;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
}
.dropbox-input-container {
    position: relative;
    display: inline-block;
}
.dropbox-input-container::after {
    content: "﹀";
    position: absolute;
    right: 30px;
    top: 65%;
    transform: translateY(-50%) ;
    font-size: clamp(18px, 17px + 1.8vw, 24px);
    pointer-events: none;
    color: #3b352f;
}

/* 패널 숨김 처리용 */
.abo-panel[hidden] {
    display: none !important;
}

/* 반응형 */
@media (max-width: 1200px) { .abo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { 
    .abo-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-type-grid { margin-top: 50px; } 
}

@media (max-width: 980px) {
    .abo-tabs-container, .tab-artist-list-container { grid-template-columns: 1fr; }
    .abo-tabs {
        padding: 0;
    }
    .tab-artist-list {
        min-height: auto;
    }
    .tab-artist-list {
        padding: 65px 0 0;
    }
    .tab-artist-preview { min-height:240px; margin-top:12px; width: 100%; }
}
@media (max-width: 940px) {
    .abo-tab-wrap {
        width: 100%;
    }
}
/* Responsive Design */
@media (max-width: 1024px) {
    .artist-brand-posts-grid {
        grid-template-columns: repeat(3, 1fr); /* 태블릿에서 3열 */
    }
}

@media (max-width: 768px) {
    .artist-brand-posts-grid {
        grid-template-columns: repeat(2, 1fr); /* 모바일에서 2열 */
    }
}

@media (max-width: 480px) {
    .artist-brand-posts-grid {
        grid-template-columns: 1fr; /* 작은 모바일에서 1열 */
    }
}


.abo-flex-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: clamp(3.125rem, 8vw, 15.625rem);
}

.abo-flex-top-title {
    font-size: 32px;
    font-family: 'Optician Sans';
    border-bottom: 1px solid var(--contrast);
}

.abo-flex-top-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-family: 'Optician Sans';
}

.abo-flex-top-item + .abo-flex-top-item {
    margin-top: 0.25rem;
}

.abo-flex-top-link {
    text-decoration: none;
}

/* 아래 그리드: 3열 */

.abo-flex-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem; /* 카드 사이 간격 */
}

.abo-flex-card {
    text-decoration: none;
    display: block;
}

.abo-flex-card-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

/* 필요 시 반응형에서 1~2열로 줄이기 */
@media (max-width: 960px) {
    .abo-flex-top {
        grid-template-columns: 1fr;
    }

    .abo-flex-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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



/* 하단 랩퍼 */
.abo-flex-bottom {
    margin-top: 4rem;
}

/* 섹션 타이틀 */
.abo-flex-grid-title {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 10px;
    font-family: 'Optician Sans';
    display: none;
}

/* 3열 그리드 */
.abo-flex-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 4rem;   /* 좌우 간격 */
    row-gap: 200px;      /* 위아래 간격 */
    margin-bottom: 200px;
}

/* 카드 전체 */
.abo-flex-card {
    display: block;
    text-decoration: none;
}

/* 카드 내부: 이미지 왼쪽 / 텍스트 오른쪽 */
.abo-flex-card-inner {
    display: flex;
    align-items: flex-start;
}

/* 이미지 영역 – 고정 비율 + 고정 폭 느낌 */
.abo-flex-card-thumb {
    /* flex: 0 0 60%;            
    aspect-ratio: 3 / 4;       */
    overflow: hidden;
}

.abo-flex-card-thumb img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;        /* 중앙 기준으로 잘라서 통일 */
    aspect-ratio: 230 / 285;
    max-width: 230px;
}

/* 텍스트 영역 – 이미지 우측 상단에 붙게 */
.abo-flex-card-meta {
    flex: 1 1 auto;
    padding-left: 0.75rem;    /* 이미지와 간격 */
    padding-top: 0.15rem;     /* 위쪽 기준선 맞추기용 미세조정 */
    line-height: 1em;
}

.abo-flex-card-name {
    display: block;
    font-size: 20px;
    line-height: 1.4;
    
    font-family: 'Optician Sans';
}
.abo-flex-card-subname {
    font-size: 15px;
}

/* 필요하면 한글/영문 2줄 구조를 쓸 때 line-height만 살짝 조정해도 됨 */

/* 반응형 – 화면 줄어들 때 열 수 줄이기 */
@media (max-width: 960px) {
    .abo-flex-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 2.5rem;
        row-gap: 3rem;
    }
}

@media (max-width: 600px) {
    .abo-flex-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 2.5rem;
    }
}

/* 래퍼 전체 */
.artist-brand-gallery {
    padding: 80px 0 0;
}

/* 위쪽 dots */
.artist-brand-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.artist-brand-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    opacity: 0.6;
    transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.artist-brand-dot.is-active {
    width: 22px;
    background: #111;
    opacity: 1;
}

/* 이미지 그리드 */
.artist-brand-posts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    height: 60vh;          /* 세로 비율 조절용 */
    min-height: 420px;
}

/* 기본은 모두 세로로 길게 */
.artist-brand-post {
    flex: 0.9;             /* 작게 – 세로로 긴 느낌 */
    position: relative;
    overflow: hidden;
    transition: flex 0.6s ease, transform 0.6s ease;
}

/* 활성(가운데) 이미지만 크게 */
.artist-brand-post.is-active {
    flex: 3.2;
}

/* 그리드에 마우스 올리면, 기본은 모두 줄이고
   호버된 것만 크게 보이게 */
.artist-brand-posts-grid:hover .artist-brand-post {
    flex: 0.7;
}

.artist-brand-posts-grid:hover .artist-brand-post.is-active {
    flex: 0.7; /* 다른 곳을 호버했을 때는 기존 active도 줄어들게 */
}

.artist-brand-posts-grid .artist-brand-post:hover {
    flex: 3.2;
}

/* 이미지 비율 – 세로로 긴 느낌 유지 */
.artist-brand-post .post-thumbnail,
.artist-brand-post img {
    width: 100%;
    height: 100%;
}

.artist-brand-post img {
    object-fit: cover;
    display: block;
}

/* 타이틀 오버레이 (필요 없으면 삭제 가능) */
.artist-brand-post .overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.artist-brand-post .post-title {
    margin: 0;
}

/* 모바일 – 세로 스택 */
@media (max-width: 768px) {
    .abo-flex-card-inner {
        flex-direction: column;
        gap: 20px;
    }
    .abo-flex-card-thumb img {
        max-width: none;
    }
    .artist-brand-posts-grid {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }

    .artist-brand-post {
        flex: auto;
        height: 260px;
    }

    .artist-brand-post.is-active {
        height: 340px;
    }
}


.artist-brand-posts-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    height: 60vh;              /* 전체 세로 높이 */
    --collapsed: 0.9;          /* 옆에 세로로 길게 보이는 이미지 비율 */
    --expanded: 3.4;           /* 가운데로 넓어지는 이미지 비율 */
    align-items: center;
}

.artist-brand-post {
    flex: 1 1 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.45s ease, transform 0.45s ease;
}

.artist-brand-post .post-thumbnail,
.artist-brand-post img {
    width: 100%;
    height: 100%;
    display: block;
}

.artist-brand-post img {
    object-fit: cover;         /* 항상 꽉 차게 */
}

/* 기본 상태: 가운데 활성 요소만 크게 보이게 (JS에서 .is-active를 붙임) */
.artist-brand-posts-grid .artist-brand-post {
    flex: var(--collapsed);
    height: 80%;
}
.artist-brand-posts-grid .artist-brand-post.is-active {
    flex: var(--expanded);
    height: 100%;
}

/* 마우스를 올렸을 때: 전체는 줄어들고, 올라간 것만 커짐 */
.artist-brand-posts-grid:hover .artist-brand-post {
    flex: var(--collapsed);
}
.artist-brand-posts-grid:hover .artist-brand-post:hover {
    flex: var(--expanded);
}

/* 오버레이/타이틀이 필요하면 */
.artist-brand-post .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}
.artist-brand-post:hover .overlay {
    opacity: 1;
}
.artist-brand-post .post-title {
    color: #fff;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: none;
}


.artist-brand-description-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.artist-brand-description-title {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 540px;
    margin: 0 auto clamp(1.875rem, 4.5vw, 8.125rem);
}

.artist-brand-description-title .sub-name {
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: right;
}

.artist-brand-description-title .artist-title {
    font-size: 20px;
    font-family: 'Optician Sans';
    margin-bottom: 0;
}

.artist-brand-description-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    font-size: 14px;
    line-height: 1.9;
}

.artist-brand-description-content p {
    margin: 0 0 0.8em;
}

/* 모바일에서는 한 컬럼으로 자연스럽게 떨어지게 */
@media (max-width: 768px) {
    .artist-brand-description-section {
        padding: 0 20px;
    }

    .artist-brand-description-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .artist-brand-description-title {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .artist-brand-description-title .sub-name {
        text-align: left;
    }
}


/* ✅ 중앙 고정용 3컬럼 레이아웃 */
.ab-row{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* 좌(레일) / 중앙(고정) / 우(레일) */
  align-items: center;
  column-gap: clamp(18px, 2.5vw, 44px);
}
/* 좌/우 레일을 각 영역 안에서 중앙쪽으로 붙이기 */
.ab-rail-left{
  justify-content: flex-end;
}
.ab-rail-right{
  justify-content: flex-start;
}
/* 중앙 */
.ab-center{
  /* width: clamp(520px, 56vw, 980px); */
  max-width: 540px;
}
.ab-center img {
  aspect-ratio: 540/677;
  object-fit: cover;
}
/* 레일을 가로로 */
.ab-rail{
  /* width: clamp(240px, 18vw, 360px);  */
  display:flex;
  flex-direction: row;
  gap: 14px;
  align-items:center;
  overflow:hidden;
}
/* 우측 레일은 중앙쪽으로 붙게 왼쪽 정렬 */
.ab-rail-right{
  justify-content:flex-start;
}
.ab-rail img {
  aspect-ratio: 19/45;
  object-fit: cover;
}
/* 썸네일 크기(스샷 느낌) */
.ab-thumb{
  width: clamp(90px, 7vw, 120px);
  flex: 0 0 auto;                    /* 줄바꿈 방지 */
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
  opacity:.85;
  transition: opacity .2s ease, transform .2s ease;
}
.ab-thumb:hover{
  opacity:1;
  transform: translateY(-2px);
}
.ab-thumb img{
  width:100%;
  height:auto;
  display:block;
}


/* 상단 세로 바 인디케이터 */
.ab-indicator{
  display:flex;
  flex-direction:row; /* 전체는 가로로 가운데 위치 */
  justify-content:center;
  margin-bottom: 18px;
  gap: 10px;
}

/* “바”를 세로 느낌으로: 폭 좁고 높이 길게 */
.ab-bar{
  width: 3px;
  height: 18px;         /* 기본은 얇게 */
  border:0;
  background: rgba(0,0,0,.25);
  cursor:pointer;
  border-radius: 99px;
  transition: all .2s ease;
  /* transform: rotate(90deg);  */
  padding: 0;
}
.ab-bar.is-active{
  background: rgba(0,0,0,.9);
  height: 18px;        /* 활성은 더 “진하고 길게” */
}

@media (max-width: 480px) {
    .ab-row {
        grid-template-columns: 1fr; /* 작은 모바일에서 1열 */
        gap: 20px;
    }
    .ab-center {
        line-height: 0;
    }
    .ab-rail {
            flex-direction: column;
    }
    .ab-thumb {
        width: 100%;
    }
    .ab-thumb img {
        width: 100%;
        height: 70px;
        display: block;
    }
}
