/* =========================================================
[SECTION 04-1] 회사 소개
========================================================= */
.s41-wrap {
    position: relative;
    padding: 00px 20px 40px;
    
  }
  
  .s41-inner {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
  }
  
  .s41-title {
    margin: 0 0 0px;
    text-align: center;
    font-size: 54px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f224f;
  }
  
  .s41-title_sub {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #9a927f;
    letter-spacing: 0.12em;
  }
  
  .s41-slider {
    position: relative;
    width: 100%;
    min-height: 640px;
  }
  
  .s41-viewport {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
  }
  
  .s41-track {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .s41-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62%;
    max-width: 860px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
    transition:
      transform 0.6s ease,
      opacity 0.6s ease,
      filter 0.6s ease,
      z-index 0.6s ease;
  }
  
  .s41-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    box-shadow:
      0 18px 60px rgba(15, 34, 79, 0.10),
      0 6px 18px rgba(15, 34, 79, 0.06);
  }
  
  .s41-item img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: contain;
    background:
      radial-gradient(circle at top, rgba(255,255,255,0.95), rgba(241,244,250,0.9)),
      #f5f7fb;
  }
  
  .s41-caption {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: calc(100% - 96px);
    padding: 22px 28px;
    border-radius: 18px;
    background: rgba(15, 34, 79, 0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
  
  /* active / side states */
  .s41-item.is-active {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
  
  .s41-item.is-prev {
    opacity: 0.58;
    z-index: 2;
    transform: translate(-96%, -50%) scale(0.80);
    filter: blur(0.5px);
  }
  
  .s41-item.is-next {
    opacity: 0.58;
    z-index: 2;
    transform: translate(-4%, -50%) scale(0.80);
    filter: blur(0.5px);
  }
  
  .s41-item.is-hidden-left {
    opacity: 0;
    z-index: 1;
    transform: translate(-130%, -50%) scale(0.72);
  }
  
  .s41-item.is-hidden-right {
    opacity: 0;
    z-index: 1;
    transform: translate(30%, -50%) scale(0.72);
  }
  
  .s41-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: #183981;
    box-shadow: 0 10px 28px rgba(15, 34, 79, 0.18);
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
  }
  
  .s41-btn:hover {
    background: #0f224f;
    transform: translateY(-50%) scale(1.04);
  }
  
  .s41-prev {
    left: 34px;
  }
  
  .s41-next {
    right: 34px;
  }
  
  .s41-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  
  .s41-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  
  .s41-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  
  .s41-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
  }
  
  .s41-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: #c8cfdd;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .s41-dot.active {
    width: 28px;
    background: #183981;
  }
  
  /* =========================================================
  반응형
  ========================================================= */
  @media (max-width: 1280px) {
    .s41-item {
      width: 70%;
    }
  }
  
  @media (max-width: 1024px) {
    .s41-wrap {
      padding: 00px 16px 24px;
    }
  
    .s41-title {
      font-size: 42px;
      margin-bottom: 00px;
    }
  
    .s41-slider,
    .s41-viewport {
      min-height: 520px;
      height: 520px;
    }
  
    .s41-item {
      width: 76%;
    }
  
    .s41-item img {
      height: 430px;
    }
  
    .s41-caption {
      width: calc(100% - 56px);
      font-size: 20px;
      padding: 18px 20px;
    }
  
    .s41-item.is-prev {
      transform: translate(-90%, -50%) scale(0.84);
    }
  
    .s41-item.is-next {
      transform: translate(-10%, -50%) scale(0.84);
    }
  
    .s41-prev {
      left: 12px;
    }
  
    .s41-next {
      right: 12px;
    }
  }
  
  @media (max-width: 768px) {
    .s41-wrap {
      padding: 0px 14px 18px;
    }
  
    .s41-title {
      font-size: 30px;
      margin-bottom: 22px;
    }
  
    .s41-title_sub {
      font-size: 14px;
      margin-bottom: 8px;
    }
  
    .s41-slider,
    .s41-viewport {
      min-height: 360px;
      height: 360px;
    }
  
    .s41-item {
      width: 88%;
    }
  
    .s41-item img {
      height: 290px;
    }
  
    .s41-caption {
      width: calc(100% - 32px);
      bottom: 12px;
      padding: 12px 14px;
      font-size: 14px;
      border-radius: 12px;
    }
  
    .s41-item.is-prev,
    .s41-item.is-next {
      opacity: 0.22;
    }
  
    .s41-item.is-prev {
      transform: translate(-78%, -50%) scale(0.86);
    }
  
    .s41-item.is-next {
      transform: translate(-22%, -50%) scale(0.86);
    }
  
    .s41-btn {
      width: 42px;
      height: 42px;
    }
  
    .s41-prev {
      left: 6px;
    }
  
    .s41-next {
      right: 6px;
    }
  }
  /* =========================================================
[SECTION 04-2] 사무실 전경
========================================================= */
.s42-wrap {
    position: relative;
    padding: 00px 20px 120px;
    
  }
  
  .s42-inner {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
  }
  
  .s42-title {
    margin: 0 0 0px;
    text-align: center;
    font-size: 54px;
    line-height: 1.18;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f224f;
  }
  
  .s42-title_sub {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #9a927f;
    letter-spacing: 0.12em;
  }
  
  .s42-slider {
    position: relative;
    width: 100%;
    min-height: 640px;
  }
  
  .s42-viewport {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
  }
  
  .s42-track {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .s42-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62%;
    max-width: 860px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
    transition:
      transform 0.6s ease,
      opacity 0.6s ease,
      filter 0.6s ease;
  }
  
  .s42-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    box-shadow:
      0 18px 60px rgba(15, 34, 79, 0.10),
      0 6px 18px rgba(15, 34, 79, 0.06);
  }
  
  .s42-item img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    background: #eef1f6;
  }
  
  .s42-caption {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: calc(100% - 96px);
    padding: 22px 28px;
    border-radius: 18px;
    background: rgba(15, 34, 79, 0.84);
    backdrop-filter: blur(8px);
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }
  
  .s42-item.is-active {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
  
  .s42-item.is-prev {
    opacity: 0.58;
    z-index: 2;
    transform: translate(-96%, -50%) scale(0.80);
    filter: blur(0.5px);
  }
  
  .s42-item.is-next {
    opacity: 0.58;
    z-index: 2;
    transform: translate(-4%, -50%) scale(0.80);
    filter: blur(0.5px);
  }
  
  .s42-item.is-hidden-left {
    opacity: 0;
    z-index: 1;
    transform: translate(-130%, -50%) scale(0.72);
  }
  
  .s42-item.is-hidden-right {
    opacity: 0;
    z-index: 1;
    transform: translate(30%, -50%) scale(0.72);
  }
  
  .s42-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: #183981;
    box-shadow: 0 10px 28px rgba(15, 34, 79, 0.18);
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
  }
  
  .s42-btn:hover {
    background: #0f224f;
    transform: translateY(-50%) scale(1.04);
  }
  
  .s42-prev {
    left: 34px;
  }
  
  .s42-next {
    right: 34px;
  }
  
  .s42-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  
  .s42-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }
  
  .s42-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }
  
  .s42-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
  }
  
  .s42-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: #c8cfdd;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  
  .s42-dot.active {
    width: 28px;
    background: #183981;
  }
  
  @media (max-width: 1280px) {
    .s42-item {
      width: 70%;
    }
  }
  
  @media (max-width: 1024px) {
    .s42-wrap {
      padding: 00px 16px 90px;
    }
  
    .s42-title {
      font-size: 42px;
      margin-bottom: 00px;
    }
  
    .s42-slider,
    .s42-viewport {
      min-height: 520px;
      height: 520px;
    }
  
    .s42-item {
      width: 76%;
    }
  
    .s42-item img {
      height: 430px;
    }
  
    .s42-caption {
      width: calc(100% - 56px);
      font-size: 20px;
      padding: 18px 20px;
    }
  
    .s42-item.is-prev {
      transform: translate(-90%, -50%) scale(0.84);
    }
  
    .s42-item.is-next {
      transform: translate(-10%, -50%) scale(0.84);
    }
  
    .s42-prev {
      left: 12px;
    }
  
    .s42-next {
      right: 12px;
    }
  }
  
  @media (max-width: 768px) {
    .s42-wrap {
      padding: 00px 14px 72px;
    }
  
    .s42-title {
      font-size: 30px;
      margin-bottom: 22px;
    }
  
    .s42-title_sub {
      font-size: 14px;
      margin-bottom: 8px;
    }
  
    .s42-slider,
    .s42-viewport {
      min-height: 360px;
      height: 360px;
    }
  
    .s42-item {
      width: 88%;
    }
  
    .s42-item img {
      height: 290px;
    }
  
    .s42-caption {
      width: calc(100% - 32px);
      bottom: 12px;
      padding: 12px 14px;
      font-size: 14px;
      border-radius: 12px;
    }
  
    .s42-item.is-prev,
    .s42-item.is-next {
      opacity: 0.22;
    }
  
    .s42-item.is-prev {
      transform: translate(-78%, -50%) scale(0.86);
    }
  
    .s42-item.is-next {
      transform: translate(-22%, -50%) scale(0.86);
    }
  
    .s42-btn {
      width: 42px;
      height: 42px;
    }
  
    .s42-prev {
      left: 6px;
    }
  
    .s42-next {
      right: 6px;
    }
  }