@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Arm";
  src: url("../fonts/Montserratarm-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul,
ol {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Наследование стилей для вложенных элементов */
a,
span {
  font-weight: inherit;
  font-size: inherit;
  font: inherit;
}

/* Сброс стилей кнопки */
button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
}

/** Планшет и ниже (@mixin below-l). TABLET_MEDIA_QUERY в js/utils/breakpoints.js — только для header.js */
/**
 * Планшет и уже. Дублирует portrait-fallback для iPad Safari:
 * в портрете может отдавать ~1180px при реальных ~820px.
 */
*, html, body {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  scroll-behavior: smooth;
}
* p, html p, body p {
  font: inherit;
  color: inherit;
}
* p + p, html p + p, body p + p {
  margin-top: 1em;
}

html {
  --heading-fw: 600;
}

html[lang^=hy],
html[lang^=am],
body.lang-am {
  --heading-fw: 500;
}

html[lang^=hy],
html[lang^=hy] *,
html[lang^=am],
html[lang^=am] *,
body.lang-am,
body.lang-am * {
  font-family: "Montserrat Arm", "Montserrat", sans-serif;
}

a:focus {
  outline-color: #E6A26F;
}

body {
  background: #F1F2F4;
  overflow-x: clip;
}
body.lock {
  overflow: hidden;
}

html {
  font-size: 12px;
}
@media (max-width: 1700px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 1359px) {
  html {
    font-size: 8px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 7px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  html {
    font-size: 7px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 6px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 5px;
  }
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0;
}

.icon {
  width: 100%;
  height: 100%;
}

section {
  scroll-margin: 12rem;
}

.container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1700px) {
  .container {
    max-width: 1324px;
  }
}
@media (max-width: 1359px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    height: 0%;
  }
  to {
    height: 100%;
  }
}
.fslightboxsn span {
  color: inherit;
}

body {
  --portal-header-py: 12px;
  --portal-header-inner-h: 48px;
  --portal-header-h: calc(var(--portal-header-py) * 2 + var(--portal-header-inner-h));
  --portal-admin-offset: 0px;
}
@media (min-width: 1025px) {
  body {
    --portal-header-py: 22px;
    --portal-header-inner-h: 72px;
  }
}

body.admin-bar {
  --portal-admin-offset: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --portal-admin-offset: 46px;
  }
}

