html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
}

.contentPage{
  min-height:auto;
  padding:40px 16px 40px;
  background:transparent;
  box-sizing:border-box;
}

.contentPage__wrap{
  width:100%;
  max-width:980px;
  margin:0 auto;
  box-sizing:border-box;
}

.contentPage__hero{
  text-align:center;
  margin-bottom:28px;
}

.contentPage__title{
  margin:0 0 10px;
  font-size:clamp(2rem, 4vw, 3.6rem);
  line-height:1.05;
  color:var(--gold-soft);
}

.contentPage__subtitle{
  margin:0 auto;
  max-width:760px;
  font-size:clamp(1rem, 1.4vw, 1.15rem);
  line-height:1.7;
  color:var(--text-dim);
}

.contentCard{
  background:#e0bd73;
  border:1px solid rgba(146, 102, 18, 0.45);
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  padding:32px 28px;
  backdrop-filter:blur(8px);
  box-sizing:border-box;
  width:100%;
  max-width:100%;
}

.contentCard + .contentCard{
  margin-top:20px;
}

.contentCard h2{
  margin:0 0 14px;
  font-size:clamp(1.35rem, 2vw, 1.8rem);
  color:#24180a;
}

.contentCard p{
  margin:0 0 14px;
  color:#2b1c0d;
  line-height:1.75;
  font-size:1.02rem;
}

.contentCard p:last-child{
  margin-bottom:0;
}

.termsBox{
  min-height:320px;
  white-space:pre-wrap;
  color:#2b1c0d;
  line-height:1.75;
  font-size:1rem;
}

.termsBox.is-loading{
  opacity:0.7;
}

.termsBox.is-error{
  color:#ffb4b4;
}

.contentList{
  margin:0;
  padding-left:20px;
  color:#2b1c0d;
}

.contentList li + li{
  margin-top:10px;
}

.siteMain .contentPage{
  padding-top:calc(var(--header-h) + 28px);
  margin-top:0;
}

@media (max-width: 900px){
  .contentPage{
    padding:24px 12px 24px;
  }

  .contentPage__wrap{
    width:min(100%, 820px);
  }

  .contentCard{
    padding:22px 18px;
    border-radius:16px;
  }

  .contentCard h2{
    font-size:1.35rem;
    line-height:1.14;
    margin:0 0 12px;
  }

  .contentCard p,
  .contentList{
    font-size:0.96rem;
    line-height:1.55;
  }
}

@media (max-width: 700px){
  .contentPage{
    padding:20px 12px 22px;
  }

  .contentPage__wrap{
    width:100%;
    max-width:100%;
    margin:0 auto;
  }

  .contentCard{
    padding:18px 16px;
    border-radius:15px;
    width:100%;
    max-width:100%;
  }

  .contentCard h2{
    font-size:1.15rem;
    line-height:1.15;
    margin:0 0 12px;
  }

  .contentCard p,
  .contentList{
    font-size:0.92rem;
    line-height:1.5;
  }
}

@media (max-width: 480px){
  .contentPage{
    padding:16px 10px 20px;
  }

  .contentCard{
    padding:16px 14px;
    border-radius:14px;
    width:100%;
    max-width:100%;
  }

  .contentCard h2{
    font-size:1.02rem;
    line-height:1.15;
    margin:0 0 10px;
  }

  .contentCard p,
  .contentList{
    font-size:0.84rem;
    line-height:1.45;
  }
}