/*
Theme Name: imaginus 
Description: imaginus Official Theme
Author: Manual Graphics
Version: 1.0
*/

/* Reset Styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea,
input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

figure {
  margin: 0;
}

button {
  background-color: transparent;
  outline: none;
  border: none;
  font-family: var(--ff-pretendard);
  cursor: pointer; /* 접근성을 위해 추가 */
}

html {
  font-size: 62.5%;
}

a {
  text-decoration: none;
  color: var(--cb);
}

/* CSS Variables */
:root {
  /* Colors */
  --cp1: #7c4bff;
  --cp2: #d4fcfc;
  --cp3: #1c223a;
  --cp4: #ebfefe;

  --cw: #fff;
  --cb: #000;

  /* Grays */
  --cg1: #252525;
  --cg2: #3d3d3d;
  --cg3: #525252;
  --cg4: #737373;
  --cg5: #969696;
  --cg6: #bdbdbd;
  --cg7: #d9d9d9;
  --cg8: #f0f0f0;
  --cg9: #fafafa;

  /* Lines */
  --line: #ccc;
  --linebk: #141414;

  /* Transitions */
  --tts: 0.3s;
  --ttm: 0.6s;
  --ttl: 1s;

  /* Fonts */
  --ff-pretendard:
    "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
    "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
  --ff-mono:
    "SF Mono", Monaco, Inconsolata, "Roboto Mono", Consolas, "Andale Mono",
    monospace;

  /* Font Sizes */
  --fs0: 1.2rem;
  --fs1: 1.4rem;
  --fs2: 1.6rem;
  --fs3: 1.8rem;
  --fs4: 2rem;
  --fs5: 2.2rem;
  --fs6: 2.4rem;
  --fs7: 2.8rem;
  --fs8: 3.2rem;
  --fs9: 4rem;
  --fs10: 6rem;
  --fsmax: 8rem;

  /* Viewport height fix for mobile */
  --vh: 1vh;
}

/* Common Styles */
::selection {
  background-color: var(--cb);
  color: var(--cw);
}
.off {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.on {
  opacity: 1;
  transform: translateY(0);
}
.animate-item {
  opacity: 0;
  transform: translateY(40px);
  --animation-delay: 0s;
}

.animate-item.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) var(--animation-delay),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) var(--animation-delay);
}

/* Utility Classes */
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.tal {
  text-align: left;
}
.ttu {
  text-transform: uppercase;
}
.ttc {
  text-transform: capitalize;
}

.title {
  font-size: var(--fs9);
  line-height: 1.2;
  font-weight: 600;
}

.sub-title {
  font-size: var(--fs6);
  font-weight: 500;
}

