[html]<style>
  .shipro-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    background: #171b1c;  /* Цвет темный задника*/
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .shipro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }

  .shipro-image {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 20px 20px;
    transition: transform 0.3s ease;
  }

  .shipro-card:hover .shipro-image {
    transform: scale(1.25);
  }

  .shipro-info {
    text-align: center;
    font-family: "Arial", sans-serif;
    padding: 20px;
  }

  .shipro-info h5 {
    font-size: 24px;
    margin: 5px;
    color: #b8b2a8; /* Заголовок*/
  }

  .shipro-info em {
    font-size: 14px;
    color: #6c6c6c; /* Цвет текста под заголовком*/
    margin-bottom: 10px;
    display: block;
  }

  .shipro-description {
    font-size: 14px;
    color: #949494; /* Главный текст */
    text-align: justify;
    line-height: 1.5;
    text-indent: 30px;
    max-height: 200px;
    overflow: hidden;
    padding: 0 10px;
    transition: max-height 0.3s ease;
  }

  .shipro-card:hover .shipro-description {
    max-height: 500px;
  }

  .shipro-description p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
  }

</style>

<div class="shipro-card">
 
  <div class="shipro-info">
  <div class="shipro-info">
    <h5>Правила рекламного обмена:</h5>
   
    <div class="shipro-description">
1. Реклама строго взаимная. К вашему рекламному посту должна прилагаться ссылка на пост либо страницу с нашей рекламой.
<p>2. Рекламу одной и той же ролевой разрешено публиковать не ранее чем через 10 рекламных сообщений других пиарщиков.</p>
<p>3. Реклама разрешена только в строго отведенной теме.</p>
<p>4. Если же правила рекламы нарушены, то за этим может последовать 3 предупреждения в гостевую книгу рекламируемого форума. В случае, если нарушения продолжаются — будут приняты соответствующие меры. Вплоть до бессрочного бана по айпи адресу.</p>

     

    </div>
  </div>
</div>
<!--  Можете поставить следом ещё одну такую же про другого персонажа -->
[/html]