@charset "utf-8";
/* =========================================================================
 * about.css — About us > 인사말 (피그마 5604:501)
 * ========================================================================= */

/* ============================ 서브 비주얼 ============================ */

.sv_greeting { background-image: url("../img/about/hero-greeting.png"); }


/* ============================ 인사말 본문 ============================ */
.greeting {
    position: relative;
    padding: 120px 0 260px;
    overflow: hidden;
}
/* THE-DAY GREETING 배경 워터마크 — 시안 폰트(SIMPLE CANDY) 이미지 사용 */
.greeting_wm {
    position: absolute;
    left: calc((100% - 1413px) / 2 + 20px);
    bottom: 13%;
    z-index: 0;
    width: min(1160px, 82%);
    aspect-ratio: 4585 / 576;
    background: url("../img/about/wm-greeting.png") no-repeat left center / contain;
    pointer-events: none;
    text-indent: -9999px;
    overflow: hidden;
}

.greeting_inner {
    position: relative;
    z-index: 1;
    max-width: 1413px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* 좌측 제목 */
.greeting_head {
    flex: 0 0 553px;
    max-width: 553px;
    font-size: 45px;
    line-height: 1.4;
    letter-spacing: -0.9px;
    font-weight: 700;
    color: #555;                 /* 기본색 (에디터 인라인 색상이 우선) */
}
.greeting_head b { color: #111; }

/* 우측 본문 (에디터 HTML: p/div 혼용 대응) */
.greeting_body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 30px; }
.greeting_txt p, .greeting_txt div { font-size: 18px; line-height: 1.5; color: #222; letter-spacing: -0.18px; }
.greeting_txt p { margin: 0 0 20px; }
.greeting_txt p:last-child { margin-bottom: 0; }
.greeting_sign { font-size: 18px; color: #555; }
.greeting_sign b { font-size: 20px; font-weight: 700; }

/* 소개 영상 (유튜브 자동재생) */
.greeting_video {
    position: relative;
    width: 100%;
    aspect-ratio: 2752 / 1368;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}
/* 유튜브 상하단 검은 여백(레터박스) 제거 — 컨테이너보다 세로로 키워 크롭 */
.greeting_video iframe {
    position: absolute;
    left: 0; top: -13%;
    width: 100%; height: 126%;
    border: 0; display: block;
}

/* =============================== 반응형 =============================== */
@media (max-width: 1024px) {
    /* .sv/.sv_en/.sv_ko 는 common.css 서브비주얼 반응형으로 통일(중복 제거) */
    .greeting { padding: 70px 0 150px; }
    .greeting_inner { flex-direction: column; gap: 30px; }
    .greeting_head { flex: none; max-width: none; font-size: 30px; }
    .greeting_wm { font-size: 70px; top: auto; bottom: 20px; opacity: .8; }
}

@media (max-width: 480px) {
    /* .sv/.sv_en/.sv_ko 는 common.css 서브비주얼 반응형으로 통일(중복 제거) */
    .greeting { padding: 48px 0 100px; }
    .greeting_head { font-size: 24px; }
    .greeting_txt p, .greeting_txt div { font-size: 15px; }
    .greeting_sign { font-size: 15px; }
    .greeting_sign b { font-size: 17px; }
    .greeting_wm {bottom: 70px; left:50%; transform: translateX(-50%); }
	
	.greeting_inner h2 br.none {display:none}
	
}
