[html]
<style>
/**общий блок**/
.stargs {background: #fff; width: 650px; height: auto; border-radius: 20px; display: flex; flex-wrap: wrap; gap: 10px; padding: 15px; box-sizing: border-box; margin: 0 auto !important;}
/**блок с названием**/
.topst {display: flex; width: 100%; height: 50px; align-items: center; gap: 15px; border-bottom: solid 3px #000;}
/**блок с названием -> звездочка**/
.ist {width: 30px; height: 30px; transition: all 0.7s linear 0s;}
.ist:hover {transform: rotate(90deg); transition: all 0.7s linear 0s;}
/**блок с названием -> название форума**/
.namest {font-family: rubik; font-weight: 900; font-size: 22px; color: #000;}
/**блок с картинкой и инфой**/
.bottomst {display: flex; gap: 15px;}
/**блок с картинкой и инфой -> картинка**/
.imgst img {border-radius: 20px;}
/**блок с картинкой и инфой -> инфа**/
.bottomst_r p {margin: 0; text-align: justify; font-size: 14px; font-family: 'Rubik'; color: #000; padding-bottom: 10px;}
/**блок с картинкой и инфой -> спойлеры**/
.bottomst_r details {padding: 10px 0; border-top: solid 3px #000; border-bottom: solid 3px #000;}
.bottomst_r details:nth-child(2) {border-bottom: none;}
/**блок с картинкой и инфой -> убираем дефолтные маркеры**/
.bottomst_r details summary::-webkit-details-marker {display: none}
.bottomst_r details > summary {list-style: none;}
/**блок с картинкой и инфой -> название спойлера**/
.bottomst_r summary {cursor: pointer; display: flex; align-items: center; gap: 10px; font-family: 'Rubik'; font-size: 18px; font-weight: 900; color: #000;}
/**блок с картинкой и инфой -> звездочки в спойлерах**/
.bottomst_r summary img {width: 30px; height: 30px;}
/**блок с картинкой и инфой -> списки**/
.bottomst_r details ul {margin: 0; padding: 5px 15px;}
.bottomst_r details li {font-size: 10px; font-family: 'Rubik'; color: #000; list-style: none; line-height: 1.5;}
/**блок с картинкой и инфой -> ссылки в списках**/
.bottomst_r details li a {padding: 0 10px; background: #000; border-radius: 15px; color: #fff !important; text-decoration: none !important; font-family: 'Rubik' !important; font-size: 10px !important; transition: all 0.3s linear 0s;}
/**блок с картинкой и инфой -> навигация**/
.navst {display: flex; flex-wrap: wrap; gap: 10px; padding: 10px 0;}
.navst a {display: block; padding: 5px 10px; background: #000; border-radius: 15px; color: #fff !important; text-decoration: none !important; font-family: 'Rubik' !important; font-size: 10px !important; transition: all 0.3s linear 0s;}
.navst a:hover, .bottomst_r details li a:hover {background: #fff; color: #000 !important; box-sizing: border-box; transition: all 0.3s linear 0s;}
</style>
<!--код гостевой by karamba-->
<div class="stargs">
<div class="topst">
<div class="ist"><img src="https://forumstatic.ru/files/0016/f1/95/58840.svg"></div>
<div class="namest">название форума</div>
</div>
<div class="bottomst">
<div class="bottomst_l">
<div class="imgst"><img src="https://placehold.co/160x300/000000/FFFFFF.png"></div>
</div>
<div class="bottomst_r">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<details>
<summary> <img src="https://forumstatic.ru/files/0016/f1/95/58840.svg">занятые внешности</summary>
<ul>
<li>внешность - <a href="ссылка на профиль">имя</a> - до 13.10</li>
<li>внешность - <a href="ссылка на профиль">имя</a> - до 13.10</li>
</ul>
</details>
<details>
<summary><img src="https://forumstatic.ru/files/0016/f1/95/58840.svg"> занятые роли</summary>
<ul>
<li>роль - <a href="ссылка на профиль">имя</a> - до 13.10</li>
<li>роль - <a href="ссылка на профиль">имя</a> - до 13.10</li>
</ul>
</details>
<div class="navst">
<a href="ссылка">name link</a>
<a href="ссылка">name link</a>
<a href="ссылка">name link</a>
<a href="ссылка">name link</a>
<a href="ссылка">name link</a>
<a href="ссылка">name link</a>
</div>
</div>
</div>
</div>[/html]
[hideprofile]