.people-page main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.people-page .people-hero {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.people-page .people-culture-section {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.people-page .people-apply-section {
  --apply-section-bg: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 20px 80px;
  background: var(--apply-section-bg);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 24px;
}

.people-page .people-apply-list {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.people-page .people-apply-item {
  width: 100%;
  display: grid;
  justify-items: center;
  align-content: start;
}

.people-page .people-extra-section {
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

.people-page .people-apply-media {
  width: min(1100px, 100%);
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.people-page .people-apply-media.is-collapsed {
  max-height: clamp(312px, 45.6vw, 624px);
}

.people-page .people-apply-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--apply-section-bg));
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.people-page .people-apply-media.is-expanded::after {
  opacity: 0;
}

.people-page .people-apply-media__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.people-page .people-apply-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.people-page .people-apply-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 31px;
  border-radius: 999px;
  border: 1px solid rgba(20, 17, 14, 0.18);
  background: #ffffff;
  color: #111111;
  font-weight: 600;
  font-size: 1.44em;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}

.people-page .people-apply-action:hover {
  color: #ff7f00;
}

.people-page .people-apply-action--saram-in {
  background: #4776ee;
  border-color: #4776ee;
  color: #ffffff;
}

.people-page .people-apply-action--saram-in:hover {
  color: #ffffff;
}

.people-page .people-apply-action--jobkorea {
  background: #b8ff00;
  border-color: #b8ff00;
  color: #111111;
}

.people-page .people-apply-action--jobkorea:hover {
  color: #ffffff;
}

.people-page .people-apply-action--player {
  background: #ff7f00;
  border-color: #ff7f00;
  color: #ffffff;
}

.people-page .people-apply-action--player:hover {
  color: #ffffff;
}

.people-page .people-apply-action:focus-visible {
  outline: 2px solid #ff7f00;
  outline-offset: 3px;
}

.people-page .people-apply-toggle {
  margin-top: 80px;
  padding: 17px 31px;
  border-radius: 999px;
  border: 1px solid rgba(20, 17, 14, 0.18);
  background: linear-gradient(80deg, #ffffff, rgb(243, 243, 243));
  color: #111111;
  font-weight: 600;
  font-size: 1.44em;
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s ease, transform 0.2s ease;
}

.people-page .people-apply-toggle:hover {
  color: #ff7f00;
}

.people-page .people-apply-toggle:focus-visible {
  outline: 2px solid #ff7f00;
  outline-offset: 3px;
}

.people-page .people-culture-bento {
  --card-gap: 16px;
  --grid-pad: 20px;
  --hover-pad-inline: 0px;
  --edge-bleed: 12px;
  --card-width: 500px;
  margin-inline: calc(-1 * var(--edge-bleed));
  width: calc(100% + (var(--edge-bleed) * 2));
  padding-inline: var(--edge-bleed);
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--edge-bleed);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding-block: 16px;
  margin-top: 0;
  cursor: grab;
}

.people-page .people-culture-bento.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.people-page .people-culture-bento.is-dragging * {
  cursor: grabbing;
  user-select: none;
}

.people-page .people-culture-bento::-webkit-scrollbar {
  display: none;
}

.people-page .people-culture-bento__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--card-width);
  gap: var(--card-gap);
  width: max-content;
  margin: 0;
  padding: 0;
  overflow: visible;
  justify-content: start;
}

.people-page .people-culture-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  scroll-snap-align: center;
  transform: rotate(var(--card-rotation, 0deg));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.people-page .people-culture-card h4,
.people-page .people-culture-card h5 {
  margin: 0;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 0;
}

.people-page .people-culture-card h4::after,
.people-page .people-culture-card h5::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: currentColor;
  opacity: 1;
}

.people-page .people-culture-card ul {
  margin: 0;
  padding-left: 1.1em;
}

.people-page .people-culture-card li {
  margin: 6px 0;
}