.maxw {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.maxws {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lmt {
  width: calc(100% - 80px);
  margin-left: auto;
  margin-right: auto;
}

/* Display utilities */
.po {
  display: block;
}
.mo {
  display: none;
}

/* Spacing utilities */
.nmt {
  margin-top: 0;
}
.nmb {
  margin-bottom: 0;
}
.npt {
  padding-top: 0;
}
.npb {
  padding-bottom: 0;
}

/* Flexbox utilities */
.fx {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.nogap {
  gap: 0;
}
.gap4 {
  gap: 4px;
}
.gap8 {
  gap: 8px;
}
.gap12 {
  gap: 12px;
}
.gap24 {
  gap: 24px;
}
.gap32 {
  gap: 32px;
}

.flx1 {
  flex: 1;
}
.flx2 {
  flex: 2;
}
.flx3 {
  flex: 3;
}

.fx2 > * {
  width: calc(50% - 12px);
}
.fx3 > * {
  width: calc(33.33333333333% - 16px);
}
.fx4 > * {
  width: calc(25% - 18px);
}

.fxjc {
  justify-content: center;
}
.fxjs {
  justify-content: space-between;
}
.fxac {
  align-items: center;
}
.fxafs {
  align-items: flex-start;
}
.fxafe {
  align-items: flex-end;
}
.fxas {
  align-items: stretch;
}
.fxdc {
  flex-direction: column;
}
.fxdr {
  flex-direction: row;
}
.fxnw {
  flex-wrap: nowrap;
}

/* Position utilities */
.ctw {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.cth {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.cent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Border radius */
.rd4 {
  border-radius: 4px;
}
.rd8 {
  border-radius: 8px;
}
.rd12 {
  border-radius: 12px;
}
.rd16 {
  border-radius: 16px;
}

/* Text overflow */
.ell {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal;
  display: block;
}

.ellmx {
  display: -webkit-box;
  max-height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* google icons */
.material-symbols-outlined {
  font-size: 32px;
  color: var(--cw);
  opacity: 0;
  transition: var(--tts);
}

.fonts-loaded .material-symbols-outlined {
  opacity: 1;
}
.icocb {
  color: var(--cb);
}
.icocw {
  color: var(--cw);
}
.ico16.material-symbols-outlined {
  font-size: 16px;
}
.ico20.material-symbols-outlined {
  font-size: 20px;
}
.ico24.material-symbols-outlined {
  font-size: 24px;
}
.ico32.material-symbols-outlined {
  font-size: 32px;
}

hr {
  width: 100%;
  background: var(--cb);
  height: 1px;
  border: none;
  margin: 0;
}

/* Custom Cursor - 접근성 개선 */
.use-custom-cursor {
  cursor: none;
}

.use-custom-cursor * {
  cursor: none;
}

/* 터치 디바이스에서는 커스텀 커서 비활성화 */
@media (hover: none) {
  .use-custom-cursor,
  .use-custom-cursor * {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }
}

.custom-cursor {
  position: fixed;
  top: -100px;
  left: -100px;
  width: 12px;
  height: 12px;
  background-color: var(--cp1);
  filter: drop-shadow(0px 0px 7px #ccc);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10010;
  transform: translate(-50%, -50%);
  transition: transform var(--tts);
}

.custom-cursor.on-interactive {
  transform: translate(-50%, -50%) scale(0.8);
}

/* Layout */
body {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  word-break: keep-all;
  font-family: var(--ff-pretendard);
  font-weight: 600;
  font-size: var(--fs3);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--cg1);
  background-color: var(--cw);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Header */
header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  z-index: 110;
  transition: var(--tts);
}
.menu-open header {
  background-color: transparent !important;
}
#hamburger-menu {
  background: rgb(162 123 206 / 10%);
  backdrop-filter: blur(10px);
  border-radius: 48px;
  height: 48px;
  width: 48px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: none;
}
#hamburger-menu span {
  width: 24px;
}
header ul {
  gap: clamp(14px, 2vw, 32px);
  height: 48px;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}
header ul li a {
  line-height: 1;
  text-transform: uppercase;
  color: var(--cg1);
  font-size: var(--fs4);
  white-space: nowrap;
}
.home header ul li a {
  color: var(--cw);
}
header ul li a:hover {
  color: var(--cp1);
  transition: 0.3s;
}
header.scrolled {
  background: var(--cw);
  /* backdrop-filter: blur(20px);
  */
}
.home header.scrolled #lang span,
.home header.scrolled ul li a {
  color: var(--cg1);
}

header .inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header-nav-wrap {
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.header-menu {
  flex: 1 1 auto;
  justify-content: flex-start;
}

.header-menu li {
  flex: 0 0 auto;
}

#logo img {
  display: block;
  height: 30px;
  width: auto;
}
#lang {
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}
.home #lang span {
  color: var(--cw);
}
#lang span {
  color: var(--cg1);
  font-size: var(--fs4);
}
.hamburger-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
}
.hamburger-button span {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 6px;
  background-color: var(--cp1);
  transition: var(--tts);
}
.hamburger-button span:last-child {
  margin-bottom: 0;
}

.hamburger-button.active span {
  background-color: white;
}

.hamburger-button.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-button.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-button.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: var(--cp1);
  z-index: 105;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
  display: flex;
  align-items: end;
  justify-content: center;
}

.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-container {
  height: 85%;
  width: 100%;
  padding: 2rem;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items {
}
.mobile-menu-items li {
  text-align: left;
}
.mobile-menu-items li a {
  text-transform: capitalize;
  color: var(--cw);
  font-size: var(--fs10);
  line-height: 1.4;
  transition: var(--ttm);
}
.mobile-menu-items li a:hover {
  color: var(--cp2);
}
.mobile-social .footer-contact {
  margin-bottom: 20px;
}
.mobile-social span {
  color: var(--cw) !important;
  font-size: var(--fs3);
}
.mobile-social a.btn {
  color: var(--cw);
  border: 1px solid var(--cw);
  font-size: var(--fs1);
  padding: 4px 16px;
}
#slogan {
  width: 300px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 2rem;
  box-sizing: border-box;
}