.portal-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #1F2A35;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(31, 42, 53, 0.22);
  --portal-panel-top: calc(var(--portal-header-h) + var(--portal-admin-offset));
}
body.admin-bar .portal-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .portal-header {
    top: 46px;
  }
}
.portal-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.6rem 2rem;
  padding-block: var(--portal-header-py);
}
@media (max-width: 1024px) {
  .portal-header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
}
.portal-header__logo {
  display: block;
  grid-column: 1;
  grid-row: 1;
  flex-shrink: 0;
  max-width: min(45rem, 100%);
}
.portal-header__logo img,
.portal-header__logo picture {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
}
@media (max-width: 1024px) {
  .portal-header__logo {
    width: auto;
    max-width: calc(100% - 52px);
    flex: 1;
    min-width: 0;
  }
  .portal-header__logo img,
  .portal-header__logo picture img {
    width: auto;
    height: 48px;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left center;
       object-position: left center;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__logo {
    width: auto;
    max-width: calc(100% - 52px);
    flex: 1;
    min-width: 0;
  }
  .portal-header__logo img,
  .portal-header__logo picture img {
    width: auto;
    height: 48px;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left center;
       object-position: left center;
  }
}
.portal-header__lang-wrap {
  justify-self: center;
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 1024px) {
  .portal-header__lang-wrap {
    display: none;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__lang-wrap {
    display: none;
  }
}
.portal-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  min-width: 0;
}
@media (max-width: 1024px) {
  .portal-header__actions {
    display: none;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__actions {
    display: none;
  }
}
.portal-header__icon {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.portal-header__icon rect,
.portal-header__icon circle,
.portal-header__icon path {
  stroke: #FFFFFF;
}
.portal-header__icon rect {
  fill: none;
}
.portal-header__icon path[fill] {
  fill: #FFFFFF;
  stroke: none;
}
.portal-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 40px;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: clamp(13px, 1.4rem, 15px);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.portal-header__btn, .portal-header__btn .portal-header__btn-text, .portal-header__btn .portal-header__icon {
  color: currentColor;
}
.portal-header__btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}
.portal-header__btn--outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}
.portal-header__btn--account {
  background: #124A83;
  color: #FFFFFF;
}
.portal-header__btn--account:hover {
  background: #0b3b6b;
  color: #FFFFFF;
}
.portal-header__btn--logout {
  background: #E6A26F;
  color: #FFFFFF;
}
.portal-header__btn--logout:hover {
  background: #c27e4a;
  color: #FFFFFF;
}
.portal-header__btn--accent {
  background: #E6A26F;
  color: #FFFFFF;
}
.portal-header__btn--accent:hover {
  background: #c27e4a;
  color: #FFFFFF;
}
.portal-header__btn-text--name {
  white-space: nowrap;
}
.portal-header__burger {
  display: none;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .portal-header__burger {
    display: block;
    grid-column: 2;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__burger {
    display: block;
    grid-column: 2;
  }
}
.portal-header__burger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  background: #FFFFFF;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.portal-header__burger span:nth-child(1) {
  top: 14px;
}
.portal-header__burger span:nth-child(2) {
  top: 21px;
}
.portal-header__burger span:nth-child(3) {
  top: 28px;
}
.portal-header__burger.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.portal-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}
.portal-header__burger.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
.portal-header__panel {
  background: #1F2A35;
}
.portal-header__panel[hidden] {
  display: none;
}
@media (max-width: 1024px) {
  .portal-header__panel:not([hidden]) {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--portal-panel-top);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__panel:not([hidden]) {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--portal-panel-top);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.portal-header__panel-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 20px 40px;
}
@media (max-width: 1024px) {
  .portal-header__panel-inner {
    min-height: calc(100vh - var(--portal-panel-top));
    min-height: calc(100dvh - var(--portal-panel-top));
    padding: 20px 20px 40px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-header__panel-inner {
    min-height: calc(100vh - var(--portal-panel-top));
    min-height: calc(100dvh - var(--portal-panel-top));
    padding: 20px 20px 40px;
  }
}
@media (min-width: 1025px) {
  .portal-header__panel-inner {
    display: none;
  }
}
.portal-header__panel-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.portal-header__panel-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.2s ease;
}
.portal-header__panel-link .portal-header__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.portal-header__panel-link--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}
.portal-header__panel-link--outline .portal-header__panel-link-text,
.portal-header__panel-link--outline .portal-header__icon {
  color: #FFFFFF;
}
.portal-header__panel-link--account {
  background: #124A83;
  color: #FFFFFF;
}
.portal-header__panel-link--account .portal-header__icon,
.portal-header__panel-link--account .portal-header__panel-account-label,
.portal-header__panel-link--account .portal-header__panel-account-name {
  color: #FFFFFF;
}
.portal-header__panel-link--account:hover {
  background: #0b3b6b;
  color: #FFFFFF;
}
.portal-header__panel-link--logout {
  background: #E6A26F;
  color: #FFFFFF;
}
.portal-header__panel-link--logout .portal-header__panel-link-text,
.portal-header__panel-link--logout .portal-header__icon {
  color: #FFFFFF;
}
.portal-header__panel-link--logout:hover {
  background: #c27e4a;
  color: #FFFFFF;
}
.portal-header__panel-link--accent {
  background: #E6A26F;
  color: #FFFFFF;
}
.portal-header__panel-link--accent .portal-header__panel-link-text,
.portal-header__panel-link--accent .portal-header__icon {
  color: #FFFFFF;
}
.portal-header__panel-link--accent:hover {
  background: #c27e4a;
  color: #FFFFFF;
}
.portal-header__panel-link:not(.portal-header__panel-link--account):not(.portal-header__panel-link--logout):not(.portal-header__panel-link--accent):hover {
  border-color: rgba(255, 255, 255, 0.35);
}
.portal-header__panel-link-text {
  color: #FFFFFF;
}
.portal-header__panel-account {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.portal-header__panel-account-label, .portal-header__panel-account-name {
  color: #FFFFFF;
}
.portal-header__panel-account-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}
.portal-header__panel-account-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}
.portal-header__lang {
  display: flex;
  align-items: center;
}
.portal-header__lang-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.portal-header__lang-item {
  margin: 0;
  padding: 3px 10px 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.portal-header__lang-item:not(.is-active):hover {
  background: rgba(255, 255, 255, 0.16);
}
.portal-header__lang-item.is-active {
  background: rgba(255, 255, 255, 0.18);
}
.portal-header__lang-link {
  display: inline-block;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.portal-header__lang-link:hover {
  color: #FFFFFF;
}
.portal-header__lang-item.is-active .portal-header__lang-link {
  color: #FFFFFF;
  cursor: default;
}
.portal-header__panel-lang {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.portal-header__panel-lang .portal-header__lang {
  justify-content: flex-start;
}

.portal-footer {
  margin-top: auto;
  padding: 2.4rem 0;
  background: #1F2A35;
  color: #FFFFFF;
}
@media (max-width: 1024px) {
  .portal-footer {
    padding: 28px 0 32px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-footer {
    padding: 28px 0 32px;
  }
}
.portal-footer__inner {
  text-align: center;
}
.portal-footer__copy {
  margin: 0;
  font-size: clamp(13px, 1.4rem, 15px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1024px) {
  .portal-footer__copy {
    font-size: 14px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-footer__copy {
    font-size: 14px;
  }
}

.portal-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1F2A35;
}
.portal-hero__bg {
  position: absolute;
  inset: 0;
  background: #1F2A35;
}
.portal-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
  pointer-events: none;
}
.portal-hero__bg img,
.portal-hero__bg picture {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.portal-hero__bg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.portal-hero--no-photo .portal-hero__bg {
  background: #1F2A35;
}
.portal-hero--no-photo .portal-hero__bg::after {
  background: linear-gradient(270deg, rgba(31, 42, 53, 0.4) 0%, #1f2a35 100%);
}
.portal-hero__content {
  position: relative;
  z-index: 2;
  padding: 30rem 0 6rem;
}
.portal-hero__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  font-size: clamp(26px, 5.2rem, 52px);
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .portal-hero__title {
    font-size: 4.2rem;
  }
}
@media (max-width: 480px) {
  .portal-hero__title {
    font-size: clamp(22px, 4.2rem, 42px);
  }
}
.portal-hero__subtitle {
  margin-top: 1.6rem;
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: #FFFFFF;
}

.portal-main {
  flex: 1;
}
.portal-main--inner:not(.portal-main--auth) {
  background: #FFFFFF;
  padding-top: calc(var(--portal-header-h) + var(--portal-admin-offset) + 48px);
  padding-bottom: 6rem;
}
@media (max-width: 1024px) {
  .portal-main--inner:not(.portal-main--auth) {
    padding-top: calc(var(--portal-header-h) + var(--portal-admin-offset) + 32px);
    padding-bottom: 48px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-main--inner:not(.portal-main--auth) {
    padding-top: calc(var(--portal-header-h) + var(--portal-admin-offset) + 32px);
    padding-bottom: 48px;
  }
}
.portal-main--auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--portal-header-h) + var(--portal-admin-offset) + 24px);
  padding-bottom: 48px;
}

.portal-catalog {
  padding: 4.8rem 0 8rem;
}
@media (max-width: 1024px) {
  .portal-catalog {
    padding: 36px 0 56px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-catalog {
    padding: 36px 0 56px;
  }
}
.portal-catalog__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  font-size: clamp(24px, 4.2rem, 42px);
  margin-bottom: 2.4rem;
}
@media (max-width: 1024px) {
  .portal-catalog__title {
    margin-bottom: 20px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-catalog__title {
    margin-bottom: 20px;
  }
}
.portal-catalog__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(31, 42, 53, 0.1);
}
@media (max-width: 1024px) {
  .portal-catalog__tabs {
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-catalog__tabs {
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
}
.portal-catalog__tab {
  padding: 20px;
  border: 1px solid rgba(31, 42, 53, 0.1);
  border-radius: 4px;
  background: #FFFFFF;
  color: #1F2A35;
  font-family: inherit;
  font-size: clamp(14px, 1.6rem, 17px);
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 1024px) {
  .portal-catalog__tab {
    font-size: 15px;
    padding: 12px 18px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-catalog__tab {
    font-size: 15px;
    padding: 12px 18px;
  }
}
.portal-catalog__tab:hover {
  border-color: #6F8FB5;
  color: #124A83;
}
.portal-catalog__tab.is-active {
  background: #124A83;
  border-color: #124A83;
  color: #FFFFFF;
}
.portal-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 1359px) {
  .portal-catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portal-catalog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.portal-catalog__empty {
  color: rgba(31, 42, 53, 0.7);
}
.portal-catalog__empty--filter {
  margin-top: 2rem;
  text-align: center;
}

.test-card[hidden] {
  display: none;
}

.container--narrow {
  max-width: 48rem;
}

.text-content {
  font-size: clamp(14px, 1.6rem, 19px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(31, 42, 53, 0.7);
  color: rgba(31, 42, 53, 0.7);
}
.text-content p {
  font: inherit;
  color: inherit;
}
.text-content p + p {
  margin-top: 1em;
}
.text-content p + p {
  margin-top: 1em;
}
.text-content ul, .text-content ol {
  margin: 1em 0;
  padding-left: 1.4em;
}

.test-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}
.test-categories__item {
  padding: 6px 12px;
  border-radius: 4px;
  background: #E6A26F;
  color: #FFFFFF;
  font-size: clamp(12px, 1.3rem, 14px);
  line-height: 1.3;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .test-categories__item {
    font-size: 13px;
    padding: 7px 14px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .test-categories__item {
    font-size: 13px;
    padding: 7px 14px;
  }
}

.test-card {
  height: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(31, 42, 53, 0.08);
  transition: all 0.2s ease;
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 42, 53, 0.12);
}
.test-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.test-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #E9EFF5;
}
.test-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.test-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, #E9EFF5 0%, #9FB6D3 100%);
  color: #124A83;
}
.test-card__placeholder-icon {
  width: 4.8rem;
  height: 4.8rem;
  opacity: 0.45;
}
.test-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
}
@media (max-width: 1024px) {
  .test-card__body {
    padding: 24px 20px 22px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .test-card__body {
    padding: 24px 20px 22px;
  }
}
.test-card__title {
  font-size: clamp(16px, 2rem, 24px);
  line-height: 1.4;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  color: #1F2A35;
}
.test-card__excerpt {
  margin-top: 1rem;
  color: rgba(31, 42, 53, 0.7);
  flex: 1;
}
@media (max-width: 1024px) {
  .test-card__excerpt {
    margin-top: 12px;
    font-size: clamp(14px, 1.6rem, 16px);
    line-height: 1.45;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .test-card__excerpt {
    margin-top: 12px;
    font-size: clamp(14px, 1.6rem, 16px);
    line-height: 1.45;
  }
}
.test-card__meta {
  list-style: none;
  margin: auto 0 0;
  padding: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
@media (max-width: 1024px) {
  .test-card__meta {
    padding-top: 18px;
    gap: 10px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .test-card__meta {
    padding-top: 18px;
    gap: 10px;
  }
}
.test-card__meta li {
  padding: 6px 12px;
  border-radius: 4px;
  background: #E9EFF5;
  font-size: clamp(12px, 1.4rem, 14px);
  line-height: 1.3;
  color: #124A83;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .test-card__meta li {
    font-size: 13px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .test-card__meta li {
    font-size: 13px;
  }
}
.test-card .test-categories {
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .test-card .test-categories {
    margin-bottom: 14px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .test-card .test-categories {
    margin-bottom: 14px;
  }
}

.test-page__back {
  display: inline-block;
  margin-bottom: 48px;
  color: #124A83;
  text-decoration: none;
}
.test-page__back:hover {
  text-decoration: underline;
}
.test-page__hero {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 1025px) {
  .test-page__hero {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
}
.test-page__media {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/2;
  background: #E9EFF5;
}
.test-page__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.test-page__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(135deg, #E9EFF5 0%, #9FB6D3 100%);
  color: #124A83;
}
.test-page__placeholder-icon {
  width: 64px;
  height: 64px;
  opacity: 0.45;
}
.test-page__intro {
  min-width: 0;
}
.test-page__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  margin: 0;
}
@media (max-width: 480px) {
  .test-page__title {
    font-size: 4.2rem;
  }
}
.test-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.test-page__meta li {
  padding: 6px 12px;
  border-radius: 4px;
  background: #E9EFF5;
  font-size: clamp(12px, 1.4rem, 14px);
  line-height: 1.3;
  color: #124A83;
  font-weight: 500;
}
.test-page__content {
  margin-bottom: 32px;
}
.test-page__actions {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(31, 42, 53, 0.1);
}
.test-page .test-categories {
  margin-bottom: 16px;
}

.test-start-form__tickets {
  margin: 0 0 24px;
  padding: 24px;
  border: none;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(31, 42, 53, 0.08);
}
.test-start-form__legend {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  font-size: clamp(16px, 1.8rem, 18px);
  font-weight: 600;
  color: #1F2A35;
}
.test-start-form__ticket-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.test-start-form__ticket {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(31, 42, 53, 0.1);
  border-radius: 4px;
  background: #F1F2F4;
  color: #1F2A35;
  font-size: clamp(14px, 1.5rem, 16px);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.test-start-form__ticket:hover {
  border-color: rgba(18, 74, 131, 0.35);
}
.test-start-form__ticket:has(input:checked) {
  border-color: #124A83;
  background: #E9EFF5;
}
.test-start-form__ticket input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #124A83;
}
.test-start-form__ticket span {
  color: #1F2A35;
}

.test-videos {
  margin-bottom: 3.2rem;
  padding: 2.4rem;
  border-radius: 4px;
  background: #E9EFF5;
  border: 1px solid rgba(18, 74, 131, 0.12);
}
.test-videos__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  margin: 0 0 2rem;
  font-size: clamp(18px, 2.4rem, 24px);
}
.test-videos__player-wrap {
  margin-bottom: 1.6rem;
}
.test-videos__player {
  display: block;
  width: 100%;
  max-height: 480px;
  border-radius: 4px;
  background: #1F2A35;
}
.test-videos__current {
  margin: 1rem 0 0;
  font-size: clamp(14px, 1.5rem, 16px);
  font-weight: 600;
  color: #1F2A35;
}
.test-videos__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.test-videos__pick {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(18, 74, 131, 0.2);
  border-radius: 4px;
  background: #FFFFFF;
  color: #1F2A35;
  font: inherit;
  font-size: clamp(14px, 1.5rem, 16px);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.test-videos__pick:hover {
  border-color: #124A83;
}
.test-videos__pick.is-active {
  border-color: #124A83;
  background: #FFFFFF;
  box-shadow: inset 3px 0 0 #124A83;
}
.test-videos__pick-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E9EFF5;
  color: #124A83;
  font-size: 13px;
  font-weight: 700;
}
.test-videos__pick-title {
  flex: 1;
  min-width: 0;
}

.test-run__head {
  margin-bottom: 3.2rem;
}
.test-run__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
}
@media (max-width: 480px) {
  .test-run__title {
    font-size: 4.2rem;
  }
}
.test-run__meta {
  margin-top: 0.8rem;
  color: rgba(31, 42, 53, 0.7);
}
.test-run__form {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.test-run__submit {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(31, 42, 53, 0.1);
}

.edu-question {
  padding: 2.4rem;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(31, 42, 53, 0.06);
}
.edu-question__num {
  font-weight: 600;
  color: #124A83;
}
.edu-question__text {
  margin-top: 1.6rem;
}
.edu-question__media {
  margin-top: 1.6rem;
}
.edu-question__media img, .edu-question__media video {
  max-width: 100%;
  border-radius: 4px;
}
.edu-question__answers {
  margin-top: 2rem;
}
.edu-question__text-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.edu-question__text-input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid rgba(31, 42, 53, 0.1);
  border-radius: 4px;
  font: inherit;
}
.edu-question__text-input:focus {
  outline: none;
  border-color: #124A83;
}

.edu-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.edu-options__item {
  margin: 0;
}
@media (min-width: 769px) {
  .edu-options--visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
}

.edu-option {
  --edu-option-control: 22px;
  --edu-option-gap: 14px;
  display: grid;
  grid-template-columns: var(--edu-option-control) minmax(0, 1fr);
  -moz-column-gap: var(--edu-option-gap);
       column-gap: var(--edu-option-gap);
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(31, 42, 53, 0.1);
  border-radius: 4px;
  font-size: clamp(14px, 1.5rem, 16px);
  line-height: 1.45;
  color: #1F2A35;
  cursor: pointer;
  transition: all 0.2s ease;
}
.edu-option:has(.edu-option__input:checked) {
  border-color: #124A83;
  background: #E9EFF5;
}
.edu-option__input {
  grid-column: 1;
  grid-row: 1;
  width: var(--edu-option-control);
  height: var(--edu-option-control);
  margin: 2px 0 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.edu-option__box {
  grid-column: 1;
  grid-row: 1;
  width: var(--edu-option-control);
  height: var(--edu-option-control);
  margin: 2px 0 0;
  border: 2px solid #6F8FB5;
  border-radius: 50%;
  background: #FFFFFF;
  pointer-events: none;
  position: relative;
  box-sizing: border-box;
}
.edu-option__input:checked + .edu-option__box {
  border-color: #124A83;
  background: #124A83;
}
.edu-option__input:checked + .edu-option__box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
[data-question-type=multiple] .edu-option .edu-option__box {
  border-radius: 4px;
}
.edu-option__input:checked + [data-question-type=multiple] .edu-option .edu-option__box::after {
  width: 10px;
  height: 6px;
  background: transparent;
  border: solid #FFFFFF;
  border-width: 0 0 2px 2px;
  border-radius: 0;
  transform: translate(-50%, -65%) rotate(-45deg);
}
.edu-option__content {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding-top: 1px;
}
.edu-option__label {
  display: block;
  color: inherit;
}
.edu-option__label p {
  margin: 0;
}
.edu-option__media {
  margin-top: 12px;
}
.edu-option__media img,
.edu-option__media video {
  display: block;
  max-width: 100%;
  border-radius: 4px;
}
@media (min-width: 769px) {
  .edu-options--visual .edu-option {
    position: relative;
    display: block;
    height: 100%;
    padding: 14px;
  }
  .edu-options--visual .edu-option__input {
    position: absolute;
    top: 14px;
    left: 14px;
    margin: 0;
  }
  .edu-options--visual .edu-option__box {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    margin: 0;
    box-shadow: 0 2px 8px rgba(31, 42, 53, 0.12);
  }
  .edu-options--visual .edu-option__content {
    width: 100%;
    padding: 0;
  }
  .edu-options--visual .edu-option__content:not(:has(.edu-option__label)) {
    padding-top: 44px;
  }
  .edu-options--visual .edu-option__label {
    display: block;
    min-height: var(--edu-option-control);
    margin: 0 0 12px;
    padding-left: calc(var(--edu-option-control) + 10px);
    line-height: 1.45;
  }
  .edu-options--visual .edu-option__media {
    margin-top: 0;
    clear: both;
  }
  .edu-options--visual .edu-option__media img,
  .edu-options--visual .edu-option__media video {
    display: block;
    width: 100%;
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
}

.test-result__back {
  display: inline-block;
  margin-bottom: 2rem;
  color: #124A83;
  text-decoration: none;
}
.test-result__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .test-result__title {
    font-size: 4.2rem;
  }
}
.test-result__summary {
  padding: 2rem 2.4rem;
  background: #E9EFF5;
  border-radius: 4px;
  margin-bottom: 3.2rem;
}
.test-result__summary p {
  margin: 0 0 0.6rem;
}
.test-result__summary p:last-child {
  margin-bottom: 0;
}
.test-result__score {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
}
.test-result__subtitle {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  margin-bottom: 2rem;
}
.test-result__breakdown {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.test-result__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 4rem;
}

.result-item {
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(31, 42, 53, 0.1);
  background: #FFFFFF;
  max-width: 100%;
  overflow: hidden;
}
.result-item.is-correct {
  border-color: #2e7d32;
  background: #f1f8f2;
}
.result-item.is-incorrect {
  border-color: #c62828;
  background: #fdf5f5;
}
.result-item.is-pending {
  border-color: #ed6c02;
  background: #fff8f0;
}
.result-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.result-item__num {
  font-weight: 600;
}
.result-item__badge {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(31, 42, 53, 0.08);
}
.result-item__question {
  margin-bottom: 1rem;
}
.result-item__media {
  margin: 1.6rem 0;
  max-width: 100%;
  overflow: hidden;
}
.result-item__media img,
.result-item__media video,
.result-item__media picture {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.result-item__media video {
  max-height: min(480px, 70vh);
  -o-object-fit: contain;
     object-fit: contain;
  background: #1F2A35;
}
.result-item__answers-list {
  margin: 1.6rem 0 0;
}
.result-item__answers-list div + div {
  margin-top: 1rem;
}
.result-item__answers-list dt {
  font-weight: 600;
  font-size: 13px;
  color: rgba(31, 42, 53, 0.7);
}
.result-item__answers-list dd {
  margin: 0.4rem 0 0;
}
.result-item__review-form {
  display: flex;
  gap: 1rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(31, 42, 53, 0.1);
}

@media (max-width: 1024px) {
  .portal-main--auth > .container--narrow {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-main--auth > .container--narrow {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1024px) {
  .portal-main--auth .auth-card {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(31, 42, 53, 0.06);
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .portal-main--auth .auth-card {
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(31, 42, 53, 0.06);
  }
}

.auth-card {
  width: 100%;
  padding: 3.2rem;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(31, 42, 53, 0.08);
}
@media (max-width: 1024px) {
  .auth-card {
    padding: 28px 20px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .auth-card {
    padding: 28px 20px;
  }
}
.auth-card__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  font-size: clamp(22px, 3.2rem, 36px);
  margin-bottom: 24px;
  text-align: center;
}
.auth-card__messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.auth-card__switch {
  margin-top: 2rem;
  text-align: center;
  color: rgba(31, 42, 53, 0.7);
}
.auth-card__switch a {
  color: #124A83;
  font-weight: 600;
}
.auth-card__hint {
  margin: 0 0 2rem;
  font-size: clamp(14px, 1.6rem, 16px);
  line-height: 1.45;
  color: rgba(31, 42, 53, 0.7);
  text-align: center;
}

.auth-alert {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 16px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 15px;
  line-height: 1.45;
}
.auth-alert__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.auth-alert__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}
.auth-alert--error {
  background: #fff5f5;
  border-color: #f5c2c0;
  color: #8a1c12;
}
.auth-alert--error .auth-alert__title {
  color: #b42318;
}
.auth-alert--success {
  background: #f0faf3;
  border-color: #b8e0c3;
  color: #1b5e20;
}
.auth-alert--success .auth-alert__title {
  color: #2e7d32;
}
.auth-alert--info {
  background: #E9EFF5;
  border-color: rgba(18, 74, 131, 0.25);
  color: #1F2A35;
}
.auth-alert--info .auth-alert__title {
  color: #124A83;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.auth-form__forgot {
  margin: -0.4rem 0 0;
  text-align: right;
  font-size: clamp(13px, 1.4rem, 15px);
}
.auth-form__forgot a {
  color: #124A83;
  font-weight: 600;
  text-decoration: none;
}
.auth-form__forgot a:hover {
  color: #0b3b6b;
}
.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.auth-form__label {
  font-weight: 600;
  font-size: clamp(8px, 1.4rem, 15px);
}
.auth-form input[type=text],
.auth-form input[type=email],
.auth-form input[type=password] {
  width: 100%;
  padding: 1.2rem 1.6rem;
  border: 1px solid rgba(31, 42, 53, 0.1);
  border-radius: 4px;
  font: inherit;
}
.auth-form input[type=text]:focus,
.auth-form input[type=email]:focus,
.auth-form input[type=password]:focus {
  outline: none;
  border-color: #124A83;
}
.auth-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(8px, 1.4rem, 15px);
  cursor: pointer;
}

.account {
  width: 100%;
}
.account__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  font-size: clamp(26px, 5.2rem, 52px);
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .account__title {
    font-size: 4.2rem;
  }
}
@media (max-width: 1024px) {
  .account__title {
    margin-bottom: 20px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .account__title {
    margin-bottom: 20px;
  }
}
.account__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}
.account__card {
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(31, 42, 53, 0.08);
}
@media (max-width: 1024px) {
  .account__card {
    padding: 24px 20px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .account__card {
    padding: 24px 20px;
  }
}
.account__card--profile {
  padding: 2.4rem;
  min-width: 0;
}
@media (max-width: 1024px) {
  .account__card--profile {
    padding: 24px 20px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .account__card--profile {
    padding: 24px 20px;
  }
}
.account__password {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 42, 53, 0.1);
}
.account__password-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background: none;
  color: #124A83;
  font: inherit;
  font-size: clamp(14px, 1.5rem, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.account__password-toggle:hover {
  color: #0b3b6b;
}
.account__password-toggle[aria-expanded=true]::before {
  content: "− ";
}
.account__password-toggle[aria-expanded=false]::before {
  content: "+ ";
}
.account__password-panel {
  margin-top: 16px;
}
.account__password-panel[hidden] {
  display: none;
}
.account__password-form {
  margin-top: 0;
}
.account__password-panel .auth-card__messages {
  margin-bottom: 16px;
}
.account .btn--sm {
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  padding: 16px 32px;
  min-height: 52px;
  font-size: 15px;
  line-height: 1.2;
}
.account__card--results {
  padding: 2.4rem;
  min-width: 0;
}
@media (max-width: 1024px) {
  .account__card--results {
    padding: 24px 20px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .account__card--results {
    padding: 24px 20px;
  }
}
.account__card-title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  font-size: clamp(20px, 3.2rem, 32px);
  margin: 0 0 20px;
  color: #1F2A35;
}
.account__user {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.03em;
  color: #1F2A35;
  font-size: clamp(18px, 3.2rem, 32px);
  margin: 0;
  color: #1F2A35;
}
.account__email {
  margin: 10px 0 0;
  font-size: clamp(14px, 1.6rem, 16px);
  line-height: 1.45;
  color: rgba(31, 42, 53, 0.7);
}
.account__empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.account__empty-text {
  margin: 0;
  font-size: clamp(14px, 1.6rem, 16px);
  line-height: 1.45;
  color: rgba(31, 42, 53, 0.7);
}

.account-table-wrap {
  overflow-x: auto;
  margin: 0 -2.4rem -2.4rem;
}
@media (max-width: 1024px) {
  .account-table-wrap {
    margin: 0 -20px -24px;
  }
}
@media (orientation: portrait) and (min-width: 1025px) and (max-width: 1280px) {
  .account-table-wrap {
    margin: 0 -20px -24px;
  }
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 0 0 4px 4px;
}
.account-table th, .account-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(31, 42, 53, 0.1);
  font-size: clamp(13px, 1.4rem, 15px);
}
.account-table th {
  background: #F1F2F4;
  font-weight: 600;
  color: #1F2A35;
}
.account-table tr:last-child td {
  border-bottom: none;
}
.account-table a {
  color: #124A83;
  font-weight: 600;
  text-decoration: none;
}
.account-table a:hover {
  color: #0b3b6b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: #124A83;
  color: #FFFFFF;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover {
  background: #0b3b6b;
  color: #FFFFFF;
}
.btn--primary {
  background: #124A83;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #0b3b6b;
  color: #FFFFFF;
}
.btn--outline {
  background: transparent;
  border: 1px solid #124A83;
  color: #124A83;
}
.btn--outline:hover {
  background: #124A83;
  color: #FFFFFF;
}
.btn--lg {
  padding: 1.6rem 3.2rem;
}
.btn--sm {
  padding: 0.8rem 1.6rem;
  font-size: clamp(8px, 1.4rem, 15px);
}
.btn--block {
  width: 100%;
  min-height: 52px;
  padding: 16px 24px;
  font-size: 15px;
}

.notice {
  padding: 1.2rem 1.6rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.notice--error {
  background: #fdecea;
  color: #8a1c12;
}
.notice--success {
  background: #e8f5e9;
  color: #1b5e20;
}
.notice--info {
  background: #E9EFF5;
  color: #1F2A35;
}
.notice--info a {
  color: #124A83;
}
.notice__hint {
  margin-top: 0.8rem;
  opacity: 0.8;
  font-size: clamp(8px, 1.4rem, 15px);
}

.page-404 {
  text-align: center;
  padding: 6rem 0;
}
.page-404__title {
  font-size: 5.2rem;
  line-height: 1.1;
  font-weight: var(--heading-fw, 600);
  letter-spacing: -0.06em;
  color: #1F2A35;
  color: #124A83;
}
@media (max-width: 480px) {
  .page-404__title {
    font-size: 4.2rem;
  }
}
.page-404__text {
  margin: 1.6rem 0 2.4rem;
  color: rgba(31, 42, 53, 0.7);
}
/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */

/*# sourceMappingURL=main.css.map */
