.page-box h1 {
  margin-bottom: 0.625rem;
  font-size: 2.75rem;
  color: #BD9561;
  text-align: center;
  font-family: 'dfmingsubold-b5';
  text-shadow: 0px 4px 0px #fff;
}
.page-box .hero-box .pic {
  margin: 0 auto;
  max-width: 209px;
}
.page-box .cards-box {
  margin-top: -7px;
  border-radius: 13px;
  padding: 3.25rem 1.125rem 1.125rem;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.page-box .cards-box .title-box {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: #fff;
  white-space: nowrap;
  padding: 3px 2.125rem 1px;
  text-align: center;
}
.page-box .cards-box .title-box .bg {
  background: url(../img/cards/titleBg.svg) no-repeat center center / 100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.page-box .cards-box .card-item {
  width: calc(33.33% - 8px);
  position: relative;
  z-index: 1;
}
.page-box .cards-box .card-item::after {
  border-radius: 10px;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #BD9561;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.page-box .cards-box .card-item .pic {
  width: calc(100% - 2px);
}
.page-box .cards-box .card-item .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.875rem;
  color: #BD9561;
  writing-mode: vertical-lr;
  white-space: nowrap;
  font-weight: bold;
  letter-spacing: 4px;
}
