.section-title {
  display: flex;
  justify-content: center;
  gap: 70px;
  align-items: center;
  padding: 80px 0; /* 원하는 만큼 조절 */
  margin: 0;
  width: 100vw;
  background-image: linear-gradient(to right, #ddd 1px, transparent 1px),
                    linear-gradient(to bottom, #ddd 1px, transparent 1px);
  background-size: 30px 30px;
}


.section-title a {
  display: block;
}

.section-title img {
  max-width: 350px;   /* 이미지 최대 크기 */
  width: 100%;        /* 부모 영역 기준으로 꽉 채움 */
  height: auto;       /* 비율 유지 */
  cursor: pointer;
  transition: transform 0.2s;
  display: block;
}

.section-title img:hover {
  transform: translateY(-5px);
}
