.page-intro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("/img/collection/tone-of-thermo/tone-of-thermo-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  color: #ffffff;
  padding: 2.5%;
  box-sizing: border-box;
}

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

.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 a:hover {
  color: #000;
  background-color: #fff;
}

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

.content-item {
  display: flex;
  gap: 45px;
}

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

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

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

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

@media (max-width: 1024px) {
  .page-gallery-item {
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  .page-intro h1 {
    font-size: 1.75rem;
  }

  .page-intro p {
    font-size: 1rem;
  }

  .content-item {
    flex-direction: column;
  }

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