/* ============================================
   CEO Message Section
   ============================================ */

.ceo-message-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #faf9f6 0%, #f5f3ef 100%);
    position: relative;
    overflow: hidden;
}

.ceo-message-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ceo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 60px;
}

/* CEO Image */
.ceo-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.ceo-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ceo-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.ceo-image:hover img {
    transform: scale(1.05);
}

.ceo-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(26, 26, 46, 0.7) 100%
    );
    pointer-events: none;
}

/* CEO Text Content */
.ceo-text-wrapper {
    position: relative;
    padding: 40px 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.ceo-quote-mark {
    font-size: 120px;
    line-height: 1;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: -40px;
    opacity: 0.3;
}

.ceo-quote {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Noto Sans KR', sans-serif;
    margin-bottom: 40px;
    position: relative;
}

.ceo-message-content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #D4AF37;
}

.ceo-message-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
}

.ceo-message-content p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: #2a2a2a;
}

/* CEO Signature */
.ceo-signature {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ceo-name {
    font-size: 20px;
    color: #1a1a2e;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    margin-bottom: 16px;
}

.ceo-name span {
    font-size: 28px;
    font-weight: 700;
    margin-left: 12px;
    color: #D4AF37;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, #D4AF37 0%, transparent 100%);
    margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ceo-image-wrapper {
        max-width: 450px;
    }

    .ceo-quote {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .ceo-message-section {
        padding: 80px 0;
    }

    .ceo-content {
        gap: 40px;
    }

    .ceo-image-wrapper {
        max-width: 400px;
    }

    .ceo-quote {
        font-size: 26px;
    }

    .ceo-quote-mark {
        font-size: 80px;
        margin-bottom: -20px;
    }
}

@media (max-width: 768px) {
    .ceo-message-section {
        padding: 60px 0;
    }

    .ceo-quote {
        font-size: 22px;
    }

    .ceo-message-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .ceo-name {
        font-size: 18px;
    }

    .ceo-name span {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .ceo-quote {
        font-size: 20px;
    }

    .ceo-quote-mark {
        font-size: 60px;
        margin-bottom: -10px;
    }

    .ceo-message-content p {
        font-size: 15px;
    }

    .ceo-text-wrapper {
        padding: 20px 0;
    }
}
