/* =============================================
   대표이사 인사말 (Greeting) 섹션
   기준: 1920px 디자인 시안
   ============================================= */

.greeting-section {
  background: #FFFFFF;
  width: 100%;
}

.greeting-section .greeting-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 240px;
  box-sizing: border-box;
}

/* 섹션 타이틀 영역 */
.greeting-section .greeting-title-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 89px;
}

.greeting-section .greeting-title-bar {
  display: block;
  width: 9px;
  height: 30px;
  background: #57C2D2;
  flex-shrink: 0;
}

.greeting-section .greeting-title {
  font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #212121;
  margin: 0;
  padding: 0;
}

/* 콘텐츠 레이아웃 (이미지 + 텍스트) */
.greeting-section .greeting-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}

/* 이미지 영역 */
.greeting-section .greeting-image-wrap {
  flex-shrink: 0;
  width: 552px;
}

.greeting-section .greeting-image-wrap img {
  width: 552px;
  height: 579px;
  object-fit: cover;
  display: block;
}

/* 텍스트 영역 */
.greeting-section .greeting-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 469px;
  flex-shrink: 0;
}

.greeting-section .greeting-intro {
  font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #212121;
  margin: 0;
  padding: 0;
  width: 100%;
}

.greeting-section .greeting-body {
  font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #212121;
  margin: 0;
  padding: 0;
}

.greeting-section .greeting-signature {
  font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -0.02em;
  color: #212121;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* 반응형 */
@media (max-width: 1440px) {
  .greeting-section .greeting-inner {
    padding: 80px 160px;
  }
}

@media (max-width: 1280px) {
  .greeting-section .greeting-inner {
    padding: 80px 80px;
  }
  .greeting-section .greeting-content {
    gap: 40px;
  }
  .greeting-section .greeting-image-wrap,
  .greeting-section .greeting-image-wrap img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  .greeting-section .greeting-text-wrap {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 1024px) {
  .greeting-section .greeting-inner {
    padding: 60px 40px;
  }
  .greeting-section .greeting-title {
    font-size: 26px;
  }
  .greeting-section .greeting-image-wrap,
  .greeting-section .greeting-image-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .greeting-section .greeting-inner {
    padding: 48px 24px;
  }
  .greeting-section .greeting-title-wrap {
    margin-bottom: 40px;
  }
  .greeting-section .greeting-title {
    font-size: 22px;
    line-height: 28px;
  }
  .greeting-section .greeting-content {
    flex-direction: column;
    gap: 32px;
  }
  .greeting-section .greeting-image-wrap {
    width: 100%;
  }
  .greeting-section .greeting-image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .greeting-section .greeting-text-wrap {
    width: 100%;
    gap: 24px;
  }
  .greeting-section .greeting-intro {
    font-size: 20px;
  }
  .greeting-section .greeting-body {
    font-size: 16px;
  }
  .greeting-section .greeting-signature {
    font-size: 16px;
  }
}
