[html]<div class="mantra-profile">

   <!-- Верхние фотографии -->
   <div class="mantra-profile-photos">

       <img class="mantra-profile-photo" src="https://i.pinimg.com/736x/c4/e8/78/c4e8782331edb2b55cb95cb4973a6e82.jpg">
       <img class="mantra-profile-photo" src="https://i.pinimg.com/736x/c4/e8/78/c4e8782331edb2b55cb95cb4973a6e82.jpg">
       <img class="mantra-profile-photo" src="https://i.pinimg.com/736x/c4/e8/78/c4e8782331edb2b55cb95cb4973a6e82.jpg">
       <img class="mantra-profile-photo" src="https://i.pinimg.com/736x/c4/e8/78/c4e8782331edb2b55cb95cb4973a6e82.jpg">

   </div>

   <!-- Имя персонажа -->
   <div class="mantra-profile-heading">

       <div class="mantra-profile-name">
           name surname
       </div>

       <div class="mantra-profile-face">
           имя внешности (группа)
       </div>

   </div>

   <!-- Краткая информация -->
   <div class="mantra-profile-info">

       <div class="mantra-profile-info-item">

           <div class="mantra-profile-info-title">
               возраст
           </div>

           <div class="mantra-profile-info-value">
               24 года
           </div>

       </div>

       <div class="mantra-profile-info-item">

           <div class="mantra-profile-info-title">
               место жительства
           </div>

           <div class="mantra-profile-info-value">
               сеул, южная корея
           </div>

       </div>

       <div class="mantra-profile-info-item">

           <div class="mantra-profile-info-title">
               занятость
           </div>

           <div class="mantra-profile-info-value">
               переводчик
           </div>

       </div>

   </div>

   <!-- Разделитель -->
   <div class="mantra-profile-divider"></div>

   <!-- Основной текст анкеты -->
   <div class="mantra-profile-textbox">

       <p>
           Текст анкеты с любой нужной и важной информацией о вас.
       </p>

       <p>
           Здесь можно разместить биографию персонажа, описание характера,
           привычек, интересов, отношений с другими героями и любые другие
           сведения.
       </p>

       <p>
           Текст можно делить на отдельные абзацы при помощи тегов p
       </p>

   </div>

   <!-- Дополнительная информация -->
   <div class="mantra-profile-extra">

       <div class="mantra-profile-extra-title">
           дополнительная информация
       </div>

       <div class="mantra-profile-extra-box">
           Темп игры, от какого лица пишете и всё-всё такое.
       </div>

   </div>

</div>
<style>
/* ==================================================
  ОСНОВНОЙ БЛОК АНКЕТЫ
================================================== */