/* Container */
.container {
  margin: 0 auto;
  padding: 120px 0 120px;
}

.p-body {
  align-items: start;
  margin: 0px auto;
  box-sizing: border-box;
  flex-wrap: wrap;
  width: 100%;
}

/* footer */
/* ============================================
   Footer
   ============================================ */

.site-footer {
  border-top: 1px solid var(--cg5);
  padding: 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  align-items: flex-start;
}

.footer-col {
  min-width: 0;
}

.footer-copyright {
  font-size: var(--fs2);
  color: var(--cg1);
}

.footer-brand {
  font-size: var(--fs2);
  color: var(--cg1);
  line-height: 1.5;
}

.footer-address {
  font-size: var(--fs2);
  color: var(--cg1);
  line-height: 1.5;
  margin: 0 0 15px 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  padding-left: 0;
}

.contact-link {
  font-size: var(--fs2);
  color: var(--cg1);
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Sections */
.sec {
  padding: 120px 0;
}

/* Post Styles */
.post > * {
  margin-bottom: 24px;
}

.post > *:last-child {
  margin-bottom: 0;
}

.profile {
  flex-direction: row;
  font-size: var(--fs1);
  color: var(--cg3);
}

.profile img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

/* page-navigation */
.page-navigation {
  display: none;
}

/* contact */
.contact-info-container {
  gap: 0;
}
.contact-info {
  display: flex;
  gap: 3px;
  flex-direction: column;
}
.contact-map {
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}
.contact-item span {
  font-size: var(--fs2);
  color: var(--cg4);
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-item a,
.contact-item address {
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}
.article-grid {
  position: relative;
}

.article-grid .grid-sizer,
.article-grid .grid-item {
  width: calc(33.333% - 16px);
}

.article-grid .grid-item {
  margin-bottom: 24px;
}

.article-item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.article-item > a {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.article-thumbnail {
  position: relative;

  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
}
.article-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cp2);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.article-item:hover .article-thumbnail::after {
  opacity: 0.1;
}

.article-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.article-item:hover .article-thumbnail img {
  transform: scale(1.05);
}

.article-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 0;
}

.article-title {
  font-size: var(--fs3);
  font-weight: 600;
  line-height: 1.4;
}

.article-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--cg4);
}

.article-date {
  font-size: var(--fs2);
  color: var(--cg6);
}

.no-articles {
  text-align: center;
  padding: 80px 0;
  color: #888;
}

.article-section {
  margin-top: 120px;
}

.article-section .page-header {
  display: none;
}

.article-section .article-grid {
  margin-bottom: 40px;
}

#single-article .article-header .article-title {
  font-size: var(--fs8);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  margin: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--cg1);
  line-height: 1.4;
}

#single-article .article-header .article-date {
  font-size: 14px;
}

#single-article .article-thumbnail {
  margin-top: 24px;
  border-radius: 8px;
}

#single-article .article-thumbnail img {
  width: 100%;
  height: auto;
}

#single-article .article-content {
  padding: 40px 0;
}

.article-grid .grid-item {
}

/* home */

#intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.intro-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(133deg, #6d28d9, #391ca5);
  background-size: 400% 400%;

  -webkit-animation: AnimationName 8s ease infinite;
  -moz-animation: AnimationName 8s ease infinite;
  animation: AnimationName 8s ease infinite;
}
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.intro-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

#intro-screen .intro-title {
  color: var(--cw);
  font-size: clamp(2.84rem, 4.19vw, 5.94rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin: 0;
}

.intro-line {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}

.intro-line:last-child {
  margin-bottom: 0;
}

#intro-screen .intro-line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  white-space: pre;
  font-size: clamp(2.16rem, 3.24vw, 4.32rem);
  color: var(--cw);
}

.intro-mobile-break {
  display: none;
}

#intro-screen.active .intro-line .char {
  animation: charSlideUp 0.6s ease forwards;
}

@keyframes charSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#intro-screen.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

#page-home {
  opacity: 0;
  transition: opacity 0.5s ease;
  padding-top: 0;
}

#page-home.visible {
  opacity: 1;
}

.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slides-wrapper .wp-block-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slides-wrapper .wp-block-cover.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slides-wrapper .wp-block-cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slides-wrapper .wp-block-cover__inner-container {
  position: absolute;
  bottom: 40px;
  left: 40px;
  text-align: left;
  width: auto;
  gap: 0px;

  border-radius: 3px;
  display: flex;
}
.hero-slides-wrapper .wp-block-cover h2 {
  font-size: var(--fs6);
  color: var(--cg4);
  overflow: hidden;
  padding: 5px 30px;
  background-color: var(--cp2);
}

