/* ===========================
   CEO 인사말 페이지 전용 스타일
   greeting.css
=========================== */

/* ===========================
   페이지 헤더 스타일
=========================== */
.page-header {
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.2;
}

.page-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
    border-radius: 3px;
}

/* ===========================
   CEO 인사말 섹션 스타일
=========================== */
.en-subtitle {
    color: #00bcd4;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    display: block;
}

.main-message {
    font-size: 28px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.main-message strong {
    font-weight: 800;
    color: #1a2c5b;
}

.greeting-body {
    margin-top: 40px;
}

.greeting-intro {
    font-size:1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px 0;
}

.greeting-intro strong {
    font-weight: 700;
}

.greeting-text {
    color: #555;
    margin: 0;
}

.ceo-image-wrapper {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.ceo-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.ceo-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 44, 91, 0.05) 0%, rgba(0, 188, 212, 0.05) 100%);
    pointer-events: none;
}



@media (max-width: 1200px) {
    .main-message {font-size:1.5rem;}
}
