[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">
<h5>Отсутствие</h5><br>
<div class="shipro-description">
Если вы по каким-то причинам собираетесь отсутствовать долгое время (больше недели), то известите нас, пожалуйста, чтобы мы не волновались и знали, что с вами всё хорошо
</div>
</div>
</div>
<!-- Можете поставить следом ещё одну такую же про другого персонажа -->
[/html]