.page-intro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  color: #000000;
  padding: 2.5%;
  box-sizing: border-box;
}

.page-intro-content {
  position: relative;
  z-index: 2;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.content {
  max-width: 1920px;
  margin: 0 auto;
}

.content-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.content-title h3 {
  font-size: 22px;
}

.content-title a {
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  border: 2px solid #fff;
  border-radius: 5px;
  padding: 0 11px;
}

.content-title p {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

.content-item {
  flex-direction: column;
  width: 50%;
  display: flex;
  gap: 32px;
}

.content-item p {
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
  flex: 1;
  text-align: left;
  font-size: 22px;
  min-height: 70px;
}

/* --- 이미지 갤러리 --- */
.page-gallery {
  width: 100%;
  margin-top: 120px;
}

.page-gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.page-gallery-item {
  display: flex;
  align-items: center;
  flex-basis: calc(50% - 15px);
  min-width: 450px;
  flex-grow: 0;
}

.page-gallery-item.only-image {
  /* flex-grow: 0; */
  width: 100%;
  flex-basis: unset;
  justify-content: flex-start;
}

.page-gallery-item.only-image.even {
  justify-content: flex-end;
}

.page-gallery-item.only-image img {
  width: calc(50% - 15px);
}

@media (max-width: 1024px) {
  .page-gallery-item.only-image img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .content-item {
    flex-direction: column;
    width: 100%;
  }

  .page-gallery-item {
    min-width: fit-content;
  }
}
