﻿/* =========== © 2026 Centroarts - https://m1r.ru =========== */

:root {
	--fs-shead: 18px;
	--lh-shead: 24px;
}
@media (min-width: 576px) {
  :root {
    --fs-shead: 20px;
    --lh-shead: 28px;
  }
}

.shead .wrp { display: flex; align-items: center; height: var(--headbar-h); gap: 12px; }
.shead .tools-addon { margin-left: auto; margin-right: -12px; }
.shead-info { display: flex; gap: 12px; min-width: 44px; flex: 1 1 auto; }
.shead-info .avatar { --avatar-size: 44px; }
.im-photo-ai {
  position: absolute; right: -3px; bottom: -3px;
  --i-size: 20px; --i-bg: var(--gradient);
}
.shead-info-cont { font-weight: bold; display: flex; align-items: center; gap: 8px; flex: 1 1 auto; min-width: 0; }
.shead-info-cont .truncate { font-size: var(--fs-shead); line-height: var(--lh-shead); }
.shead-info-cont .m-rate-num { flex-shrink: 0; }

.set-nav { margin-bottom: var(--g-sect); border-bottom: 1px solid var(--c-border); padding-bottom: 16px; }
.set-nav-list { display: flex; height: 48px; gap: 20px; box-shadow: inset 0 -1px 0 0 var(--c-border); }

@media (max-width: 991px) {
  .set-nav .wrp {
    display: flex; overflow-x: auto;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .set-nav .wrp::-webkit-scrollbar { display: none; }
  .set-nav-list { flex: 1 1 auto; }
}
@media (max-width: 575px) {
  /* .set-nav-list a.active { order: -1; } */
}
.set-nav-list a {
  white-space: nowrap; font-weight: bold; line-height: 24px; height: inherit;
  transition: opacity .15s ease;
}
.set-nav-list a:not(.active) { opacity: .7; }
.set-nav-list a:not(.active):hover { opacity: 1; }

.set-nav-list a > span { display: block; padding: 12px 0; height: inherit; position: relative; z-index: 1; }
.set-nav-list a.active > span::after {
  content: ""; position: absolute; z-index: -1; inset: 0; top: auto; height: 2px;
  border-radius: 2px; border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  background-color: hsl(var(--c-primary));
}