.hero-slides-wrapper .wp-block-cover p {
  font-size: var(--fs7);
  color: var(--cw);
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 20px;
  opacity: 1;
  background-color: var(--cp1);
}

.hero-slides-wrapper .wp-block-cover h2.has-text-animation {
  display: block;
}

.hero-slides-wrapper .wp-block-cover.active h2.has-text-animation .char {
  animation: charSlideUp 0.6s ease forwards;
}

.hero-slides-wrapper .wp-block-cover a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-bullets {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 12px;
  z-index: 3;
}

.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.bullet:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.bullet.active {
  background: var(--cp2);
  width: 30px;
  border-radius: 5px;
}

.upcoming-works-section {
  padding: 100px 0;
  background: #fff;
}

.section-more {
  text-align: center;
  margin-top: 40px;
  display: none;
}

.more-link {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.more-link:hover {
  background-color: #000;
  color: #fff;
}

.no-articles {
  text-align: center;
  padding: 60px 0;
  color: #999;
  font-size: 16px;
}

/* ============================================
   Notice Section
   ============================================ */

.notice-section {
  margin-top: 120px;
}
.notice-item {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 30px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--cg5);
}

.notice-category {
  font-size: var(--fs3);
  color: var(--cg4);
}

.notice-title {
  font-size: var(--fs3);
  color: var(--cg4);
}

.notice-title a {
  color: var(--cg4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.notice-title a:hover {
  color: var(--cp1);
}

.notice-date {
  font-size: var(--fs3);
  color: var(--cg4);
  text-align: right;
}

.no-notices {
  text-align: center;
  padding: 60px 0;
  color: #999;
  font-size: 16px;
}

.section-title {
  font-size: var(--fs4);
  font-weight: 700;
  color: var(--cg1);
  text-transform: uppercase;
  line-height: 1.3;
}

.th-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.no-works {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding: 60px 0;
}

.about-banner-section {
  overflow: hidden;
  padding: 150px 0;
}

.about-banner {
  position: relative;
  width: 80%;
  max-width: 1600px;
  height: auto;
  aspect-ratio: 2 / 1;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  background: linear-gradient(135deg, #5234c1 0%, #6d28d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    width 0.8s ease,
    opacity 0.8s ease;
}

.about-banner.visible {
  width: 100%;
  opacity: 1;
}

.banner-content {
  text-align: center;
  color: white;
  width: 60%;
  max-width: 600px;
}
.banner-content a img {
  width: 100%;
  height: auto;
}
/* about */
#page-about {
  padding-top: 20vh;
  padding-bottom: 0;
}

#page-labels {
  padding-top: 20vh;
  padding-bottom: 0;
}

#works-list,
#notice-list {
  padding-top: 20vh;
}

#page-contact {
  padding-top: 20vh;
}

.about-intro-section {
  margin-bottom: 80px;
}

.intro-layout {
  gap: 0;
  align-items: flex-start;
}

.intro-title {
  font-size: var(--fs4);
  font-weight: 700;
  color: var(--cg1);
  line-height: 1.3;
  text-transform: uppercase;
}

#page-about .intro-title {
  text-transform: none;
}

.intro-text {
  font-size: var(--fs4);
  line-height: 1.6;
  color: var(--cg1);
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.about-labels-section {
  position: relative;
  padding-bottom: 100px;
}

.labels-layout {
  gap: 0;
  align-items: flex-start;
  position: relative;
}

#page-labels .labels-layout + .labels-layout {
  margin-top: 40px;
}

#page-labels .about-labels-section .labels-layout:last-child .labels-left,
#page-labels .about-labels-section .labels-layout:last-child .labels-right {
  flex: 0 0 50%;
  max-width: 50%;
}

#page-labels .about-labels-section .labels-layout:last-child .labels-left {
  box-sizing: border-box;
  padding-right: 24px;
}

#page-labels .about-labels-section .labels-layout:last-child .labels-right {
  box-sizing: border-box;
  padding-top: 12px;
}

.labels-title {
  font-size: var(--fs4);
  font-weight: 700;
  color: var(--cg1);
  line-height: 1.3;
}

