/* About Us Page Styles */

/* Page Body */
.about-us-page {
    background-color: var(--color-white);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../../images/about-us/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 2;
}

/* Hero Main Container */
.hero-main-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: flex-start;
    justify-content: center;
    width: 730px;
    max-width: 90vw;
    margin-top: 0;
    z-index: 10;
    position: relative;
}

/* Hero Text Container */
.hero-text-container {
    width: 100%;
}

.hero-main-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--color-white);
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
    width: 100%;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-description {
    font-family: var(--font-family-secondary);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    color: #F5F5F6;
    line-height: 1.6;
    letter-spacing: -0.01em;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-description p {
    margin-bottom: 0;
    white-space: nowrap;
}

/* 빈 line3 숨김 (다른 언어들은 태블릿에서 2줄만 필요) */
.hero-description p:empty {
    display: none;
}

.container {
    max-width: 1635px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(40px, 5vw, 80px);
    box-sizing: border-box;
}

.section-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: 24px;
    color: #070d17;
    line-height: 30px;
    letter-spacing: -0.01em;
    margin: 0 0 60px 0;
    width: 100%;
    text-align: left;
}

/* Desktop (1024px and above): Show desktop-only, Hide tablet/mobile-only */
@media (min-width: 1024px) {
    .desktop-only,
    .tablet-desktop-only {
        display: block;
    }

    .tablet-only,
    .mobile-only,
    .tablet-mobile-only {
        display: none;
    }
}

/* Hide mobile breaks on desktop */
.mobile-break::after {
    display: none !important;
}

/* About Container */
.about-container {
    padding: clamp(60px, 7.5vw, 120px) 0 clamp(30px, 3.75vw, 60px);
    background: var(--color-white);
    overflow-x: hidden; /* 가로 스크롤 방지 */
}

.about-content-container {
    position: relative;
    width: 100%;
    height: clamp(545.6px, 54.4375vw, 871px);
}

.about-image {
    position: absolute;
    border-radius: clamp(20px, 2vw, 32px);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: inherit;
}

.about-image-1 {
    left: calc(50% - clamp(549px, 34.3125vw, 549px));
    top: clamp(61.25px, 6.125vw, 98px);
    width: clamp(213.75px, 21.375vw, 342px);
    height: clamp(263.75px, 26.375vw, 422px);
    transform: translateX(-50%);
    background-image: url('../../images/about-us/about-container-1.webp');
}

.about-image-2 {
    left: calc(50% + clamp(305px, 19.0625vw, 305px));
    bottom: 0;
    width: clamp(366.25px, 36.625vw, 586px);
    height: clamp(243.75px, 24.375vw, 390px);
    transform: translateX(-50%);
    background-image: url('../../images/about-us/about-container-2.webp');
}

.about-image-3 {
    left: calc(50% + clamp(549px, 34.3125vw, 549px));
    top: 0;
    width: clamp(213.75px, 21.375vw, 342px);
    height: clamp(220px, 22vw, 352px);
    transform: translateX(-50%);
    background-image: url('../../images/about-us/about-container-3.webp');
    background-position: 75% center;
}

.about-text-container {
    position: absolute;
    left: 50%;
    top: clamp(37.5px, 3.75vw, 60px);
    transform: translateX(-50%);
    width: clamp(290px, 29vw, 464px);
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 1.5vw, 24px);
    align-items: flex-start;
}

.about-heading {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: clamp(30px, 3vw, 48px);
    color: #131923;
    line-height: normal;
    letter-spacing: -0.02em;
    margin: 0;
    width: 100%;
    text-align: left;
}

.about-description {
    font-family: var(--font-family-secondary);
    font-size: clamp(12.5px, 1.25vw, 20px);
    font-weight: var(--font-weight-medium);
    line-height: clamp(17.5px, 1.75vw, 28px);
    color: #40454c;
    letter-spacing: -0.01em;
    margin: 0;
    width: 100%;
    text-align: left;
}

/* Identity Container */
.identity-container {
    padding: 60px 0 120px;
    background: var(--color-white);
    overflow-x: hidden; /* 가로 스크롤 방지 */
}

.identity-subtitle {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: 48px;
    color: #131923;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 80px 0;
    width: 100%;
    text-align: left;
}

.identity-content-container {
    position: relative;
    width: 100%;
}

.identity-row {
    display: flex;
    flex-direction: row;
    gap: clamp(60px, 8.5vw, 140px);
    margin-bottom: clamp(60px, 5vw, 80px);
    transition: gap 0.3s ease;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    flex-wrap: nowrap;
}

.identity-item {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.2s ease;
}

