@font-face {
  font-family: 'SOLSans-VF';
  src: 
    url('/sourcebox/SOLSans-VF.ttf') format('truetype'),
    url('/sourcebox/SOLSans-VF.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
}
alphabets
*,
*:after,
*:before{
  margin: 0;
  padding: 0;
  font-family: 'SOLSans-VF', 'Noto Sans KR', sans-serif;
  -webkit-overflow-scrolling: touch!important;
    font-variation-settings: "wdth" 100, "wght" 900, "ital" 0;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0
}

a, a:visited, a:hover, a:active {
  text-decoration: none !important;
  color: inherit !important;
}

*:focus {
  outline: none;
}

*::selection {
  background-color: transparent;
  color: #9fa0a0;
}

html{
  font-family: 'SOLSans-VF', 'Noto Sans KR', sans-serif;
  font-weight: 400;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

body::-webkit-scrollbar {
    display: none;
    width: 0px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background: transparent; 
}

body::-webkit-scrollbar-thumb { 
     background: transparent; 
     border-radius: 5px; 
} 

body {
  -ms-overflow-style: none; /* IE and Edge */ 
  scrollbar-width: none; /* Firefox */
  background-color: #fff;
  overflow-x: hidden;
  color: #000;
}

a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: color .3s;
}

.mver {
  display: none;
}

a.opacity {
    transition: color .3s;
    color: #9fa0a0;
}

main.main {
    display: block;
    position: relative;
    width: calc(100% - 4vw);
    height: calc(100vh - 4vw);
    padding: 2vw;
}

.container {
    display: inline-block;
    position: relative;
    width: 100%;
    /* height: 100vh; */
    height: calc(100vh - 4vw);
}

.left-top {
    display: inline-block;
    position: absolute;
    width: calc((100% / 2) - 4vw);
    height: auto;
    top: 0;
    left: 0;
    padding-right: 4vw;
}

.logo {
    display: inline-block;
    position: relative;
    width: 3.5vw;
    height: auto;
    margin-bottom: 1vw;
}

.desc {
    display: inline-block;
    position: relative;
    width: 100%;
    height: auto;
    font-size: 1vw;
    line-height: 1.5vw;
    white-space: pre-line;
    font-variation-settings: "wdth" 100, "wght" 250, "ital" 0;
}

i {
    font-style: normal !important;
    font-feature-settings: "ss01" 1;
    font-variation-settings: "wdth" 100, "wght" 250, "ital" 0;
}

.bottom {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.panel {
    display: flex;
    position: relative;
    float: left;
    height: auto;
    align-content: space-around;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    /* margin-bottom: 2vw; */
}

#project-management {
    margin-right: 1vw;
    width: calc(50% - 1vw);
}

#production-management {
    margin-left: 1vw;
    width: calc(50% - 1vw);
}

h2 {
    display: inline-block;
    position: relative;
    width: auto;
    height: auto;
    font-size: 2.4vw;
    line-height: 2.4vw;
    font-variation-settings: "wdth" 100, "wght" 500, "ital" 0;
    margin-bottom: 1vw;
}

.unit {
  display: inline-block;
    position: relative;
    width: auto;
    height: auto;
    font-size: 2.4vw;
    line-height: 2.4vw;
    font-variation-settings: "wdth" 100, "wght" 500, "ital" 0;
    margin-bottom: 1vw;
}

.unit.one {
    margin-right: 0.7vw;
}



.name-desc, .mail {
    display: inline-block;
    position: relative;
    width: auto;
    height: auto;
    font-variation-settings: "wdth" 100, "wght" 250, "ital" 0;
    font-size: 0.6vw;
}

.name {
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    font-size: 1vw;
    line-height: 1vw;
    font-variation-settings: "wdth" 100, "wght" 500, "ital" 0;
    opacity: .5;
    margin-bottom: 0.5vw;
    cursor: pointer;
}