.labels-text {
  font-size: var(--fs4);
  line-height: 1.8;
  color: var(--cg1);
}

.labels-right {
  position: relative;
}

.labels-detail-panel {
  position: sticky;
  top: 20vh;
  min-height: 320px;
  padding-left: 0;
}

.labels-detail-content {
  display: grid;
  min-height: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.28s ease,
    transform 0.36s ease;
}

.labels-detail-entry {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.3s ease,
    visibility 0s linear 0.22s;
}

.labels-detail-entry.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.labels-detail-panel:not(.is-ready) .labels-detail-content {
  opacity: 0;
  transform: translateY(12px);
}

.labels-detail-panel.is-ready .labels-detail-content {
  opacity: 1;
  transform: translateY(0);
}

.labels-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 72px;
  margin-top: 0;
}

.label-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.label-item:last-child {
  border-bottom: none;
}

.label-header {
  display: grid;
  grid-template-columns: 40px 50% 1fr auto;
  gap: 0;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.3s ease;
  align-items: center;
}

.label-header:hover {
  opacity: 0.7;
}

.label-num {
  font-size: var(--fs4);
  line-height: 1.5;
  color: var(--cg1);
}

.label-name-kr {
  font-size: var(--fs4);
  line-height: 1.5;
  color: var(--cg1);
}

.label-name-en {
  font-size: var(--fs);
  line-height: 1.5;
  text-align: right;
  color: var(--cg1);
}

.label-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--cg1);
  display: none;
}

.label-item.active .label-toggle {
  transform: rotate(180deg);
}

.label-item.active .label-num,
.label-item.active .label-name-kr,
.label-item.active .label-name-en {
  color: var(--cp1);
}

.label-content {
  display: none;
  overflow: hidden;
}

.labels-detail-panel .label-content-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.label-content-inner {
  padding: 16px 0;
}

#label-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.label-logo {
  border: 1px solid var(--cg7);
  border-radius: 3px;
  box-sizing: border-box;
}

.label-logo img {
  max-width: 160px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.label-desc {
  margin-bottom: 24px;
}

.label-creator strong {
  display: block;
}
.label-desc p {
  font-size: var(--fs);
  line-height: 1.7;
  color: var(--cg4);
}

.label-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.label-gallery-item figcaption {
  font-size: var(--fs2);
  color: var(--cg3);
  margin-top: 4px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.label-gallery-item figcaption .caption-platform {
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  background-color: var(--cp2);
  color: var(--cg4);
}

.label-gallery-item figcaption .caption-title {
  color: var(--cw);
  background-color: var(--cp1);
  overflow: hidden;
  display: block;
  padding: 3px 8px;
}

.label-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  object-fit: cover;
}

.label-text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: var(--tts);
  font-size: var(--fs1);
  color: var(--cg3);
  padding: 16px;
  box-sizing: border-box;
  pointer-events: none;
}
.label-on {
  opacity: 0;
  text-align: left;
}
.label-off {
  opacity: 1;
  text-align: right;
}
.toggle-switch-state input:checked + .slider .label-on {
  opacity: 1;
}
.toggle-switch-state input:checked + .slider .label-off {
  opacity: 0;
}

