.sub__dispatch {
  background: url(../../1x/s1/sub2_2__bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.sub__dispatch_wrap {
  max-width: 1600px;
  margin: 0 auto;
}

.sub__dispatch_box {
  background: url(../../1x/s1/sub2_2__bg2.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 70px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25);
}

.sub__dispatch_box ul {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 80px;
  font-weight: 700;
  color: #1a1a1a;
}

.sub__dispatch_box_icon {
  background: #fff;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.sub__dispatch_box_text {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 1rem;
}

.sub__dispatch_none {
  padding: 60px 100px;
}

.sub__dispatch_none ul {
  margin: 0 auto;
}

.sub__dispatch_none li {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.sub__dispatch_none li::after {
  content: "";
  width: 2px;
  height: 2rem;
  position: absolute;
  left: 70px;
  top: 100%;
  background: #313c4d;
}

.sub__dispatch_none li:last-child::after {
  content: none;
}

.sub__dispatch_none_icon {
  background: #f3bf46;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
}

.sub__dispatch_none_text {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
}

.sub__dispatch_none_text span {
  display: inline-block;
  background: #313c4d;
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin: 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 800;
}

@media screen and (max-width: 1280px) {
  .sub__dispatch_box ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .sub__dispatch_box ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .sub__dispatch_box ul {
    grid-template-columns: 1fr;
  }

  .sub__dispatch_none li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sub__dispatch_none li::after {
    content: none;
  }

  .sub__dispatch_none_text {
    margin-top: 1rem;
  }

  .sub__dispatch_none_text span {
    display: block;
    margin-top: 0.5rem;
  }
}

/* ====== 카테고리 밑 ‘빙온숙성 설비&공정’ 이미지 섹션 ====== */
.proc-tech {
  position: relative;
  width: 100%;
  margin: 0;
  /* 카테고리 바로 아래에 붙게 */
  padding: 40px 20px 80px;
  /* 상하 여백 */
  background: #fff;
}

.proc-tech__inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* 상단 소제목/타이틀 라인 (이미지 상단 좌측 스타일 따라잡기) */
.proc-tech__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}

.proc-tech__eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: #9a9a9a;
  letter-spacing: 0.02em;
}

.proc-tech__title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
}

/* 이미지 래퍼: 배경 패널 느낌 + 살짝 그림자 */
.proc-tech__panel {
  background: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: clamp(12px, 1.8vw, 20px);
  border: 1px solid #eee;
}

.proc-tech__imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.proc-tech__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 우측 상단 인증/뱃지 느낌의 작게 흐린 라벨 (선택) */
.proc-tech__badge {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e9e9e9;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #6b6b6b;
  backdrop-filter: blur(2px);
  display: none;
  /* 필요 시 block; 로 */
}

/* 하단 설명 줄 (이미지 하단의 작은 캡션 영역 느낌) */
.proc-tech__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 4px 0;
  color: #7a7a7a;
  font-size: 12px;
}

.proc-tech__note {
  line-height: 1.5;
}

/* 반응형 */
@media (max-width: 1024px) {
  .proc-tech {
    padding: 28px 16px 56px;
  }
}

@media (max-width: 640px) {
  .proc-tech {
    padding: 22px 14px 42px;
  }

  .proc-tech__head {
    gap: 10px;
    margin-bottom: 12px;
  }

  .proc-tech__eyebrow {
    font-size: 11px;
  }

  .proc-tech__foot {
    font-size: 11px;
    padding-top: 10px;
  }
}

/* ===== 섹션 공통 ===== */
.proc-tech {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 40px 20px 80px;
  background: #fff
}

.proc-tech__inner {
  max-width: 1400px;
  margin: 0 auto
}

/* ===== 제목 블록 (시안 스타일) ===== */
.proc-tech__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 40px 0 50px 0;
  margin-left: 13%;
}

.proc-tech__eyebrow {
  font-size: 12px;
  line-height: 1;
  color: #9a9a9a;
  font-weight: 700;
  letter-spacing: .02em;
  margin-left: 6px;
}

.proc-tech__title {
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.25;
  color: #111;
  font-weight: 900;
}

.proc-tech__desc {
  margin-top: 6px;
  color: #333333;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  letter-spacing: .01em;
  transform: translateY(-2px);
}

.m-only {
  display: none
}

/* ===== 이미지 패널 ===== */
.proc-tech__panel {
  background: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  padding: clamp(12px, 1.8vw, 20px);
  border: 1px solid #eee
}

.proc-tech__imgbox {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #fff
}

.proc-tech__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle
}

/* 하단 캡션 */
.proc-tech__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 4px 0;
  color: #7a7a7a;
  font-size: 12px
}

.proc-tech__note {
  line-height: 1.5
}

/* ===== 반응형 ===== */
@media (max-width:1024px) {
  .proc-tech {
    padding: 28px 16px 56px
  }
}

@media (max-width:640px) {
  .proc-tech {
    padding: 22px 14px 42px
  }

  .proc-tech__head {
    gap: 6px;
    margin-bottom: 12px
  }

  .proc-tech__eyebrow {
    font-size: 11px;
    margin-left: 4px
  }

  .proc-tech__title {
    font-size: clamp(20px, 6vw, 28px)
  }

  .proc-tech__desc {
    font-size: 13px
  }

  .m-only {
    display: inline
  }
}

