/* HOST */
.hwrap {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 620px) {
  .hwrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hport {
  width: 200px;
  height: 240px;
  border-radius: 24px;
  background: linear-gradient(
    160deg,
    rgba(27, 125, 184, 0.3) 0%,
    rgba(245, 160, 32, 0.2) 100%
  );
  border: 1px solid rgba(27, 125, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}
.hport::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(245, 160, 32, 0.25), transparent);
}
.hname {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hrole {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--o);
  margin-bottom: 20px;
}
.hbio {
  font-size: 15px;
  color: var(--w6);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hstats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
@media (max-width: 620px) {
  .hstats {
    justify-content: center;
  }
}
.hnum {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.hs:nth-child(1) .hnum {
  color: var(--o);
}
.hs:nth-child(2) .hnum {
  color: var(--bl);
}
.hs:nth-child(3) .hnum {
  color: var(--g);
}
.hlbl {
  font-size: 11px;
  color: var(--w3);
  margin-top: 2px;
  display: block;
  line-height: 1.4;
}

.himg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
