.ceo-section {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.greeting-section {
  background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  color: #222;
  padding: 40px;
  display: flex;
  justify-content: end;
}

.greeting-img {
  display: flex;
  justify-content: center;
}

.greeting-img img {
  width: 70%;
  border-radius: 12px;
  border: 4px solid #f5f7fa;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 8px rgba(255, 255, 255, 0.3);
  background: linear-gradient(145deg, #ffffff, #eaeaea);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.greeting-inner {
  max-width: 1100px;
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.greeting-left {
  /* flex: 0 0 280px; */
  border-left: 4px solid #1b4ef0;
  padding-left: 20px;
}

.greeting-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.title-line {
  width: 40px;
  height: 3px;
  background: #4cc9f0;
  margin-bottom: 16px;
  border-radius: 2px;
}

.greeting-subtitle {
  font-size: clamp(15px, 2vw, 25px);
  color: #152b3e;
  font-family: "Noto Serif KR", serif;
  font-weight: 500;
}

.greeting-right {
  flex: 1;
  line-height: 1.9;
  padding-left: 20px;
  justify-content: center;
}

.greeting-right p {
  font-family: 'paperlogy-regular';

  margin-bottom: 28px;
  font-size: 1.2rem;
  color: #333;
}

.greeting-right strong {
  color: #0d3a92;
  font-weight: 700;
}

.highlight {
  color: #007bff;
  font-weight: 700;
}

.quote {
  font-size: 1.25rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.8;
}

.quote-mark {
  font-size: 3rem;
  color: #4cc9f0;
  position: absolute;
  top: -10px;
  left: -35px;
  opacity: 0.6;
}

.signature-block {
  margin-top: 60px;
  text-align: right;
  color: #333;
}

.signature-block .sign {
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.05rem;
}

.signature-block .sign span {
  color: #555;
  font-weight: 500;
}

/* 반응형 */
@media (max-width: 900px) {
  .ceo-section {
    grid-template-columns: 1fr;
  }

  .greeting-section {
    width: 95%;
    padding: 0;
    padding-top: 20px;
    justify-content: center;
  }

  .greeting-img img {
    width: 95%;
  }

  .greeting-inner {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .greeting-left {
    flex: none;
    width: 100%;
    border-left: none;
    border-top: 3px solid #1b4ef0;
    padding-left: 0;
    padding-top: 15px;
    margin-bottom: 10px;
    text-align: center;
  }

  .greeting-title {
    font-size: 1.6rem;
  }

  .greeting-subtitle {
    font-size: 0.95rem;
    color: #555;
  }

  .greeting-right {
    text-align: left;
    font-size: 0.95rem;
  }

  .greeting-right p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  .quote-mark {
    font-size: 2.2rem;
    top: -5px;
    left: -25px;
  }

  .signature-block {
    margin-top: 40px;
    text-align: left;
  }
}