.mantra-profile {
   position: relative;
   width: 600px;
   max-width: 100%;
   min-height: 670px;
   margin: 25px auto;
   padding: 52px 48px 52px;
   box-sizing: border-box;
   overflow: hidden;
   border-radius: 10px;
   background-image: url(https://upforme.ru/uploads/001c/ac/b2/2/823754.png);
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   color: #38565d;
   font-family: Inter, Helvetica, sans-serif;
}

.mantra-profile,
.mantra-profile * {
   box-sizing: border-box;
}

/* ==================================================
  ВЕРХНИЕ ФОТОГРАФИИ
================================================== */

.mantra-profile-photos {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;

   margin-bottom: 15px;
}

.mantra-profile-photo {
   display: block;
   width: 56px;
   height: 56px;
   object-fit: cover;
   border-radius: 5px;
   box-shadow: 0 2px 4px rgba(58, 62, 62, 0.18);
}

/* ==================================================
  ИМЯ И ВНЕШНОСТЬ
================================================== */

.mantra-profile-heading {
   text-align: center;
}

.mantra-profile-name {
   color: #2D4E4D;
   font-family: Italiana, "Times New Roman", serif;
   font-size: 33px;
   font-weight: 400;
   line-height: 1;
   letter-spacing: -1px;
   text-transform: lowercase;
}

.mantra-profile-face {
   margin-top: 7px;
   color: #2D4E4D;
   font-size: 9px;
   font-style: italic;
   line-height: 1.2;
   text-transform: lowercase;
}

/* ==================================================
  ОСНОВНАЯ ИНФОРМАЦИЯ
================================================== */

.mantra-profile-info {
   display: grid;
   grid-template-columns: 1fr 1.6fr 1fr;
   gap: 17px;
   width: 72%;
   margin: 26px auto 0;
}

.mantra-profile-info-item {
   min-width: 0;
   text-align: center;
}

.mantra-profile-info-title {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 23px;
   padding: 2px 12px;
   border: 1px solid #8ca1a5;
   border-radius: 8px;
   background: rgba(239, 237, 236, 0.48);
   color: #2D4E4D;
   font-size: 10px;
   font-style: italic;
   line-height: 1.1;
}

.mantra-profile-info-value {
   margin-top: 11px;
   color: #2D4E4D;
   font-size: 10px;
   line-height: 1.3;
}

/* ==================================================
  РАЗДЕЛИТЕЛЬ
================================================== */

.mantra-profile-divider {
   width: 90%;
   margin: 14px auto 18px;
   border-top: 2px dashed rgba(103, 134, 139, 0.58);
}

/* ==================================================
  ОСНОВНОЙ ТЕКСТ АНКЕТЫ
================================================== */

.mantra-profile-textbox {
   width: 100%;
   height: 284px;
   padding: 20px 21px;
   border: 1px solid rgba(133, 156, 161, 0.55);
   border-radius: 7px;
   background: rgb(255 255 255 / 72%);
   color: #2D4E4D;
   font-size: 11px!important;
   line-height: 1.55;
   text-align: left;
   box-shadow:
       inset 0 0 16px rgba(255, 255, 255, 0.17);
   overflow-y: auto;
}

.mantra-profile-textbox p {
   margin: 0 0 10px;
   font-size: 11px!important;
}

.mantra-profile-textbox p:last-child {
   margin-bottom: 0;
}

/* ==================================================
  ДОПОЛНИТЕЛЬНАЯ ИНФОРМАЦИЯ
================================================== */

.mantra-profile-extra {
   position: relative;
   margin-top: 7px;
}

.mantra-profile-extra-title {
   position: relative;
   z-index: 2;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 212px;
   max-width: 70%;
   min-height: 25px;
   margin: -16px auto -9px;
   padding: 4px 15px;
   border-radius: 6px;
   background: #89a9aa;
   color: #f3f4f3;
   font-size: 10px;
   line-height: 1;
   text-align: center;
   text-transform: lowercase;
}

.mantra-profile-extra-box {
   min-height: 52px;
   padding: 20px 21px 12px;
   border: 1px solid rgba(133, 156, 161, 0.42);
   border-radius: 7px;
   background: rgb(255 255 255 / 72%);
   color: #2D4E4D;
   font-size: 10px;
   line-height: 1.45;
}

/* ==================================================
  ССЫЛКИ ВНУТРИ АНКЕТЫ
================================================== */

.mantra-profile a {
   color: #668d92 !important;
   font-weight: 600;
   text-decoration: none !important;
}

.mantra-profile a:hover {
   color: #3c6870 !important;
   text-decoration: none !important;
}

/* ==================================================
  АДАПТИВНОСТЬ
================================================== */

@media screen and (max-width: 620px) {
   .mantra-profile {
       padding: 42px 28px 42px;
   }

   .mantra-profile-info {
       width: 88%;
   }

   .mantra-profile-divider {
       width: 96%;
   }
}

@media screen and (max-width: 480px) {
   .mantra-profile {
       padding: 35px 18px 35px;
   }

   .mantra-profile-photos {
       gap: 9px;
   }

   .mantra-profile-photo {
       width: 48px;
       height: 48px;
   }

   .mantra-profile-name {
       font-size: 28px;
   }

   .mantra-profile-info {
       grid-template-columns: 1fr;
       gap: 12px;

       width: 82%;
       margin-top: 22px;
   }

   .mantra-profile-info-value {
       margin-top: 6px;
   }

   .mantra-profile-textbox {
       min-height: 240px;
   }

   .mantra-profile-extra-title {
       max-width: 85%;
   }
}
</style>[/html]