.greeting-section {
  max-width: 1400px;
  margin: 48px auto 80px;
}

.greeting-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-radius: 8px;
}

.greeting-text {
  flex: 1 1 55%;
}

.greeting-photo {
  flex: 1 1 35%;
  text-align: center;
}

.greeting-label {
  font-size: 14px;
  color: #c00;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.greeting-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.5;
}

.greeting-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.greeting-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.greeting-photo .sign {
  font-size: 15px;
  color: #222;
  font-weight: 500;
}

/* 반응형 */
@media (max-width: 1660px) {
  .greeting-inner {
    flex-direction: column;
  }
  .greeting-section{
    padding: 0 16px;
    margin: 0px auto 80px;
  }

  .greeting-photo, .greeting-text {
    flex: 1 1 100%;
  }

  .greeting-text h3 {
    font-size: 20px;
  }

  .greeting-text p {
    font-size: 15px;
  }

}