.vision-container,
.mission-container {
    width: calc((100% - clamp(60px, 8.5vw, 140px)) / 2);
    max-width: 500px;
    min-width: 300px;
    flex-shrink: 1;
}

.values-container {
    width: 100%;
    max-width: 100%;
}

.identity-image {
    border-radius: clamp(16px, 1.5vw, 24px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: clamp(350px, 28vw, 454px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.1),
        0 3px 12px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.identity-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.14),
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
}

.identity-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.03) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.identity-image:hover::before {
    opacity: 0;
}

.vision-image {
    background-image: url('../../images/about-us/identity-container-1.jpg');
}

.mission-image {
    background-image: url('../../images/about-us/identity-container-2.jpg');
}

.values-image {
    height: clamp(250px, 19vw, 312px);
    background-image: url('../../images/about-us/values-container.jpg');
    transform: translateY(-20px);
    width: 100%;
}

.values-container .identity-text-container {
    padding-left: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    left: 0;
}

.values-image:hover {
    transform: translateY(-20px);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.1),
        0 3px 12px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
}

.values-image::before {
    opacity: 0;
}

.values-image:hover::before {
    opacity: 0;
}

.identity-text-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-left: 0;
    transition: opacity 0.3s ease;
}

.identity-item-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: clamp(28px, 2.2vw, 36px);
    color: #131923;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0 48px;
}

.identity-item-description {
    font-family: var(--font-family-secondary);
    font-size: clamp(18px, 1.3vw, 21px);
    font-weight: var(--font-weight-medium);
    color: #40454c;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0 48px;
}

.identity-item-description p {
    margin: 0;
}

.identity-item-description ul {
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 30px;
}

.identity-item-description li {
    margin-bottom: 0;
    line-height: 1.4;
}

.identity-item-description li:last-child {
    margin-bottom: 0;
}

/* Vision과 Mission 개별 패딩 설정 */
.vision-container .identity-item-description {
    padding: 0 54px 0 48px;
}

.mission-container .identity-item-description {
    padding: 0 92px 0 48px;
}

/* Business Growth Journey Section */
.business-growth-section {
    padding: 60px 0 120px;
    background: var(--color-white);
    overflow-x: hidden; /* 가로 스크롤 방지 */
}

.business-growth-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.business-growth-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: 48px;
    line-height: 58px;
    color: #131923;
    margin: 0;
    letter-spacing: -0.02em;
}

html[lang="en"] .business-growth-title {
    font-size: 48px;
    line-height: 58px;
}

.business-growth-description {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    color: #40454c;
    /* 1600px 부근에서 줄바꿈 유도를 방지하기 위해 가변 폭 적용 */
    width: clamp(760px, 57.8vw, 925px);
    max-width: 100%;
    margin: 0;
    letter-spacing: -0.01em;
}

/* 영어 버전: 텍스트가 더 길어서 컨테이너를 더 넓게 (데스크톱/태블릿만) */
@media (min-width: 768px) {
    html[lang="en"] .business-growth-description {
        width: 100%;
        max-width: 100%;
    }
}

.business-growth-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.growth-item {
    display: flex;
    flex-wrap: wrap;
    /* 여유 마진 확보: 2.0vw로 줄여 1540px 부근 줄바꿈 방지 */
    gap: clamp(24px, 2vw, 36px);
    align-items: flex-start;
    width: 100%;
}

.growth-image {
    /* 여유 마진 확보를 위해 계수 소폭 하향 */
    width: clamp(520px, 40vw, 650px);
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.1),
        0 3px 12px rgba(0, 0, 0, 0.06),
        0 1px 6px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.growth-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    z-index: 1;
}

.growth-image-2021 {
    height: 258px;
    background-image: url('../../images/about-us/growth-2021.webp');
}

.growth-image-2022 {
    height: 482px;
    background-image: url('../../images/about-us/growth-2022.webp');
}

.growth-image-2023 {
    height: 457px;
    background-image: url('../../images/about-us/growth-2023.webp');
}

.growth-image-2025 {
    height: 371px;
    background-image: url('../../images/about-us/growth-2025.webp');
}

.growth-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    /* 이미지 축소에 맞춰 텍스트 영역도 유연하게 축소 (여유 마진 반영) */
    width: clamp(560px, 45.5vw, 750px);
    padding-top: 48px;
    padding-left: clamp(24px, 1.8vw, 48px);
    /* 수축 허용으로 경계 해상도에서 줄바꿈 방지 */
    flex-shrink: 1;
}

.growth-year-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 44px;
}