/* 팝업 오버레이 */
.label-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(124, 75, 255, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.label-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* 팝업 본체 */
.label-popup {
  position: relative;
  background: var(--cw);
  border-radius: 4px;
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.label-popup-overlay.active .label-popup {
  transform: translateY(0);
}

/* 닫기 버튼 */
.label-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  z-index: 10;
}
.label-popup-close span {
  color: var(--cg2);
  cursor: pointer;
}

.label-popup-close:hover {
  color: var(--cg1, #fff);
}

.label-popup-close .material-symbols-outlined {
  font-size: 28px;
}

/* 팝업 콘텐츠 */
.label-popup-content {
  padding: 40px;
}

.label-popup-content #label-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.label-popup-content .label-logo {
  border: 1px solid var(--cg7, #333);
  border-radius: 3px;
  padding: 20px;
  width: 120px;
}

.label-popup-content .label-logo img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.label-popup-content .label-creator {
  display: flex;
  flex-direction: column;
}

.label-popup-content .label-creator strong {
  display: block;
  font-size: var(--fs2, 13px);
  color: var(--cg4, #666);
  margin-bottom: 4px;
}

.label-popup-content .label-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.label-popup-content .label-gallery-item {
  margin: 0;
}

.label-popup-content .label-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}

.label-popup-content .label-gallery-item figcaption {
  font-size: var(--fs1);
  color: var(--cg4, #666);
  margin-top: 4px;
  display: flex;
  gap: 0;
}
.label-popup-content .label-gallery-item figcaption .caption-platform {
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 8px;
  opacity: 1;
  background-color: var(--cp2);
  color: var(--cg4);
}
.label-popup-content .label-gallery-item figcaption .caption-title {
  color: var(--cw);
  background-color: var(--cp1);
  overflow: hidden;
  display: block;
  padding: 3px 8px;
}

/* works */
.toggle-switch-state {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 42px;
}
.toggle-switch-state input {
  display: none;
}
.view-toggle .slider {
  border-radius: 999px;
  border: 1px solid var(--cg7);
  width: 100%;
  height: 100%;
  position: relative;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: var(--fs1);
  color: var(--cg5);
  justify-content: space-between;
}
.view-toggle .slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 9px;
  top: 10px;
  background-color: var(--cp1);
  border-radius: 50%;
  transition: var(--tts);
  z-index: 1;
}
.toggle-switch-state input:checked + .slider {
}
.toggle-switch-state input:checked + .slider::before {
  transform: translateX(46px);
}

#works-list-ul.gallery-mode {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  row-gap: 40px;
}
.work-item.gallery .work-details {
  display: none !important;
}
.work-item.gallery .ico32.material-symbols-outlined {
  font-size: 24px;
}
.work-item .work-content .work-meta {
  line-height: 1;
}
.work-item.gallery .work-card {
  gap: 12px;
  flex-direction: column;
}
.work-item .work-thumbnail a {
  position: relative;
}
.work-item .work-thumbnail a .work-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cp1);
}
.work-item.gallery .work-card .work-title a {
  font-size: var(--fs3);
}
.work-item.gallery .work-card .work-status {
  font-size: var(--fs2);
}
.work-item.gallery .work-details {
  display: none;
}
#works-list .th-list {
  row-gap: 40px;
}
#works-list #works-list-ul.gallery-mode {
  row-gap: 32px;
}
.work-title a {
  width: 100%;
  display: flex;
  font-size: var(--fs6);
}
.works-filter {
  margin-bottom: 30px;
}
.work-item {
  width: 100%;
}
.work-thumbnail a img {
  border-radius: 4px;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
}
.work-details {
  border-top: 1px solid var(--cg7);
  margin-top: 20px;
  padding-top: 20px;
}
.home .work-details {
  display: none;
}
.work-detail-item span {
  font-size: var(--fs2);
}
.detail-label {
  color: var(--cg5);
}
.work-status {
  color: var(--cg5);
}
/* works-single */
#single-works {
  padding-bottom: 40px;
}
#single-works .works-header {
  text-align: center;
  margin-bottom: 2rem;
}

#single-works .works-header h1 {
  font-size: var(--fs8);
  text-align: left;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
#single-works .works-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
#single-works .works-thumbnail {
  border-radius: 4px;
  overflow: hidden;
}
#single-works .works-statement {
  margin-bottom: 60px;
  margin-top: 4rem;
}
#single-works .works-stillcut {
  margin-bottom: 60px;
}
.work-meta-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  margin: 0;
}
.work-meta-grid dt {
  color: var(--cg5);
  font-size: var(--fs2);
  margin: 0;
}
.work-meta-grid dd {
  color: var(--cg1);
  font-size: var(--fs2);
  margin: 0;
}
#single-works .section-title {
  font-size: var(--fs4);
  font-weight: 700;
  margin-bottom: 10px;
}
.stillcut-gallery {
  max-width: 100%;
  width: 50%;
  border-radius: 4px;
  overflow: hidden;
  clip-path: inset(0 round 4px);
}
.stillcut-gallery {
  visibility: hidden;
}
.stillcut-gallery.slick-initialized {
  visibility: visible;
}

.stillcut-gallery .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}
.stillcut-gallery .slick-list {
  overflow: hidden;
  border-radius: 4px;
  clip-path: inset(0 round 4px);
  padding-top: 0 !important;
}
.stillcut-gallery .slick-slide {
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  clip-path: inset(0 round 4px);
}
.stillcut-gallery .slick-slide > div {
  border-radius: 4px;
  overflow: hidden;
  clip-path: inset(0 round 4px);
}
.stillcut-gallery .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}
.stillcut-gallery .slick-track {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}
.stillcut-gallery .slick-slide {
  float: none;
}
#single-works .stillcut-gallery .slide img {
  border-radius: 4px;
  object-fit: cover;
  display: block;
  width: 100%;
  clip-path: inset(0 round 4px);
}
#single-works .stillcut-gallery .slide {
  border-radius: 4px;
  overflow: hidden;
  clip-path: inset(0 round 4px);
}
#single-works .stillcut-gallery::before {
  display: none;
}