.desc-set {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    justify-content: space-between;
}

/*.person.lee, .person.min {
    margin-bottom: 2.6vw;
}*/

.desc-set {
    display: flex;
    position: relative;
    width: 100%;
    height: auto;
    justify-content: space-between;
    margin-bottom: 4vw;
}

.kim .desc-set, .park .desc-set {
    margin: 0;
}



:root {
    --ab-pad: 2vw;
    --ab-dim: #f2f2f2;
    --ab-speed: 200ms;
    --ab-radius: 0;
    --ab-modal-w: calc((100vw - (4 * var(--ab-pad))) / 2);
    --ab-modal-h: calc(100vh - (4 * var(--ab-pad)));
}

.ab-overlay {
    position: fixed;
    inset: 0;
    display: none;
    place-items: self-end;
    z-index: 9999;
    padding: 2vw;
}

.ab-overlay.show{ display: grid; }
.ab-overlay::before{
  content:""; position:absolute; inset:0; background:var(--ab-dim); opacity:.8;
  transition: opacity var(--ab-speed) ease;
}
.ab-overlay.hide::before{ opacity:0; }

.ab-modal{
  position: relative; width: var(--ab-modal-w); height: var(--ab-modal-h);
  background:#fff; border-radius: var(--ab-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  padding: var(--ab-pad);
  display: grid; grid-template-rows: auto auto auto 1fr auto; gap: 0;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--ab-speed) ease, transform var(--ab-speed) ease;
}
.ab-overlay.show .ab-modal{ opacity:1; transform:none; }
.ab-overlay.hide .ab-modal{ opacity:0; transform: translateY(6px); }

.ab-modal-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    height: 2vw;
}

.ab-modal-name {
    /* font-weight: 600; */
    font-size: 1vw;
    line-height: 1;
    font-weight: normal;
}

.ab-btn-x {
    appearance: none;
    border: 0;
    background: transparent;
    font-size: 1vw;
    cursor: pointer;
    padding: 0;
}

.ab-modal-meta {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 0.6vw;
    height: 2vw;
    justify-content: space-between;
        font-variation-settings: "wdth" 100, "wght" 250, "ital" 0;
}

.ab-meta-label{ opacity:1; }
.ab-modal-role {
    font-size: 0.6vw;
    opacity: 1;
    font-variation-settings: "wdth" 100, "wght" 250, "ital" 0;
    height: 2vw;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 공통 컨테이너 */
#ab-swiper .swiper-slide{ display:block; place-items:center; }
/* 기본 슬라이드 컨테이너 */
#ab-swiper .slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    place-items: center;
    overflow: hidden;
    justify-content: center;
}

/* 가로형 */
#ab-swiper img.landscape {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* 세로형 */
#ab-swiper img.portrait {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* 비디오/아이프레임: 컨테이너 꽉 채움 */
#ab-swiper video,
#ab-swiper video, #ab-swiper iframe {
    width: 100%;
    height: 26vw;
    display: block;
    border: 0;
    z-index: 5; /* 클릭존보다 위 */
    pointer-events: auto; /* 직접 클릭 가능 */
}

#ab-swiper .ab-zone { pointer-events: auto; z-index: 4;}

.ab-caption {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    font-size: 0.6vw;
    opacity: 1;
    font-variation-settings: "wdth" 100, "wght" 250, "ital" 0;
    height: 2vw;
    align-items: end;
}

.ab-caption .ab-client{ text-align:left; }
.ab-caption .ab-project{ text-align:right; }

#ab-swiper{ position: relative; width:100%; height:100%; border-radius:0; overflow:hidden; background:#ffffff; }

#ab-zones { display: none !important; }

#ab-modal-mail {
  cursor: pointer;
  text-decoration: none;
}
#ab-modal-mail.copied {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}


@media (max-width: 900px){
  :root{ --ab-modal-w: calc(100vw - (2*var(--ab-pad))); }
}