/* ===== 두 번째 이미지 (슬라이드업 애니메이션) ===== */
.proc-tech__slideup {
  opacity: 0;
  transform: translateY(60px);
  transition: all .8s ease
}

.proc-tech__slideup.show {
  opacity: 1;
  transform: translateY(0)
}

/* ===== 반응형 ===== */
@media (max-width:1024px) {
  .proc-tech {
    padding: 28px 16px 56px
  }
}

@media (max-width:640px) {
  .proc-tech {
    padding: 22px 14px 42px
  }

  .proc-tech__head {
    gap: 6px;
    margin-bottom: 12px
  }

  .proc-tech__eyebrow {
    font-size: 11px;
    margin-left: 4px
  }

  .proc-tech__title {
    font-size: clamp(20px, 6vw, 28px)
  }

  .proc-tech__desc {
    font-size: 13px
  }

  .m-only {
    display: inline
  }
}

/* === 섹션: 제목 + 첫 이미지(그대로) === */
.dispatch-proc {
  padding: 32px 0 48px;
}

.dispatch-proc__inner {
  width: 100%;
  max-width: inherit;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.dispatch-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 16px;
}

.dispatch-eyebrow {
  font-size: 12px;
  color: #9a9a9a;
  font-weight: 700;
  letter-spacing: .02em;
}

.dispatch-title {
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 900;
  color: #111;
  line-height: 1.25;
}

.dispatch-desc {
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.6;
}

.m-only {
  display: none
}

.dispatch-panel {
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: clamp(10px, 1.6vw, 18px);
}

.dispatch-imgwrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
}

.dispatch-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  vertical-align: middle;
}

/* === 두 번째 이미지: 사이트 폭 따라 100% + 슬라이드업 === */
.dispatch-slide {
  margin-top: 28px;
  /* 첫 이미지 밑 간격 */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .7s ease, transform .7s ease;
}

.dispatch-slide.show {
  opacity: 1;
  transform: translateY(0);
}

/* 반응형 */
@media (max-width:1024px) {
  .dispatch-proc {
    padding: 24px 0 40px;
  }
}

@media (max-width:640px) {
  .dispatch-proc {
    padding: 20px 0 32px;
  }

  .dispatch-desc {
    font-size: 13px;
  }

  .m-only {
    display: inline
  }
}

/* 아래 풀사이즈 이미지 (시안처럼 화면 전체 가로) */
.aging-visual {
  width: 100%;
  margin-top: clamp(14px, 2vw, 24px);
  overflow: hidden;
  background: #000;
}

.aging-visual img {
  width: 100%;
  height: 700px;
  /* 시안 높이감 */
  object-fit: cover;
  display: block;
}

/* 스크롤 리빌 (이미지 위로 스르륵) */
.reveal-up {
  transform: translateY(40px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1), opacity .9s ease-out;
  will-change: transform, opacity;
}

.reveal-up.is-inview {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .aging-hero__inner {
    padding: 28px 16px 0;
  }

  .aging-hero__content {
    max-width: none;
  }

  .aging-hero__title {
    margin-bottom: 12px;
  }

  .aging-visual img {
    height: 42vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* 섹션 레이아웃 */
.fac-wrap {
  max-width: 1200px;
  margin: 48px auto 100px;
  padding: 0 20px
}

.fac-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  margin: 4px 0 6px
}

.fac-eyebrow {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .04em
}

.fac-desc {
  font-size: 14px;
  color: #333333;
  margin-bottom: 22px;
  font-weight: 600;
}


.fac-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  background: #f3f4f6
}

.fac-main__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: opacity .35s ease
}

.fac-fade {
  opacity: 0
}

.fac-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .96);
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transition: opacity .35s ease
}

.fac-chip {
  background: var(--chip);
  color: #fff;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 8px
}

.fac-overlay__text {
  font-size: 15px;
  color: #333333;
  font-weight: 800;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 썸네일 4장 레이아웃 */
.fac-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: 22px
}

.fac-thumb {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  outline: none
}

.fac-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .18s ease
}

.fac-thumb:hover img {
  transform: scale(1.02)
}

.fac-thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  outline: 3px solid #000;
  outline-offset: -3px;
  border-radius: var(--radius)
}

.fac-thumb:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .5)
}

/* 반응형 */
@media (max-width:1024px) {
  .fac-thumbs {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width:860px) {
  .fac-thumbs {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  .fac-thumbs {
    grid-template-columns: 1fr
  }

  .fac-chip {
    padding: 8px 12px
  }

  .fac-overlay {
    left: 10px !important;
    right: 10px !important;
    bottom: 7px !important;
    width: 332px !important;
    height: 50px !important;
    font-size: 8px !important;
  }

  .fac-overlay__text {
    font-size: 12px
  }
}

@media (prefers-reduced-motion:reduce) {

  .fac-main__img,
  .fac-overlay,
  .fac-thumb img {
    transition: none
  }
}