.works-related {
  background: var(--cg8);
  padding: 60px 0 120px;
}
#single-works .works-related h2.section-title {
  font-size: var(--fs5);
}
.works-related .works-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.works-related .works-list .work-card {
  gap: 8px;
  flex-direction: column;
}
.works-related .works-list .work-card .work-title a {
  font-size: var(--fs3);
}
.works-related .works-list .work-card .work-status {
  font-size: var(--fs2);
}
.works-related .works-list .work-card .work-details {
  display: none;
}

.work-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.work-thumbnail .thumbnail-wrapper {
  overflow: hidden;
  border-radius: 4px;
}

.work-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.4s ease;
}

.work-item:hover .work-thumbnail img {
  transform: scale(1.05);
}

.work-thumbnail::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cp1);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.work-item:hover .work-thumbnail::after {
  opacity: 0;
}

.related-thumb {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f3f6;
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.related-title {
  margin: 0.6rem 0 0;
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 18px);
}

/* notice */
.page-header {
  margin-bottom: 12px;
}
.page-title {
  font-size: var(--fs10);
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}
.notice-filter {
  margin-bottom: 30px;
}
.filter-tab {
  border: none;
  padding: 12px 24px;
  font-size: var(--fs2);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 4px;
  color: var(--cg3);
}
.filter-tab:hover {
  background-color: var(--cg8);
}
.filter-tab.active {
  background-color: var(--cp1);
  color: var(--cw);
}
.notice-list {
  display: flex;
  flex-direction: column;
}
.notice-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--cg7);
  transition: background-color 0.2s ease;
}
.notice-item:hover {
  background-color: var(--cg9);
}
.notice-item:last-child {
  border-bottom: none;
}
.notice-category {
  min-width: 60px;
  margin-right: 30px;
}
.category-label {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
/*
.notice-item[data-category="뉴스"] .category-label {
    color: #1976d2;
}
.notice-item[data-category="공지"] .category-label {
    color: #7b1fa2;
}
.notice-item[data-category="IR"] .category-label {
    color: #388e3c;
}
.notice-item[data-category="전체"] .category-label {
    color: #666;
}
*/
.notice-content {
  flex: 1;
  padding-right: 20px;
}
.notice-single .notice-title {
  font-size: var(--fs8);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  margin: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: var(--cg1);
  line-height: 1.4;
}
.post {
  color: var(--cg2);
}
.post-navigation {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding: 16px 0 0;
}
.post-navigation .nav-item {
  flex: 1;
  font-size: var(--fs2);
  font-weight: 600;
  color: var(--cg4);
}
.post-navigation .nav-item a {
  background: var(--cp4);
  border: none;
  padding: 8px 24px;
  cursor: pointer;
  border-radius: 3px;
}
.post-navigation .nav-item a:hover {
}
.post-navigation .nav-list a {
  background: var(--cw);
}
.nav-next {
  text-align: right;
}
.nav-link {
  text-align: right;
}
.nav-prev .nav-link {
  text-align: left;
}
.nav-icon {
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 4px;
}
.nav-list {
  text-align: center;
}
.notice-title a {
  color: var(--cg3);
  text-decoration: none;
  transition: color 0.2s ease;
}
.notice-title a:hover {
  color: var(--cp1);
}
.notice-date {
  min-width: 100px;
  text-align: right;
  margin-left: auto;
}

.notice-date time {
  color: var(--cg5);
  font-size: var(--fs2);
}

.lang-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2000;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lang-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.lang-modal-dialog {
  position: relative;
  min-width: 280px;
  padding: 28px 24px 22px;
  border-radius: 8px;
  background: var(--cw);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}
.lang-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--cg4);
}
.lang-modal-title {
  font-size: var(--fs4);
  font-weight: 600;
  color: var(--cg1);
  text-align: center;
}

/* No Notices */
.no-notices {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-notices p {
  font-size: 1.1rem;
  margin: 0;
}
