@charset "UTF-8";
/* =========================================================
   About Page Styles (about.scss)
   ========================================================= */
/* 페이지 전체 스코프 */
.about-page {
  background-color: #000;
  color: #fff;
  /* 공통 텍스트 스타일 */
  /* --------------------------
     Hero Section
     -------------------------- */
  /* --------------------------
     Content Section
     -------------------------- */
  /* --------------------------
     Fade Animation
     -------------------------- */
}
.about-page h1,
.about-page h2,
.about-page h3 {
  font-weight: 700;
  line-height: 1.2;
}
.about-page p {
  color: #d1d1d1;
  line-height: 1.7;
}
.about-page .about-hero {
  position: relative;
  height: 60vh;
  background-color: #000;
  text-align: center;
  overflow: hidden;
  z-index: 0;
  justify-content: center;
  /* 🟡 텍스트 스타일 */
}
.about-page .about-hero .about-hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.about-page .about-hero .about-hero-text {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: visible;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(40px);
  animation: heroFadeUp 1.2s ease-out forwards;
  animation-delay: 0.2s;
}
@media (max-width: 768px) {
  .about-page .about-hero .about-hero-text {
    transform: translate(-50%, calc(-50% + 16vw));
  }
}
@media (max-width: 480px) {
  .about-page .about-hero .about-hero-text {
    transform: translate(-50%, calc(-50% + 20vw));
  }
}
.about-page .about-hero .about-hero-text h1 {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 12px;
}
.about-page .about-hero .about-hero-text p {
  font-size: 20px;
  opacity: 0.8;
  font-weight: 300;
  padding-bottom: 20px;
}
.about-page .about-hero .hero-underline {
  width: 0;
  height: 1px;
  background-color: #fff;
  margin: 20px auto 0;
  animation: expandLine 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
  margin-top: -5px;
}
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}
@keyframes expandLine {
  0% {
    width: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    width: 350px;
    opacity: 1;
  }
}
.about-page .about-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (min-width: 768px) {
  .about-page .about-section {
    grid-template-columns: 1fr 1fr;
    gap: 120px;
  }
}
.about-page .about-section .text-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}
.about-page .about-section .text-box p {
  font-size: 1.05rem;
}
.about-page .about-section .image-box img {
  width: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .about-page .about-section.reverse {
    grid-template-columns: 1fr 1fr;
  }
  .about-page .about-section.reverse .text-box {
    order: 2;
  }
  .about-page .about-section.reverse .image-box {
    order: 1;
  }
}
.about-page .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.about-page .fade-up.active {
  opacity: 1;
  transform: translateY(0);
}
.about-page .career-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.about-page .career-list .career-gap {
  height: 35px;
}
.about-page .career-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #d4d4d4;
  font-size: 1.05rem;
  line-height: 1.6;
}
.about-page .career-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.about-page .career-list .career-spacer {
  margin-bottom: 50px;
}

.about-page .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}
.about-page .social-links img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}
.about-page .social-links img:hover {
  transform: scale(1.12);
  opacity: 0.85;
}

.about-sns {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  /* 네이버 아이콘 크기 통일 */
  /* YouTube / Instagram 색감 유지 */
}
.about-sns .sns-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.25s ease;
  font-size: 20px;
}
.about-sns .sns-item i {
  font-size: 22px;
}
.about-sns .sns-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.about-sns .naver-icon svg {
  width: 22px;
  height: 22px;
}
.about-sns .fa-youtube {
  color: #ff4747;
}
.about-sns .fa-instagram {
  font-size: 28px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  -webkit-text-fill-color: transparent;
}

/* ===============================
   About: Media Section
================================= */
.about-page .about-media {
  margin-top: -100px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 25px 20px;
  text-align: center;
}
.about-page .media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .about-page .media-grid {
    grid-template-columns: 1fr;
  }
}
.about-page .media-grid .media-card {
  background: #111;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-page .media-grid .media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.85);
}
.about-page .media-grid .media-card img {
  width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}
.about-page .media-grid .media-card p {
  font-size: 1rem;
  color: #e0e0e0;
}