.npc-wrap{
  position:relative;
  width:100%;
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 24px;
  background-color:#4c151b;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  border-top:1px solid #d0a35d;
  border-bottom:1px solid #d0a35d;
  overflow:hidden;
  isolation:isolate;
}
.npc-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(84,20,26,.82);
  z-index:-2;
}
.npc-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.16),transparent 30%,transparent 70%,rgba(0,0,0,.16)),
    linear-gradient(180deg,rgba(0,0,0,.08),transparent 55%,rgba(0,0,0,.14));
  z-index:-1;
  pointer-events:none;
}
.npc-content{
  width:100%;
  max-width:760px;
  margin:0 auto;
  text-align:center;
  color:#fff;
}
.npc-eyebrow{
  color:#d0a35d;
  font-size:11px;
  line-height:1.2;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:8px;
}
.npc-title{
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:38px;
  line-height:1.05;
  font-weight:400;
  letter-spacing:.01em;
  margin:0 0 10px;
  text-wrap:balance;
}
.npc-description{
  color:#fff;
  font-size:16px;
  line-height:1.45;
  margin:0 0 14px;
}
.npc-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:270px;
  min-height:42px;
  padding:11px 24px;
  background:#d0a35d;
  border:1px solid #d0a35d;
  color:#fff!important;
  text-decoration:none!important;
  text-transform:uppercase;
  letter-spacing:.045em;
  font-size:12px;
  font-weight:700;
  box-shadow:0 5px 16px rgba(0,0,0,.16);
  transition:transform .2s ease,filter .2s ease;
}
.npc-button:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
}
@media(max-width:767px){
 .npc-wrap{min-height:280px;padding:28px 18px}
 .npc-title{font-size:28px}
 .npc-description{font-size:14px}
 .npc-button{min-width:0;width:min(100%,320px)}
}
@media(prefers-reduced-motion:reduce){
 .npc-button{transition:none!important}
}