/* XRAY Club — минимальный мост КОНТЕНТА под купленную тему.
 * НЕ переоформляет тему. Только: (1) реальные фото-аватары делает круглыми,
 * как круглые SVG-аватары темы; (2) корректно показывает тело сообщений XenForo
 * (bbcode/цитаты/вложения) внутри .topic__text; (3) пагинация/профиль —
 * компоненты, которых в демке темы нет. Палитра/типографика — из темы. */

/* — реальные фото-аватары: тема использует круглые SVG, фото тоже скругляем — */
.avatar img{border-radius:50%;width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;}
.header__user-btn img{border-radius:50%;object-fit:cover;}

/* — тело сообщения (контент XenForo) внутри карточки поста темы — */
.topic__text{overflow-wrap:anywhere;}
.topic__text img{max-width:100%;height:auto;border-radius:4px;}
.topic__text a{color:#4f80b0;}
.topic__text a:hover{text-decoration:underline;}
.topic__text ul{list-style:disc;margin:0 0 14px 22px;}
.topic__text ol{list-style:decimal;margin:0 0 14px 22px;}
.topic__text li{margin:3px 0;}
.topic__text .bbCodeQuote,.topic__text blockquote,.topic__text .quoteContainer{
  background:#f8f9fa;border-left:3px solid #f9bc64;margin:0 0 14px;padding:10px 14px;border-radius:0 6px 6px 0;color:#5c6166;}
.topic__text .bbCodeQuote .attribution,.topic__text .quoteContainer .attribution{
  font-weight:700;color:#394047;display:block;margin-bottom:6px;}
.topic__text table{max-width:100%;border-collapse:collapse;margin:0 0 14px;}
.topic__text td,.topic__text th{border:1px solid #e9ecee;padding:6px 10px;}
.topic__text pre{background:#f8f9fa;padding:12px;border-radius:6px;overflow:auto;}
.topic__text .messageTextEndMarker,.topic__text .editDate{display:none;}

/* — пагинация (в демке темы её нет) — */
.posts__pager{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;align-items:center;padding:30px 0 10px;}
.posts__pager .btn{min-width:42px;}
.posts__pager-gap{color:#8e9091;padding:0 4px;}

/* — действия раздела (кнопка создания темы) — */
.forum__actions{padding:18px 0 0;}
.forum__actions .btn img{width:18px;margin-right:8px;}

/* — профиль участника (нативной страницы профиля в теме нет; собран из компонентов темы) — */
.profile{padding:26px 0 6px;}
.profile__head{display:flex;gap:22px;align-items:center;flex-wrap:wrap;}
.profile__avatar img{width:88px;height:88px;border-radius:50%;object-fit:cover;background:#f2f4f6;}
.profile__main h2{font-size:30px;line-height:1.2;margin:0 0 6px;color:#394047;font-weight:700;}
.profile__main p{color:#8e9091;margin:0 0 12px;}
.profile__stats{display:flex;gap:30px;}
.profile__stats div{text-align:center;}
.profile__stats b{display:block;font-size:24px;color:#394047;font-weight:700;}
.profile__stats span{font-size:12px;color:#8e9091;text-transform:uppercase;letter-spacing:.04em;}

/* — заголовок раздела/темы — отступ как у контейнера — */
.topics__heading{padding-top:24px;}
@media only screen and (max-width:1039px){ .profile__main h2,.topics__heading-title{font-size:24px;} }