.growth-year {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: 36px;
    line-height: 44px;
    color: #131923;
    margin: 0;
    letter-spacing: -0.01em;
}

.growth-period {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: 24px;
    line-height: 44px;
    color: #131923;
    margin: 0;
    letter-spacing: -0.01em;
}

.growth-timeline-list {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    color: #40454c;
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 30px;
    letter-spacing: -0.01em;
}

.growth-timeline-list li {
    margin-bottom: 0;
}

.growth-timeline-list li:last-child {
    margin-bottom: 0;
}

/* 러시아어 화면에서만 2023-24 섹션의 7번째 항목 숨김 */
html[lang="ru"] .growth-item[data-name="Growth Item 2023-24"] .growth-timeline-list li:nth-child(7) {
    display: none;
}

/* 러시아어 화면에서만 2025 섹션의 3번째 항목 숨김 */
html[lang="ru"] .growth-item[data-name="Growth Item 2025"] .growth-timeline-list li:nth-child(3) {
    display: none;
}

.growth-timeline-list li strong {
    font-weight: 800; /* ExtraBold */
}

/* From KOMEDICLUB to FACEWEB Section */
.komediclub-faceweb-section {
    padding: 60px 0 120px;
    background: var(--color-white);
    overflow-x: hidden; /* 가로 스크롤 방지 */
}

.komediclub-faceweb-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.komediclub-faceweb-subtitle {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-black);
    font-size: 48px;
    line-height: 58px;
    color: #131923;
    margin: 0;
    letter-spacing: -0.02em;
}

html[lang="en"] .komediclub-faceweb-subtitle {
    font-size: 40px;
    line-height: 50px;
}

.komediclub-faceweb-description {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    color: #40454c;
    width: 925px;
    max-width: 100%;
    margin: 0;
    letter-spacing: -0.01em;
}

.komediclub-faceweb-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

/* KOMEDICLUB Container */
.komediclub-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.komediclub-background {
    position: relative;
    width: 960px;
    height: 286px;
    background: #e6edf8;
    border-radius: 143px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 내부 절대 positioned 요소가 밖으로 넘치지 않도록 클리핑 */
    overflow: hidden;
}

.komediclub-image-wrapper {
    position: absolute;
    left: calc(50% - 305px);
    top: 23px;
    width: 260px;
    height: 240px;
    overflow: hidden;
    transform: translateX(-50%);
}

.komediclub-image {
    width: 100%;
    height: 100%; /* 래퍼 비율을 그대로 채움 */
    object-fit: contain;
    display: block;
}

.komediclub-list {
    position: absolute;
    left: calc(50% - 115px);
    top: 145px;
    width: 526px;
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    color: #40454c;
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 30px;
    letter-spacing: -0.01em;
}

.komediclub-list li {
    margin-bottom: 0;
}

.komediclub-list li:last-child {
    margin-bottom: 0;
}

.komediclub-title-text {
    position: absolute;
    left: calc(50% - 33.5px);
    top: calc(50% - 58px);
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-weight: var(--font-weight-black);
    font-size: 24px;
    line-height: 44px;
    color: #131923;
    margin: 0;
    text-align: center;
    white-space: pre;
}

/* Arrow Icon */
.komediclub-faceweb-arrow {
    width: 70px;
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* FACEWEB Container */
.faceweb-container {
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: center;
    background: #131923;
    border-radius: 220px;
    padding: 0;
    overflow: hidden;
}

.faceweb-image-wrapper {
    width: 620px;
    height: 440px;
    flex-shrink: 0;
    border-radius: 220px;
    overflow: hidden;
    position: relative;
}

.faceweb-image {
    width: 100%;
    height: 100%;
    background-image: url('../../images/about-us/faceweb-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 220px;
    position: relative;
}

.faceweb-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 220px;
}

.faceweb-text-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 740px;
    padding-right: 80px;
    flex-shrink: 0;
}

.faceweb-title-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.faceweb-title {
    font-family: 'Inter', sans-serif;
    font-weight: var(--font-weight-black);
    font-size: 36px;
    line-height: 44px;
    color: var(--color-white);
    margin: 0;
    white-space: pre;
}

.faceweb-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 44px;
    color: var(--color-white);
    margin: 0;
    white-space: pre;
}

.faceweb-list {
    font-family: var(--font-family-secondary);
    font-size: 20px;
    font-weight: var(--font-weight-medium);
    line-height: 28px;
    color: var(--color-white);
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 30px;
    letter-spacing: -0.01em;
    width: 100%;
}

.faceweb-list li {
    margin-bottom: 0;
}

.faceweb-list li:last-child {
    margin-bottom: 0;
}

/* Footer */





