@charset "utf-8";
/* ==== Sub Page: Hero ==== */
.sub-page .page-hero {
  position: relative;
  min-height: clamp(320rem, 42dvh, 420rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.sub-page .page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.9);
}
.sub-page .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.35)
    ),
    var(--bg, none) center/cover no-repeat;
  pointer-events: none;
}
.sub-page .page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin-inline: auto;
  text-align: center;
}
.sub-page .page-hero__title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
}

/* ==== Sub Page: Content ==== */
.sub-page .page-content {
  width: 100%;
  margin: 100px auto 150px;
}
.sub-page .page-heading {
  margin-bottom: 100px;
  text-align: center;
}
.sub-page .page-title {
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.25;
  color: #487487;
}
.sub-page .page-subtitle {
  margin-top: 10px;
  /*
  color: #000;
  font-size: clamp(14px, 2.6vw, 24px);
  */
  font-weight: 300;
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.25;
  color: #487487;
}

/* ==== Policy blocks ==== */
.policy-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.policy-list li {
  position: relative;
  background: #fff;
  padding: 16px 18px 32px 32px;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  bottom: 30px;
  width: 2px;
  background: #4a6a78;
}

.policy-list li::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e5e8ec;
}
.policy-list p {
  font-weight: 300;
  margin: 0;
  color: #000;
  font-size: clamp(14px, 2.2vw, 18px);
}
