/*Grundgerüst*/

.npc_descr {
margin-top: 10px;
  height: 70px;
  overflow: auto;
}

.npc_fact {
font-size: 10px;
  text-transform: uppercase;
}

.npc_title {
text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.npcm_content {
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px;
  padding: 50px;
  padding-top: 30px;
}

.npcm_list {
display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  padding-right: 10px;
}

.npc_kat {
border-bottom: 1px solid var(--golden);
  font-size: 30px;
  font-weight: bold;
  font-family: var(--mainfont);
  text-transform: uppercase;
  color: var(--golden);
  padding: 20px;
  background-image: url(/images/stats_back.png);
  background-position-y: 86%;
  height: 100px;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.npc_content {}

.npc_wrapper {

width: 85%;
  background: var(--paper);
margin: 50px auto;}

.npc-inline{
  display:flex;
  gap:12px;
  padding:10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  margin:10px 0;
}

.npc-inline__img img{
  width:110px;
  height:140px;
  object-fit:cover;
  border-radius:10px;
  display:block;
}

.npc-inline__name{
  font-weight:700;
  font-size:16px;
  margin-bottom:6px;
}

.npc-inline__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  font-size:12px;
  opacity:.9;
  margin-bottom:6px;
}

.npc-inline__desc{
  font-size:13px;
  opacity:.95;
  white-space:pre-wrap;
}