.people-page .people-culture-card__icon {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  margin-top: auto;
  align-self: flex-end;
}

.people-page .people-culture-card__icon-image {
  width: clamp(85.1px, 12.17vw, 139.9px);
  height: auto;
  display: block;
  margin-top: auto;
  align-self: flex-end;
  transform: rotate(-4deg);
  transform-origin: center;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18));
}



.people-page .people-recruit-wrap {
  width: 100%;
  background-color: #f2f2f2;
  background-image: url("https://cdn.imweb.me/upload/S20200402f6a4097001dd3/236867b69b408.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.people-page .peoples {
  width: 100%;
  max-width: 1800px;
  background: transparent;
  text-align: center;
}

.people-page .peoples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
  background: transparent;
}

.people-page .peoples-card {
  width: 100%;
  margin: 0;
  padding: 20px 20px 30px 20px;
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
  text-align: center;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.45s ease-out, box-shadow 0.3s ease-out, opacity 0.5s ease-out;
  transition-delay: 0ms, 0ms, var(--reveal-delay, 0ms);
}

.people-page .peoples-image {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.people-page .peoples-image img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.people-page .peoples-card.reveal-hidden {
  opacity: 0;
  transform: translateY(12px);
}

.people-page .peoples-card.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.people-extra-content {
  max-width: min(760px, 55%);
}

@media (hover: hover) and (pointer: fine) {
  .people-page .peoples-card:hover {
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 900px) {
  .people-page .people-apply-section {
    padding: 40px 16px 60px;
  }

  .people-page .people-apply-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .people-page .people-apply-media {
    border-radius: 18px;
  }

  .people-page .people-apply-media.is-collapsed {
    max-height: clamp(264px, 72vw, 504px);
  }

  .people-page .people-apply-action,
  .people-page .people-apply-toggle {
    padding: 14px 26px;
    font-size: 1.17em;
  }

  .people-page .people-apply-toggle {
    margin-top: 80px;
  }

  .people-extra-content {
    max-width: 100%;
  }

  .people-page .people-culture-bento {
    --card-width: 192px;
  }

  .people-page .people-culture-card {
    padding: 16.3px 30px;
  }

  .people-page .people-recruit-wrap {
    background-image: url("https://cdn.imweb.me/upload/S20200402f6a4097001dd3/68321a8167ca1.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    padding-bottom: clamp(220px, 60vw, 420px);
  }
}

@media (max-width: 720px) {
  .people-page .people-culture-bento {
    --card-width: calc(82vw * 0.8625);
    --edge-bleed: 0px;
    margin-inline: 0;
    width: 100%;
    padding-inline: 5px;
    scroll-padding-inline: 5px;
  }

  .people-page .people-culture-card {
    padding: 30px;
  }
}

@media (min-width: 1025px) {
  .people-page .people-culture-bento {
    display: block;
  }

  .people-page .people-culture-bento__grid {
    margin: 0;
  }
}

.people-page .peoples-body {
  padding: clamp(20px, 3vw, 28px) 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-break: keep-all;
  overflow: visible;
}

.people-title-section .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
}

.people-title-section.is-ready .char {
  animation: people-char-reveal 0.55s ease forwards;
  animation-delay: calc(var(--char-index, 0) * 0.07s);
}

@keyframes people-char-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .people-page .peoples-card {
    grid-template-columns: 1fr;
  }

  .people-page .peoples-grid {
    grid-template-columns: 1fr;
  }
}


@media (prefers-reduced-motion: reduce) {
  .people-title-section .char {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.people-title-mobile-break {
  display: none;
}

@media (max-width: 720px) {
  .people-title-mobile-break {
    display: block;
  }
}

@media (min-width: 721px) {
  .people-title-section {
    margin-left: calc(-1 * clamp(16px, 4vw, 32px));
    margin-right: calc(-1 * clamp(16px, 4vw, 32px));
  }

  .people-title-section h1 {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
  }
}
