/* ---------- FONTS */
@font-face {
	font-family: 'Onest';
	src: url('../fontefon/Onest-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-stretch: 75% 125%;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fontefon/Inter-VariableFont_opsz_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
/* ---------- LIBS */
/* Switchery http://abpetkov.github.io/switchery/ */
.switchery {
    background-color: #ffffff;
    border: 0.063rem solid #dddddd;
    border-radius: 6.25rem;
    cursor: pointer;
    display: inline-block;
    width: 2.75rem; height: 1.375rem;
    vertical-align: middle;
    position: relative;
    box-sizing: content-box;
}

.switchery>small {
    background-color: #ffffff;
    border-radius: 6.25rem;
    width: 1.375rem; height: 1.375rem;
    position: absolute;
    top: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.switchery-small {
	border-radius: 20px;
	height: 20px; width: 33px;
}

.switchery-small>small {
	height: 20px; width: 20px;
}

.switchery-large {
	border-radius: 40px;
	height: 40px; width: 66px;
}

.switchery-large>small {
	height: 40px; width: 40px;
}

/* ---------- RESET (balance) */
*,
*::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	min-height: 100%;
	width: 100%;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

ol, ul {
	list-style: none;
}

body, a, button, input, textarea, select {
	font: inherit;
	outline: none;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after,
q::before, q::after {
	content: '';
}

/* ---------- UTILITIES */
.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/* ---------- ICONS & IMAGES */
.icon {
	display: inline-block;
	flex: 0 0 auto; /* лучше чем flex-shrink: 0 */
	width: 1em; height: 1em;
	fill: currentColor;
	vertical-align: middle;
}

/* Размеры относительно родительского font-size */
.icon--xs { font-size: 0.5em; }   /* 50% */
.icon--sm { font-size: 0.75em; }  /* 75% */
.icon--md { font-size: 1em; }     /* 100% (по умолчанию) */
.icon--lg { font-size: 1.25em; }  /* 125% */
.icon--xl { font-size: 1.5em; }   /* 150% */
.icon--2x { font-size: 2em; }     /* 200% */

/* ---------- IMAGES */
.imag {
	position: relative;
	display: block;
	overflow: hidden;
	background-color: #f4f4f4;
	flex: 0 0 auto;
}

.imag img {
	display: block;
	width: 100%; height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
	/* плавная загрузка */
}

/* Типы object-fit */
.imag--contain img {
	object-fit: contain;
}

.imag--fill img {
	object-fit: fill;
}

.imag--scale-down img {
	object-fit: scale-down;
}

/* Аспектные соотношения */
.imag--16-9 {
	aspect-ratio: 16/9;
}

.imag--4-3 {
	aspect-ratio: 4/3;
}

.imag--1-1 {
	aspect-ratio: 1/1;
}

.imag--2-1 {
	aspect-ratio: 2/1;
}

/* Lazy loading */
.imag img[loading="lazy"] {
	opacity: 0;
}

.imag img[loading="lazy"].loaded {
	opacity: 1;
}

/* Placeholder для изображений */
.imag::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
	opacity: 0.7;
}

.imag img {
	position: relative;
	z-index: 1;
}

.imag.loading::before {
	display: block;
}

.imag:not(.loading)::before {
	display: none;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

/* Responsive images */
.imag {
	max-width: 100%;
	height: auto;
}

.imag--fixed {
	height: auto;
}

.imag--fixed img {
	height: auto;
	object-fit: unset;
}

/* ---------- VARIABLES */
:root {
	--font-main: 'Onest', system-ui, 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif, Arial;
	--font-ui: 'Inter', system-ui;
	--color-bg: #f5f7fa;
	--color-text: #1e1e1e;
	--color-primary: #0057ff;
	--color-button-text: #ffffff;
	--color-header: #ffffff;
	--color-footer: #e3e7ee;
	--color-card: #ffffff;
}

/* ---------- BASE */
body {
	color: var(--color-text);
	font-size: 16px;
	line-height: 1.6;
	font-family: var(--font-main);
	font-optical-sizing: auto;
	background-color: var(--color-bg);
}

/* ---------- TYPOGRAPHY */
a { 
	color: #00add9;
	text-decoration: none;
}
a:hover { text-decoration: underline; }
a img { border: 0 none; }
a > img { vertical-align: bottom; }

h1,h2,h3,h4,h5,
.h1,.h2,.h3,.h4,.h5 {
	letter-spacing: -0.01em;
	line-height: normal;
	font-weight: bold;
	text-rendering: optimizeLegibility;
}

h1, .h1 { font-size: 23px; }
h2, .h2 { font-size: 21px; }
h3, .h3 { font-size: 20px; }
h4, .h4 { font-size: 18px; }
h5, .h5 { font-size: 16px; }

sup { vertical-align: super; font-size: smaller; }
sub { vertical-align: sub; font-size: smaller; }

ul { padding-left: 40px; list-style: disc outside; margin: 1em 0; }
ol { padding-left: 40px; list-style: decimal outside; margin: 1em 0; }

strong, b { font-weight: bold }
em, cite, i { font-style: italic }
caption { text-align: left }
th, td { vertical-align: middle }
small, .small { font-size: 0.9em; }
hr { height: 0; border: 0; border-top: 2px solid #eeeeef; margin: 20px 0; }

/* ---------- SELECTION & SCROLL */
::selection { background: #5eb9f9; color: #ffffff; }
::-moz-selection { background: #5eb9f9; color: #ffffff; }

/*
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d9d9d9; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3d4159; }
*/

/* ---------- DLE DEPENDENCIES */
.save-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    justify-content: center;
    gap: 20px;
    padding: 10px 0 0 !important;
}

.subscribe-comments {
	display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cancelchanges {
	
}

.applychanges {
	
}

.toup {}
.toup-wrapper .toup__button {
    font-size: 1.5rem;
    border-radius: 50%;
    padding: 5px;
    width: 64px; height: 64px;
}

/* ---------- LAYOUT */
.z00mox {
	display: flex;
	flex-direction: column;
	position: relative;
    min-height: 100vh;
}

.main {
	width: 100%;
    position: relative;
    flex: 1;
}

.container {
	max-width: 1200px;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
    /*padding: 40px 24px;*/
}

.container--page {
	display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
    /*min-height: 100vh;*/
	padding: 6rem 2rem;
}

.cards-grid {
    display: grid;
	grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.cards-grid--cols-1 {
	grid-template-columns: 1fr;
}

.cards-grid--cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.cards-grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.cards-grid--auto {
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* <600px - 1 колонка */
@media (max-width: 768px) {
	.cards-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

/* >900px - 3 колонки (максимум) */
@media (min-width: 900px) {
	.cards-grid {
		
	}
}

.content {
    flex: 1;
    width: 100%;
}

/* ---------- ТЕКСТОВОЕ ФОРМАТИРОВАНИЕ */
.text {
	font-size: 1.125rem; /* 18px base */
	line-height: 1.7;
	color: var(--text-color, #1a1a1a);
	font-weight: 400;
}

/* Параграфы */
.text p {
	margin-bottom: 1em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Заголовки */
.text h1,
.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
	margin: 1.2em 0 0.6em;
	padding-bottom: 0.3em;
	line-height: 1.4;
	font-weight: 700;
	color: var(--text-heading-color, #111);
}

.text h1 {
	font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem); /* ~28–40px */
}

.text h2 {
	font-size: clamp(1.5rem, 1.8vw + 0.5rem, 2rem); /* ~24–32px */
}

.text h3 {
	font-size: clamp(1.25rem, 1.2vw + 0.4rem, 1.6rem); /* ~20–26px */
}

/* Изображения */
.text img {
	display: block;
	margin: 1.5em auto;
	max-width: 100%;
	height: auto;
}

/* Ссылки внутри текста */
.text a {
	color: var(--link-color, #6884ff);
	text-decoration: underline;
	transition: color 0.2s ease;
}

.text a:hover {
	color: var(--link-hover-color, #233ed4);
	text-decoration: none;
}

/* Списки */
.text ul,
.text ol {
	margin: 0 0 1em 2em;
	padding: 0;
}

.text li {
	margin-bottom: 0.4em;
}

/* Цитаты */
.text blockquote {
	margin: 1.5em 0;
	padding: 1em 1.5em;
	background-color: #f9f9ff;
	border-left: 4px solid #6884ff;
	border-radius: 6px;
	font-style: italic;
	color: #333333;
}

/* Медиаадаптивность */
@media (min-width: 768px) {
	.text img {
		max-width: 70%;
	}

	.text {
		font-size: 1.25rem; /* 20px на больших экранах */
	}
}

@media (min-width: 1200px) {
	.text img {
		max-width: 60%;
	}
}

/* ---------- LOGO */
/* Базовый блок */
.logo {
	display: flex;
	flex: 0 0 auto;
	position: relative;
}

.logo__link {
	color: inherit;
	display: inline-block;
	text-decoration: none !important;
}

.logo__icon {
	color: #6884ff;
}

/* Модификатор: лого в шапке */
.logo--header .logo__icon--full {
	width: 200px; height: 72px;
}

.logo--header .logo__icon--mini {
	width: 72px; height: 72px;
}

/* Модификатор: лого в футере */
.logo--footer .logo__icon--full {
	width: 200px; height: 72px;
}

.logo--footer .logo__icon--mini {
	width: 72px; height: 72px;
}

.logo__icon--mini { display: none; }

@media (min-width: 769px) {
	.logo--header .logo__icon--full { display: block; }
	.logo--header .logo__icon--mini { display: none; }
}

@media (max-width: 768px) {
	.logo--header .logo__icon--full { display: none; }
	.logo--header .logo__icon--mini { display: block; }
}

/* МОДАЛЬНЫЕ ОКНА */
.modal {
    max-width: 560px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    font-size: 15px;
}

.modal__header {
	padding: 24px 30px 20px;
	text-align: center;
}
.modal__title   {
	font-size: 24px;
	font-weight: 700;
	color: #2e8b57;
	margin: 0;
}

.modal__body {
	padding: 0 30px;

}
.modal__section + .modal__section {
	margin-top: 28px;
}

.modal__label {
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}
.modal__hint {
	font-size: 14px;
	color: #666666;
	line-height: 1.5;
	margin-bottom: 14px;
}

.modal__password-row { 
    display: flex; 
    align-items: flex-end; 
    gap: 12px; 
    margin: 12px 0; 
}

.modal__password-value {
    background-color: #f7f8fc;
    border: 2px solid #dfdff7;
    color: #111111;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 19px;
    letter-spacing: 1.2px;
    font-weight: bold;
}

.modal__warning { 
    color: #d32f2f; 
    font-weight: 500; 
    margin-top: 10px; 
    line-height: 1.4;
}

.modal__footer { 
    padding: 24px 30px; 
    border-top: 1px solid #eeeeee; 
    text-align: center; 
}

.modal__actions { 
    display: flex;
	justify-content: space-between;
	align-items: center;
}

/* ---------- INFORMATION WINDOW */
.message {
    background: #ffe4d3;
    border-radius: 6px;
    margin: 25px 0; padding: 20px 25px;
	color: #553c33;
}

.message__title {
	font-size: 20px;
	font-weight: bold;
}

.message--full {
    grid-column: 1 / -1;
}

.message--info {
    background-color: #d3efff;
}

.message--error {
    background-color: #ffd3d3;
}

/* ---------- FIELD FORMS */
.form-fields {
	padding: 0; margin: 0;
}

.form-fields:after {
	clear: both;
	display: table;
	content: "";
}

.form-fields__item--group + .form-fields__item--group,
.form-fields__item + .form-fields__item {
	margin-top: 20px;
}

.form-fields__item {
	position: relative;
}

.form-fields__text--note {
	color: #9e9e9e;
	font-size: 14px;
	font-weight: 300;
	margin-top: 0.2rem;
}

.form-fields__checkbox {
	display: flex;
	align-items: center;
	margin-top: 0.4rem;
}

.form-fields__label {
	color: #2f2f2f;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0.4rem;
	display: block;
}

.form-fields__input,
.form-fields__select {
	display: block;
	width: 100%;
}

.form-fields__important:before {
	content: "";
	background: #f65858;
	border: 2px solid #ffffff;
	position: absolute;
	top: 0; right: 0;
	width: 4px; height: 4px;
	padding: 2px;
}

.form-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 40px;
	gap: 10px;
}

@media only screen and (min-width: 601px) {
	.form-fields__item--group {
		display: flex;
		gap: 12px;
	}
	.form-fields__item--group .form-fields__item {
		margin: 0;
	}
	.form-fields__item--group .form-fields__item:after {
		clear: both;
		display: table;
		content: "";
	}
	.form-fields__item--group .form-fields__item {
		width: 50%;
	}
}

/* ---------- PAGINATION */
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 60px 0 30px;
}

.pagination__list {
	display: flex;
	align-items: center;
	gap: 34px;
	/*flex-wrap: wrap;*/
	justify-content: center;
}

/* --- Кнопки "Назад"/"Вперёд" --- */
.pagination__arrow {
	font-size: 18px;
	font-weight: 600;
	color: #999fb1;
	user-select: none;
	transition: all 0.25s ease;
	display: flex;
	align-items: center;
}

.pagination__arrow a,
.pagination__arrow span {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	height: 58px;
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
}

.pagination__arrow a:hover {
	color: #b4b9c6;
	transform: translateY(-1px);
}

/* --- Блок со страницами --- */
.pagination__list--pages {
	gap: 12px;
}

/* Общий стиль для span и ссылок */
.pagination__list--pages span,
.pagination__list--pages a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px; height: 58px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 14px;
	background-color: #ffffff;
	color: #111827;
	border: 2px solid #e1e5eb;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
	text-decoration: none;
	transition: all 0.25s ease;
}

/* Hover для ссылок */
.pagination__list--pages a:hover {
	background-color: #f3f6fa;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* Активная страница (span без ссылки) */
.pagination__list--pages span {
	background-color: #2563eb;
	color: #ffffff;
	border-color: #2563eb;
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
	cursor: default;
}

/* --- Адаптив --- */
@media (max-width: 768px) {

	.pagination__list {
		gap: 20px;
		flex-direction: column;
	}
	
	.pagination__list--pages {
		flex-direction: row;
	}

	.pagination__list--pages span,
	.pagination__list--pages a {
		width: 48px; height: 48px;
		font-size: 16px;
	}

	.pagination__arrow {
		font-size: 16px;
	}
}

/* ---------- ХЛЕБНЫЕ КРОШКИ */
.breadcrumbs {
	color: #343434;
	font-size: 20px;
	font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	margin-bottom: 40px;
	width: 100%;
}

.breadcrumbs a {
	color: var(--link-color, #6884ff);
}

/* ---------- ATTACHMENT */
/* ====== Блок ====== */
.attachment {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    background-color: #fafafa;
    font-family: inherit;
    max-width: 100%;
}

/* ====== Элементы ====== */
.attachment__download {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attachment__download-link {
    font-size: 22px;
    font-weight: 700;
    color: #1a73e8 !important;
    text-decoration: none !important;
    padding: 14px 20px;
    border: 2px solid #1a73e8;
    border-radius: 14px;
    display: inline-block;
    transition: all 0.2s ease;
}

.attachment__download-link:hover {
    background-color: rgba(26,115,232,0.08);
    transform: translateY(-2px);
}

.attachment__meta {
    color: #6f6f6f;
    font-size: 18px;
}

/* Онлайн-просмотр */
.attachment__preview-link {
    font-size: 20px;
    color: #137333;
    padding: 10px 14px;
    border-radius: 10px;
    background-color: #e6f4ea;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all .2s ease;
}

.attachment__preview-link:hover {
    background-color: #d9eddc;
    transform: translateY(-2px);
}

/* Отказ */
.attachment__denied {
    font-size: 20px;
    font-weight: 600;
    color: #d93025;
    padding: 14px 16px;
    border: 2px dashed #d93025;
    border-radius: 14px;
    background-color: #fdf0ef;
}

/* ---------- SOCIAL LINKS */
.social-links {
	
}

.social-links__list {
	display: flex;
}

.social-links__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	transition: all 0.2s;
}

.social-links__item:hover {
	color: #ffffff;
}

/* ---------- HEADER */
.header {
	background-color: #ffffff;
	border-bottom: 1px solid #eeeeee;
	padding: 16px 0;
}

.header {
	background-color: var(--color-header);
	padding: 32px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	
	/*
    position: sticky;
    z-index: 999;
    top: 0;
	*/
}

.header__container {
	padding: 0 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__section {
	display: flex;
	align-items: center;
}

.header__section--left {
	gap: 2rem;
}

.header__section--center {
	flex: 1;
	justify-content: center;
}

@media (max-width: 1023px) {
    .header__container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 0 16px;
		flex-direction: column;
		gap: 15px
    }
}

/* MAIN MENU */
.no-scroll {
	overflow: hidden;
}

/* mobile toggle */
.mobile-menu__toggle {
    display: none;
	flex: 0 0 auto;
    cursor: pointer;
    padding: 12px;
	font-weight: 600;
    font-size: 24px;
	color: #4f46e5;
    background-color: #eef2ff;
    border: 2px solid #4f46e5;
    border-radius: 16px;
    transition: all 0.3s ease;
	gap: 10px;
}

.mobile-menu__toggle:hover {
    background-color: #dbe4ff;
    transform: translateY(-2px);
}

.mobile-menu__icon {
	font-size: 36px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.menu__item {
    position: relative;
}

.menu__link {
    color: #222222;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
	align-items: center;
    width: 100%;
	transition: background-color 0.2s;
	gap: 8px
}

.menu__link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.menu__sub {
    display: none;
    flex-direction: column;
	background-color: #f5f5f5;
    gap: 4px;
	z-index: 9;
}

.menu__item--has-children .menu__icon {
	font-size: 14px;
}

@media (min-width: 1281px) {
    .mobile-menu__toggle {
        display: none;
    }

    .menu {
        flex-direction: row;
    }

    .menu__sub {
        position: absolute;
        top: 100%; left: 0;
        padding: 12px;
        background-color: #ffffff;
        border-radius: 12px;
        min-width: 240px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }

    .menu__item--has-children:hover > .menu__sub {
        display: flex;
    }


    .menu__sub .menu__item--has-children:hover > .menu__sub {
        left: 100%; top: 0;
    }
	
	.menu__item--close-menu {
		display: none;
	}

    .menu__link--expand {
        pointer-events: none;
    }
}

@media (max-width: 1280px) {
	.mobile-menu__toggle {
		display: flex;
		align-items: center;
		justify-content: center;
	}

    .menu {
        display: none;
        position: fixed;
        inset: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 24px;
        z-index: 999;
    }

    .menu.menu--open {
        display: flex;
    }

    .menu__sub {
        padding-left: 20px;
    }

    .menu__item--open > .menu__sub {
        display: flex;
    }
	
	.menu__link--close-menu {
		color: #ffffff;
		font-size: 28px;
		background-color: #ff4343;
		padding: 12px 16px;
	}

    .menu__link--expand {
        pointer-events: auto;
    }
}

@media (max-width: 600px) {
	.mobile-menu__text {
		display: none;
	}
}

/* USER MENU */
.menu-user {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 10px 24px;
    background-color: #f9faff;
    border: 2px solid #e1e3f8;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.menu-user__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	text-decoration: none !important;
	color: #ffffff;
	background-color: #6884ff;
	transition: background-color 0.2s, transform 0.2s;
}

.menu-user__button:hover {
	transform: translateY(-2px);
}

.menu-user__icon {
	width: 26px; height: 26px;
}

.menu-user__button--logout {
	background-color: #ff4343;
}

.menu-user__button--auth {
	display: inline-flex;
	width: auto;
	padding: 14px 26px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	border-radius: 14px;
}

.menu-user__button--auth:hover {
	transform: translateY(-2px);
}

.menu-user__button--login {
	background-color: #0078ff;
}

.menu-user__button--login:hover {
	background-color: #006ae0;
}

.menu-user__button--apply {
	background-color: #ff8a00;
}

.menu-user__button--apply:hover {
	background-color: #e67a00;
}

/* === АДАПТИВ: прячем центральное меню и показываем бургер === */
@media (max-width: 480px) {
	.mobile-menu__text {
		display: inline-block;
	}
}

/* ---------- HERO */
.hero {
	background: #eaf0ff;
	padding: 64px 0;
	text-align: center;
}
.hero__title {
	font-size: 48px;
	margin-bottom: 24px;
}
.hero__description {
	font-size: 22px;
	max-width: 720px;
	margin: 0 auto 32px;
}

/* ---------- VIDEO */
.video {
	margin: 0 0 3rem;
}
.video__container {
	position: relative;
	padding-top: 56.25%; /* 16:9 */
	width: 100%;
}
.video__container iframe {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
}

/* ---------- ЧАТ МАЙН */
/* ===== Chat (Big Size UI, строгий БЭМ) ===== */
.chat {
	display: flex;
	justify-content: center;
	padding: 3rem 2rem;
	background-color: #f5f5f5;
}

.chat__container {
	width: 100%;
	max-width: 1440px;
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
}

.chat__message {
	display: flex;
	flex-direction: column;
	max-width: 85%;
}

.chat__message--left {
	align-self: flex-start;
}

.chat__message--right {
	align-self: flex-end;
}

.chat__bubble {
	cursor: default;
	background-color: #ffffff;
	border-radius: 22px;
	padding: 1.6rem 2rem;
	will-change: transform, filter;
	transition: transform 0.18s ease, filter 0.18s ease;
}

.chat__bubble--right {
	background-color: #3b82f6;
	color: #ffffff;
}

.chat__body {
	display: block;
}

.chat__text {
	margin: 0;
	font-size: clamp(1.2rem, 3vw, 1.45rem);
	line-height: 1.6;
	color: inherit;
	overflow-wrap: break-word;
	word-break: break-word;
}

.chat__text--lead {
	font-weight: 700;
	letter-spacing: -0.01em;
}

.chat__text-emoji {
	margin-left: 0.5rem;
	font-size: 1.4em;
	vertical-align: middle;
}

.chat__emoji-list {
	display: flex;
	gap: 0.6rem;
	padding: 0;
	margin-top: 0.6rem;
	flex-wrap: wrap;
}

.chat__emoji-list:empty {
	display: none;
}

.chat__emoji {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #e5e5e5;
	border-radius: 24px;
	padding: 0.3em 0.7em;
	font-size: 1.15rem;
	color: #222222;
	user-select: none;
	opacity: 0;
	animation: fadeIn 0.3s ease forwards;
	cursor: pointer;
}

.chat__bubble:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
}

.chat__emoji:hover {
	transform: translateY(-2px);
	background-color: #d5d5d5;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@media (min-width: 769px) {
	.chat {
		padding: 4rem;
	}

	.chat__bubble {
		padding: 2rem 2.6rem;
	}

	.chat__text {
		font-size: clamp(1.3rem, 3vw, 1.6rem);
	}

	.chat__emoji {
		font-size: 1.25rem;
		padding: 0.4em 0.9em;
	}

	.chat__text--lead {
		font-size: clamp(1.32rem, 3vw, 1.62rem);
	}
}

@media (max-width: 480px) {
	.chat {
		padding: 1.5rem;
	}

	.chat__bubble {
		padding: 1.2rem 1.6rem;
	}

	.chat__text {
		font-size: clamp(1rem, 2.5vw, 1.2rem);
	}

	.chat__emoji {
		font-size: 1rem;
		padding: 0.2em 0.6em;
	}

	.chat__text--lead {
		font-size: clamp(1.02rem, 2.5vw, 1.22rem);
	}
}

/* ===== ADVANTAGES ===== */
.advantages {
	background: #f9fafc;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.advantages__container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
}

.advantages__item {
	position: relative;
	flex: 1 1 340px;
	max-width: 380px;
	background-color: #ffffff;
	background: linear-gradient(145deg, #ffffff, #d8f0ff);
	border: 2px solid #c9d5eb;
	border: 2px solid #dce3ef;
	border-radius: 32px;
	padding: 90px 32px 56px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	overflow: hidden;
	cursor: default;
}

.advantages__item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* ---------- Иконка и псевдо-параллакс ---------- */
.advantages__icon-layer {
	position: relative;
	width: 120px; height: 120px;
	margin: 0 auto 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #a0f7ff, #6cf);
	box-shadow: 0 10px 25px rgba(0, 190, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transform-style: preserve-3d;
	will-change: transform;
	transition: transform 0.6s ease;
}

.advantages__item:hover .advantages__icon-layer {
	transform: translateY(-12px) scale(1.08);
}

.advantages__emoji {
	font-size: 3rem;
	width: 70%; height: auto;
	transform: translateY(8px);
	transition: transform 0.6s ease;
}

.advantages__item:hover .advantages__emoji {
	transform: translateY(-8px);
}

.advantages__value {
	font-size: 3.4rem;
	font-weight: 800;
	color: #111;
	margin-bottom: 10px;
	line-height: 1;
}

.advantages__title {
	font-size: 1.6rem;
	font-weight: 600;
	color: #111;
	margin-bottom: 16px;
}

.advantages__text {
	font-size: 1.125rem;
	color: rgba(17, 17, 17, 0.75);
	line-height: 1.6;
	max-width: 300px;
	margin: 0 auto;
}

.advantages__item {
	transform: perspective(1000px) translateZ(0);
}

.advantages__icon-layer {
	position: sticky;
}

/* ---------- Адаптив ---------- */
@media (max-width: 1024px) {
	.advantages__container {
		gap: 28px;
	}

	.advantages__item {
		flex: 1 1 auto;
		padding: 32px 24px;
	}
}

@media (max-width: 900px) {
	.advantages {
		padding: 80px 0;
	}

	.advantages__container {
		gap: 40px;
	}

	.advantages__value {
		font-size: 2.6rem;
	}

	.advantages__item {
		padding: 72px 28px 48px;
	}
}

@media (max-width: 768px) {
	.advantages__container {
		flex-direction: column;
		align-items: center;
	}

	.advantages__item {
		max-width: 480px;
		width: 100%;
	}
}

@media (max-width: 600px) {
	.advantages__container {
		flex-direction: column;
		align-items: center;
	}

	.advantages__item {
		width: 100%;
		max-width: 400px;
	}
}

/* APPLY */
.apply-form {
	padding: 6rem 2rem;
	background: linear-gradient(135deg, #f8f9ff 0%, #e0e7ff 100%);
	position: relative;
	overflow: hidden;
}

.apply-form::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23c3dafe"/><circle cx="80" cy="80" r="3" fill="%23a78bfa"/></svg>') repeat;
	opacity: 0.08;
	pointer-events: none;
}

.apply-form__inner {
	max-width: 800px;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 3.5rem 3rem;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.apply-form__title {
	font-size: 2.6rem;
	font-weight: 800;
	margin: 0 0 1.2rem;
	line-height: 1.3;
	color: #1e293b;
}

.gradient-text {
	background: linear-gradient(90deg, #7c3aed, #ec4899);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.apply-form__desc {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.apply-form__desc p {
	margin-bottom: 0.5rem;
}

.apply-form__note {
	font-size: 0.85rem;
	color: #94a3b8;
	text-align: center;
	margin-top: 1.5rem;
	line-height: 1.5;
}

.apply-form__note a {
	color: #7c3aed;
	text-decoration: underline;
}

.apply-form .form-fields {
	margin-bottom: 1.8rem;
}

.apply-form .form-fields__item {
	margin-bottom: 1.5rem;
}

.apply-form .form-fields__label {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.6rem;
}

.apply-form .form-fields__input {
	width: 100%;
	padding: 1.1rem 1.4rem;
	font-size: 1.15rem;
	border: 2px solid #e2e8f0;
	border-radius: 14px;
	background-color: #f8fafc;
	transition: all 0.25s ease;
	font-family: inherit;
}

.apply-form .form-fields__input:focus {
	border-color: #7c3aed;
	background-color: #ffffff;
	box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
}

.apply-form .form-fields__input::placeholder {
	color: #94a3b8;
}

.apply-form .auth__actions {
	margin-bottom: 1rem;
}

.apply-form button {
	width: 100%;
}

.apply-form .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1.1rem 1.5rem;
	font-size: 1.2rem;
	font-weight: 700;
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	border: none;
	font-family: inherit;
}

.apply-form .button--primary {
	background: linear-gradient(90deg, #7c3aed, #ec4899);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.apply-form .button--primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(124, 58, 237, 0.4);
}

.apply-form .button--primary:active {
	transform: translateY(-1px);
}

.apply-form .button__text {
	position: relative;
	z-index: 2;
}

/* Адаптив */
@media (max-width: 640px) {
	.apply-form {
		padding: 4rem 1rem;
	}

	.apply-form__inner {
		padding: 2.5rem 2rem;
	}

	.apply-form__title {
		font-size: 2.2rem;
	}
}

/*-----------------------cta-box--------------------------*/
.cta-box {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.8rem;

	padding: 2rem 2.4rem;
	margin: 2.8rem 0;

	background: #ffffff;
	border-radius: 26px;
	box-shadow: 0 12px 40px rgba(20, 23, 31, 0.08);
	border: 1px solid #e5e7f0;

	transition: 0.3s ease;
}

.cta-box:hover {
	box-shadow: 0 16px 50px rgba(20, 23, 31, 0.12);
	transform: translateY(-4px);
}

.cta-box__icon {
	flex: 0 0 100px;
    width: 100px; height: 100px;
    
	display: flex;
    align-items: center;
    
	justify-content: center;
    border-radius: 18px;
    background: #f0f2ff;
	font-size: 64px;
    color: #5a67d8;
}

.cta-box__content {
	flex: 1;
	min-width: 260px;
}

.cta-box .cta-box__title {
	font-size: 1.7rem;
	font-weight: 800;
	color: #1c1f2b;
	margin: 0 0 0.35rem;
}

.cta-box .cta-box__text {
	font-size: 1.05rem;
	font-weight: 500;
	color: #4a4f63;
	margin: 0;
}

.cta-box form {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	min-width: 260px;
}

.cta-box .form-fields {
	flex: 1;
	min-width: 260px;
	margin: 0;
}

.cta-box .form-fields__item {
	margin: 0;
}

.cta-box .form-fields__input {
	width: 100%;
	padding: 1rem 1.2rem;
	font-size: 1.05rem;

	border-radius: 14px;
	border: 2px solid #d8d9e3;
	background: #fdfdff;

	transition: 0.25s ease;
}

.cta-box .form-fields__input:focus {
	border-color: #5a67d8;
	box-shadow: 0 0 0 4px rgba(90, 103, 216, 0.2);
}

/* BUTTON */
.cta-box .cta-box__actions {
	margin: 0;
}

.cta-box__actions button {
	padding: 0.95rem 2rem;
	font-size: 1.05rem;
	font-weight: 700;

	color: #ffffff;
	background: #5a67d8;
	border: none;
	border-radius: 14px;

	cursor: pointer;
	transition: 0.25s ease;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(90, 103, 216, 0.3);
}

.cta-box__actions button:hover {
	background: #4652c7;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(90, 103, 216, 0.4);
}

/* адаптив */
@media (max-width: 680px) {
	.cta-box {
		flex-direction: column;
		text-align: center;
		padding: 2.2rem 1.8rem;
	}

	.cta-box form {
		width: 100%;
		flex-direction: column;
	}

	.cta-box__actions button {
		width: 100%;
	}
}

.reg-speed .cta-box {
	display: flex;
}

/* F.A.Q */
.faq {
	background-color: #f9fafc;
	padding: 80px 20px;
	display: flex;
	justify-content: center;
}

.faq__container {
	max-width: 760px;
	width: 100%;
}

.faq__title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	color: #111;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: #ffffff;
	background: linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);
	/*background: linear-gradient(180deg, #ffffff 0%, #fdf4f2 100%);*/

	border: 1px solid #cdd5de;
	border-radius: 20px;
	/*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);*/
	box-shadow: 0 10px 30px rgba(50, 60, 80, 0.1);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.faq-item:hover {
	background: linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.faq-item:hover .faq-item__icon{
	background-color: #0057ff;
	transition: background-color 0.3s ease;
}

.faq-item:hover .faq-item__icon::before,
.faq-item:hover .faq-item__icon::after {
	background-color: #ffffff;
}

.faq-item__icon {
	background-color: #dde3ea;
}

.faq-item__text {
	color: #111827;
}

.faq-item__question {
	width: 100%;
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
}

.faq-item__text {
	flex: 1;
	color: #111111;
}

.faq-item__icon {
	width: 24px; height: 24px;
	border-radius: 50%;
	background: #f0f0f0;
	position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 10px; height: 2px;
	background-color: #000000;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item--active .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 28px;
	font-size: 18px;
	color: #333333;
	line-height: 1.5;
	transition: all 0.35s ease;
	opacity: 0;
}

.faq-item--active .faq-item__answer {
	padding: 0 28px 28px;
	max-height: 500px;
	opacity: 1;
}

/* ---------- BUTTONS */
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	padding: 0 32px;
	height: 56px;
	border: none;
	border-radius: 12px;
	background-color: var(--color-primary);
	color: var(--color-button-text);
	font-family: var(--font-ui);
	cursor: pointer;
	text-decoration: none !important;
	transition: background 0.2s ease;
}
.button:hover {
	background-color: #0040cc;
}
.button__text { white-space: nowrap; }

.paper {
	background-color: #ffffff;
	border-radius: 24px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
	position: relative;
}

/* ---------- СТРАНИЦА АВТОРИЗАЦИИ */
.auth {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center; 
}

.auth__card {
	width: 100%;
	max-width: 600px;
	padding: 60px 50px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	box-shadow: 0 10px 40px rgba(51, 56, 150, 0.1);
}

.auth__title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	color: #111;
}

.auth__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 28px;
}

.auth__label {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
}

.auth__input {
	height: 64px;
	padding: 0 20px;
	font-size: 1.1rem;
	color: #111;
	background-color: #f7f8fc;
	border: 2px solid #dfdff7;
	border-radius: 10px;
	transition: border-color 0.2s, background-color 0.2s;
}

.auth__input:focus {
	border-color: #6884ff;
	background-color: #f0f3fe;
}

.auth .form-fields__group + .form-fields__group,
.auth .form-fields__item + .form-fields__item {
	margin-top: 28px;
}

.auth__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0 20px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 28px;
	height: 64px;
	border-radius: 10px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s, box-shadow 0.2s;
	border: none;
}

.button--primary {
	color: #fff;
	background-color: #6884ff;
}

.button--primary:hover {
	background-color: #2849e0;
	box-shadow: 0 4px 10px rgba(51, 86, 237, 0.25);
}

.auth__button {
	flex: 1;
}

.auth__link {
	font-size: 1rem;
	color: #6884ff;
	text-decoration: none;
	transition: color 0.2s;
}

.auth__link:hover {
	color: #2849e0;
}

.auth__actions--links {
	justify-content: space-between;
	margin: 10px 0 0;
}

.auth .social-links {
    margin-top: 40px;
    border-top: 2px solid #f0f2ff;
    padding-top: 30px;
}

.auth__social-label {
	margin-bottom: 16px;
	text-align: center;
	font-weight: 600;
	font-size: 18px;
	color: #444444;
}

.auth .social-links__list {
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.auth .social-links__item {
	display: flex;
	gap: 8px;
	padding: 0 20px;
	height: 56px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 18px;
	color: #ffffff;
	transition: transform 0.2s, box-shadow 0.2s;
}

.auth .social-links__item-icon {
	width: 24px; height: 24px;
}

.auth .social-links__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.auth .social-links__item--telegram {
	background-color: #2ca5e0;
}

.auth .social-links__item--whatsapp {
	background-color: #25d366;
}

.auth .social-links__item--vkontakte {
	background-color: #6383a8;
}

.auth .social-links__item--odnoklassniki {
	background-color: #f4731c;
}

.auth .social-links__item--x {
	background-color: #000;
}

.auth .social-links__item--facebook {
	background-color: #3b5998;
}

.auth .social-links__item--yandex-msg {
	background-color: #03cece;
}

.auth .social-links__item--yandex {
	background-color: #f8604a;
}

.auth .social-links__item--google {
	background-color: #4285f4;
}

.auth .social-links__item--youtube {
	background-color: #ff0033;
}

.auth .social-links__item--mailru {
	background-color: #005ff9;
}

/* адаптивность */
@media (max-width: 640px) {
	.container--page {
		padding: 4rem 1rem;
	}

	.auth__card {
		padding: 2.5rem 2rem;
	}

	.auth__title {
		font-size: 2.2rem;
	}
	
	.auth .form-fields__input,
	.auth__button {
		height: 58px;
		font-size: 1rem;
	}
}

/* ---------- Страницы */
.static-page {
	cursor: default;
	padding: 32px 38px 28px 38px;
	color: #222222;
}

.static-page__title {
	font-size: 2.4rem;
	word-wrap: break-word;
	margin-bottom: 20px;
}

.static-page__date {
	font-size: 16px;
	font-style: italic;
	text-align: right;
}

.static-page__inner {
	padding: 2rem;
}

.static-page__content {
    font-size: 1.36rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ---------- Краткая новость */
.news {
	padding: 64px 0;
}

.news__title {
	font-size: 36px;
	margin-bottom: 40px;
	text-align: center;
}

.news__list {
	/*
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	*/
}

.news__actions {
	display: flex;
	justify-content: center;
	padding: 3rem 0;
}

.news__button {
	background-color: transparent !important;
	box-shadow: none;
	opacity: 0.4;
	color: #999fb1;
	height: 50px;
	font-size: 2rem;
	gap: 1rem;
	transition: all 0.25s ease;
}

.news__button:hover {
	color: #b4b9c6;
	transform: translateY(-4px);
}

.news-card {
	background: var(--color-card);
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.news-card__title {
	font-size: 28px;
	margin-bottom: 16px;
}

.news-card__description {
	font-size: 18px;
	flex-grow: 1;
	margin-bottom: 24px;
}

.news-card__button { align-self: flex-start; }

/* карточка КРАТКАЯ*/
/* ================================
   CARD — Strict BEM + BIG SIZE UI
   Без переменных. Только классы.
   ================================ */

.card {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border: 1px solid #e0e4ea;
	border-radius: 24px;
	box-shadow: 0 12px 40px rgba(15, 20, 25, 0.07);
	overflow: hidden;
	color: #0f172a;
	font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
	line-height: 1.4;
	transition: box-shadow .25s ease, transform .25s ease;
}

.card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 45px rgba(15, 20, 25, 0.1);
}

/* ==== IMAGE ==== */
.card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #f4f6f9;
	overflow: hidden;
}

.card__image-cover {
	display: block;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}

/* ==== CATEGORY TAG ==== */
.card__tag {
	position: absolute;
	top: 18px; left: 18px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	font-size: 15px;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 0.05em;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	z-index: 9;
}

/* ==== BODY ==== */
.card__body {
	height: 100%;
	padding: 36px;
	display: flex;
	flex-direction: column;
	gap: 26px;
}

/* ==== HEADER / TITLE ==== */
.card__header {
	display: block;
}

.card__title {
	margin: 0;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.25;
	color: #0f172a;
	letter-spacing: -0.015em;
}

.card__link {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

.card__link:hover {
	color: #0b74f2;
}

/* ==== DESCRIPTION ==== */
.card__description {
	font-size: 18px;
	line-height: 1.7;
	color: #334155;
}

.card__description p {
	margin: 0;
}

/* ==== FOOTER ==== */
.card__footer {
	display: flex;
	gap: 28px;
	align-items: center;
	flex-wrap: wrap;
	padding-top: 4px;
	margin-top: auto;
}

.card__stat {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	color: #64748b;
}

.card__stat-icon {
	width: 26px; height: 26px;
}

.card__stat-text {
	display: inline-block;
	line-height: 1.1;
}

/* ==== MODIFIERS ==== */

/* Compact — “medium” size version */
.card--compact {
	border-radius: 16px;
}

.card--compact .card__body {
	padding: 20px;
	gap: 16px;
}

.card--compact .card__title {
	font-size: 22px;
}

.card--compact .card__description {
	font-size: 15px;
}

/* Wide — image left */
.card--wide {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.card--wide .card__image {
	flex: 0 0 46%;
	aspect-ratio: auto;
	min-height: 280px;
}

.card--wide .card__body {
	flex: 1 1 54%;
	padding: 40px;
}

/* Highlight — accent border */
.card--highlight {
	border: 2px solid #0b74f2;
	box-shadow: 0 16px 60px rgba(11, 116, 242, 0.12);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
	.card__body {
		padding: 28px;
		gap: 22px;
	}
	.card__title {
		font-size: 26px;
	}
	.card__description {
		font-size: 17px;
	}
}

@media (max-width: 768px) {
	.card--wide {
		flex-direction: column;
	}
	.card--wide .card__image {
		width: 100%;
		min-height: 240px;
	}
}

@media (max-width: 480px) {
	.card {
		border-radius: 18px;
	}

	.card__body {
		padding: 22px;
		gap: 18px;
	}

	.card__title {
		font-size: 22px;
	}

	.card__description {
		font-size: 16px;
	}

	.card__tag {
		top: 12px; left: 12px;
		padding: 7px 12px;
		font-size: 13px;
	}

	.card__stat-icon {
		width: 22px; height: 22px;
	}
}


/* ---------- Полная новость */
/* Основной контейнер */
.post-full {
	background-color: transparent;
}

.post-full__section {
	margin-top: 38px;
}

/* Каждый крупный блок - отдельный с фоном и тенью */
/* Header */
.post-header {
	display: flex;
	align-items: flex-start;
	background-color: #6884ff;
	background-color: #6884ff;
	gap: 36px;
	padding: 40px;
	padding: 50px 40px;
	margin: 0 0 25px;
	color: #ffffff;
	box-shadow: 0 6px 28px rgba(55, 85, 185, 0.18);
}

.post-header__poster {
	flex: 0 0 240px;
	min-width: 240px;
}

.post-header__image {
	display: block;
	width: 240px; height: 240px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14);
}

.post-header__info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.post-header__category {
	display: inline-block;
	background-color: #ffffff;
	color: #6884ff;
	color: #6884ff;
	border-radius: 8px;
	font-size: 1.15rem;
	font-weight: bold;
	padding: 8px 22px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
	align-self: flex-start;
}

.post-header__category:hover {
	background-color: #f4f6fd;
	color: #1a3472;
}

.post-header__title {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.18;
	margin: 0 0 14px 0;
}

.post-header__stats {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
	font-size: 1.15rem;
}

.post-header__stats-item {
	background: rgba(255, 255, 255, 0.23);
	padding: 8px 13px;
	border-radius: 7px;
    line-height: normal;
	font-weight: 500;
	display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-header__views {
	
}

.post-header__rating {
	
}

.post-header__comments-count {

}

.post-actions {
	display: flex;
	gap: 24px;
	align-items: center;
	flex-wrap: wrap;
	font-size: 1.15rem;
    /*border-radius: 50px;*/
    margin: 0 0 50px;
    padding: 18px 20px;
}

.post-actions__button {
    background-color: #6884ff;
    color: #ffffff;
	font-size: 1.16rem;
	font-weight: 700;
	padding: 10px 26px;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
}

.post-actions__button:hover {
	background-color: #233894;
	color: #ffffff;
}

/* Описание */
.post-content {
	padding: 32px 38px 28px 38px;
	color: #222222;
}

.post-content__text {
	font-size: 1.36rem;
	line-height: 1.6;
	font-weight: 400;
	margin: 0;
}

/* Список комментариев */
.post-comments {
	padding: 33px 38px 19px 38px;
}

.post-comments__title {
	font-size: 1.9rem;
	font-weight: 700;
	margin: 0 0 32px 0;
}

.post-comments__list {
	
}

.comment {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	padding: 24px;
	margin-bottom: 32px;
	background-color: #f9f9f9;
	border: 2px solid #e0e0e0;
	border: 2px solid #e8e8e8;
	border-radius: 16px;
	font-size: 18px;
	line-height: 1.6;
}

.comment__avatar {
	flex-shrink: 0;
	width: 80px; height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #dddddd;
	background-color: #dfdfdf;
	background-color: #e8e8e8;
}

.comment__avatar img {
	width: 100%; height: 100%;
	object-fit: cover;
}

.comment__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.comment__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.comment__author {
	font-weight: 700;
	font-size: 20px;
	color: #222222;
	text-decoration: none;
	transition: color 0.2s ease;
}

.comment__author:hover {
	color: #0078ff;
}

.comment__date {
    color: #64748b;
    font-size: 17px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.comment__date-icon {
	width: 20px; height: 20px;
}

.comment__text {
	font-size: 18px;
	color: #333333;
	background-color: #ffffff;
	padding: 16px 20px;
	border-radius: 12px;
	border: 1px solid #ddd;
	word-wrap: break-word;
}

.comment__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 8px;
}

.comment__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 48px;
	padding: 10px 18px;
	color: #444444;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none !important;
	background-color: #ffffff;
	border: 2px solid #cccccc;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.comment__button:hover {
	background-color: #0078ff;
	border-color: #0078ff;
	color: #ffffff;
}

.comment__button-icon {
	width: 22px; height: 22px;
	fill: currentColor;
	transition: fill 0.2s ease;
}

.comment__button-text {
	display: inline-block;
}

.comment__switch {
	margin-left: auto;
}

/* ================================
   🧩 Блок массовых действий с комментами
   ================================ */
.comments-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: end;
	gap: 20px;
	padding: 20px;
	background-color: #f9faff;
	border: 2px solid #e1e3f8;
	border-radius: 12px;
}

/* Метка слева */
.comments-actions__label {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333333;
}

/* Контейнер для элементов управления */
.comments-actions__controls {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Селект (наследует общие input-стили) */
.comments-actions__select {
	height: 64px;
	padding: 0 20px;
	font-size: 1.1rem;
	color: #111111;
	background-color: #f7f8fc;
	border: 2px solid #dfdff7;
	border-radius: 10px;
	transition: border-color 0.2s linear, background-color 0.2s linear;
	cursor: pointer;
}

.comments-actions__select:focus {
	border-color: #6884ff;
	background-color: #f0f3fe;
}

/* Кнопка (унифицированный стиль Big UI) */
.comments-actions__button {
    flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	width: 64px; height: 64px;
	border-radius: 10px;
	font-size: 2rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s, box-shadow 0.2s;
	border: none;
}

/* Основной цвет кнопки */
.button--primary {
	color: #ffffff;
	background-color: #6884ff;
}

.button--primary:hover {
	background-color: #2849e0;
	box-shadow: 0 4px 10px rgba(51, 86, 237, 0.25);
}

/* ================================
   🧱 Адаптивность
   ================================ */
@media (max-width: 768px) {
	.comments-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.comments-actions__controls {
		width: 100%;
		flex-direction: column;
		gap: 12px;
	}

	.comments-actions__select,
	.comments-actions__button {
		width: 100%;
	}
}


/* Форма добавления комментариев */
.comment-add {
	box-shadow: 0 3px 15px rgba(33, 60, 156, 0.08);
	padding: 38px 40px;
}

.comment-add__title {
	font-size: 1.34rem;
	font-weight: 700;
	margin-bottom: 21px;
	color: #26397d;
}

.comment-add__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.comment-form__input,
.comment-form__textarea {
	width: 100%;
	padding: 18px;
	border-radius: 10px;
	border: 2px solid #dfdff7;
	font-size: 1.18rem;
	background-color: #f7f8fc;
}

.comment-form__input:focus,
.comment-form__textarea:focus {
	border-color: #6884ff;
	background: #f0f3fe;
}

.comment-form__button {
	width: 100%;
	background-color: #6884ff;
	color: #ffffff;
	font-size: 1.19rem;
	font-weight: 700;
	padding: 14px 20px;
	border: none;
	border-radius: 9px;
	cursor: pointer;
	margin-top: 4px;
	transition: background-color 0.18s;
}

.comment-form__button:hover {
	background-color: #1e366b;
}

.textarea-auto {
	min-height: 80px;
	resize: none;
}

/* Big UI: Обеспечивает крупность блоков на мобильных */
@media (max-width: 750px) {
	.post-full {
		max-width: 100%;
		margin: 0;
	}

	.post-header,
	.post-content,
	.post-comments,
	.comment-add {
		border-radius: 16px;
		padding: 15px 7px;
		margin-bottom: 20px;
	}

	.post-header {
		flex-direction: column;
		gap: 16px;
		padding: 18px 7px;
	}

	.post-header__poster {
		margin: 0 auto 16px auto;
	}
}

/* === БЭМ-структура, строгий нейминг === */

.user-page__section + .user-page__section {
	margin-top: 38px;
}

.profile {
	padding: 36px;
}

.profile__container {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 32px;
}

.proflie__box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.profile__avatar {
	width: 140px;height: 140px;
	border-radius: 50%;
	object-fit: cover;
	background: #e0e0e0;
	flex-shrink: 0;
}

.profile__avatar-image {
	width: 140px;
	height: 140px;
	border-radius: 24px;
	object-fit: cover;
}

.profile__info {
	width: 100%;
	column-count: 4;
	column-gap: 20px;
	column-fill: balance;
}


.profile__field {
	display: flex;
	flex-direction: column;
	border: 2px dashed #e2e2e2;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05);
	border-radius: 10px;
	padding: 12px 16px;
	gap: 6px;
	
	break-inside: avoid;
	margin-bottom: 20px; 
	display: inline-block;
	width: 100%;
}

.profile__label {
	color: #5f6368;
	font-weight: 500;
	font-size: 18px;
}

.profile__value {
	font-weight: 600;
	font-size: 18px;
	word-break: break-word;
}

.profile__link {
	color: #1a73e8;
	font-size: 16px;
}

.profile__link:before {
	content: "[";
	padding-right: 5px;
}

.profile__link:after {
	content: "]";
	padding-left: 5px;
}

.profile__field-actions {
	margin-top: 4px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.form-fields__link {
	color: var(--accent, #1a73e8);
	font-size: 15px;
	text-decoration: none;
}
.form-fields__link:hover {
	text-decoration: underline;
}

.lvp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.lvp__lock,
.lvp__unlock {
	padding: 2px 8px;
	border-radius: 6px;
}

.lvp__lock {
	background: #e8f0fe;
	color: #1a73e8;
}

.lvp__lock {
	background: #fef7e0;
	color: #f9ab00;
}

.lvp__unlock {
	background: #e6f4ea;
	color: #137333;
}

.profile__actions {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.profile__btn {
	padding: 16px 28px;
	font-size: 20px;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all .2s ease;
	flex: 1;
}

.profile__btn--primary {
	background: #1a73e8;
	color: #fff;
}

.profile__btn--primary:hover {
	background: #1669c1;
}

.profile__btn--secondary {
	background: transparent;
	color: #1a73e8;
	border: 2px solid #1a73e8;
}

.profile__btn--secondary:hover {
	background: rgba(26, 115, 232, .08);
	transform: translateY(-1px);
}

.profile__btn--danger {
	background: #d93025;
	color: #fff;
}

.profile__btn--danger:hover {
	background: #c7221a;
}

/* ============================
   Адаптивность профиля
   ============================ */

/* --- 1200px --- */
@media (max-width: 1200px) {
	.profile__info {
		column-count: 3;
	}
}

/* --- 992px (планшеты) --- */
@media (max-width: 992px) {
	.profile {
		padding: 24px;
	}

	.profile__container {
		flex-direction: column;
	}

	.profile__info {
		column-count: 2;
	}

	.profile__avatar,
	.profile__avatar-image {
		width: 120px;
		height: 120px;
	}

	.proflie__box {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}
}

/* --- 768px (малые планшеты / большие смартфоны) --- */
@media (max-width: 768px) {
	.profile {
		padding: 20px;
	}

	.profile__info {
		column-count: 1;
		column-gap: 16px;
	}

	.profile__field {
		padding: 10px 14px;
	}

	.profile__label,
	.profile__value {
		font-size: 16px;
	}

	.profile__actions {
		flex-direction: column;
	}

	.profile__btn {
		width: 100%;
		font-size: 18px;
		padding: 14px 20px;
	}
}

/* --- 576px (телефоны) --- */
@media (max-width: 576px) {
	.profile {
		padding: 16px;
	}

	.profile__container {
		gap: 16px;
	}

	.proflie__box {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1rem;
	}

	.profile__avatar,
	.profile__avatar-image {
		width: 100px;
		height: 100px;
	}

	.profile__btn {
		font-size: 16px;
		padding: 12px 18px;
	}

	.profile__field {
		margin-bottom: 16px;
	}

	.lvp {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

/* --- 400px (маленькие телефоны) --- */
@media (max-width: 400px) {
	.profile__avatar,
	.profile__avatar-image {
		width: 90px;
		height: 90px;
	}

	.profile__btn {
		font-size: 15px;
		padding: 10px 16px;
	}
}


/* === Блок: Результаты по предметам === */
.user-result {
	padding: 30px;
}

.user-result__title {
    font-size: 32px;
    margin: 0 0 24px;
    font-weight: 600;
}

/* =========================================================
   USER RESULT BLOCKS (BIG UI)
   ========================================================= */
.user-result__block {
	margin-bottom: 32px;
	background: #ffffff;
	border-radius: 20px;
	padding: 28px 32px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	border: 1.5px solid #e2e8f0;
}

.user-result__block-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 16px;
}

.user-result__block-title {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.02em;
}

/* =========================================================
   STATS TABLE (BIG SIZE)
   ========================================================= */
.user-result__table.stats-table--big {
	font-size: 18px;
	line-height: 1.45;
}

.stats-table__header {
	padding: 0 8px 16px;
	border-bottom: 2px solid #6366f1;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.stats-table__col--name {
	flex: 1;
	min-width: 180px;
	font-weight: 600;
	color: #64748b;
}

.stats-table__col--score {
	text-align: right;
	font-weight: 700;
	color: #64748b;
}

.stats-table__row {
	display: flex;
	align-items: center;
	padding: 14px 8px;
	border-radius: 14px;
	transition: all 0.25s ease;
}

.stats-table__row:hover {
	background: rgba(99, 102, 241, 0.06);
	transform: translateY(-1px);
}

.stats-table__text {
	font-weight: 600;
	color: #0f172a;
}

.stats-table__col--name .stats-table__text {
	font-size: 20px;
}

.stats-table__col--score .stats-table__text {
	font-size: 22px;
	font-weight: 800;
	background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */
.stats-table__row--empty {
	padding: 60px 20px;
	justify-content: center;
}

.stats-table__col--full {
	flex: 1;
	text-align: center;
}

.stats-table__empty-title {
	font-size: 20px;
	font-weight: 700;
	color: #64748b;
	margin: 16px 0 8px;
}

.stats-table__empty-hint {
	font-size: 15px;
	color: #94a3b8;
	max-width: 420px;
	margin: 0 auto;
	line-height: 1.5;
}

/* =========================================================
   BUTTONS (BIG UI)
   ========================================================= */
   /*
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.button--big {
	padding: 16px 32px;
	font-size: 17px;
	font-weight: 700;
	border-radius: 16px;
	min-height: 64px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.button--big:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.button--primary {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.button--secondary {
	background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.button--accent {
	background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
}

.button__text {
	position: relative;
	z-index: 2;
	font-weight: 700;
}
*/

/* =========================================================
   MOBILE ADAPTATION
   ========================================================= */
@media (max-width: 640px) {
	.user-result__block {
		padding: 20px 16px;
		border-radius: 16px;
	}

	.user-result__block-header {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}

	.stats-table__row {
		flex-direction: column;
		text-align: center;
		padding: 20px 16px;
	}

	.stats-table__col--score {
		margin-top: 8px;
	}

	.button--big {
		width: 100%;
	}
}


/* === Блок: Список доступных ответов для Вашего ППЭ === */
.user-ppe {
	padding: 36px;
}

.user-ppe__title {
    font-size: 32px;
    margin: 0 0 24px;
    font-weight: 600;
}

/* ==================== PPE LIST ==================== */
.ppe-list {
    margin-top: 24px;
}

.ppe-list__group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

.ppe-list__item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.25s ease;
    flex: 1 1 300px;
    max-width: 100%;
}

.ppe-list__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: #c7d2fe;
}

.ppe-list__label {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppe-list__label::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ec4899;
    flex-shrink: 0;
}

/* ==================== LIST-LESSONS (БЭМ) ==================== */
.list-lessons {
    margin: 0;
    padding-left: 28px;
    list-style: decimal;
    font-size: 17px;
    line-height: 1.5;
}

/* Модификаторы типа экзамена */
.list-lessons--ege { color: #6366f1; }
.list-lessons--oge { color: #0ea5e9; }
.list-lessons--essay { color: #f59e0b; }

/* Элемент */
.list-lessons__item {
    margin-bottom: 12px;
    color: #475569;
}

/* Модификатор: пустое состояние */
.list-lessons__item--empty {
    list-style: none;
    margin-left: -28px;
    padding: 16px 20px;
    background-color: #fdf2f8;
    border-radius: 12px;
    font-weight: 600;
    color: #be185d;
    text-align: center;
    font-style: italic;
    font-size: 16px;
}

/* Модификатор: ссылка */
.list-lessons__item--link {
    margin-bottom: 10px;
    list-style: none;
    margin-left: -28px;
}

.list-lessons__link {
    display: block;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f8faff 0%, #f1f5f9 100%);
    border-radius: 12px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
    font-size: 17px;
}

.list-lessons__link:hover {
    background: #e0e7ff;
    color: #6366f1;
    border-color: #6366f1;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

/* Иконка стрелки (опционально) */
.list-lessons__link::after {
    content: "→";
    margin-left: 8px;
    font-weight: 700;
    opacity: 0.7;
}

/* ==================== МОБИЛЬНАЯ АДАПТАЦИЯ ==================== */
@media (max-width: 640px) {
    .ppe-list__group {
        flex-direction: column;
        gap: 20px;
    }

    .ppe-list__item {
        padding: 20px 16px;
        flex: 1 1 auto;
    }
   
    .ppe-list__label {
        font-size: 18px;
    }
   
    .list-lessons__item--empty {
        font-size: 15px;
        padding: 14px 16px;
        margin-left: -20px;
    }
   
    .list-lessons {
        padding-left: 20px;
    }

    .list-lessons__item--link {
        margin-left: -20px;
    }

    .list-lessons__link {
        padding: 14px 16px;
        font-size: 16px;
    }
}

/*
.list-lessons {
	list-style-type: none; 
	counter-reset: num;
	margin: 0; padding: 15px 0 5px 0;
	font-size: 16px;
}

.list-lessons__item {
	display: flex;
	align-items: center;
	position: relative;	
	margin: 0;
	gap: 8px;
}

.list-lessons__item:before {
	content: counter(num); 
	counter-increment: num;
	display: inline-block;
	width: 28px; height: 28px;
	background-color: #ffffff;
	border: 1px solid #ef6780;
	border-radius: 50%;
	text-align: center;
	line-height: 28px;
	font-size: 18px;
	color: #000000;
}

.list-lessons__item_not-subject {
	color: #f65858;
	color: #5f6368;
}

.list-lessons__item_not-subject:before {
	display: none;
}

.list-lessons__item + .list-lessons__item {
	margin-top: 10px;
}
*/

/* === Блок: Таблицы ЕГЭ И ОГЭ === */
.user-exam {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.user-exam__table {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	overflow: hidden;
}

.user-exam__title {
	padding: 20px 28px;
	background-color: #f8f9fa;
	background-color: #ffffff;
	/*background: linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);*/
	background: linear-gradient(180deg, #ffffff 0%, #fdf4f2 100%);
	font-size: 24px;
	font-weight: 600;
	margin: 0;
	border-bottom: 1px solid #dadce0;
}

.exam-table__empty {
    padding: 30px;
    text-align: center;
    font-size: 18px;
    color: #999999;
    background: #f8f8f8;
    border: 2px dashed #dddddd;
    border-radius: 8px;
}

/**/
.exam-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 20px 20px 0 0;
	border-radius: 0;
	overflow: hidden;
	background-color: #ffffff;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	color: #222222;
}

.exam-table__head {
	background-color: #1e88e5;
	color: #ffffff;
}

.exam-table__row--head .exam-table__cell {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	padding: 24px 20px;
	letter-spacing: 0.5px;
}

.exam-table__body .exam-table__row {
	transition: background-color 0.25s, transform 0.15s;
}

.exam-table__body .exam-table__row:hover {
	background-color: #f5f8ff;
	transform: translateY(-1px);
}

.exam-table__cell {
	font-size: 18px;
	text-align: center;
	padding: 20px;
	border-bottom: 1px solid #edf0f5;
}

.exam-table__cell--subject {
	text-align: left;
	font-weight: 600;
	font-size: 20px;
	color: #1a237e;
}

.exam-table__status {
	font-size: 32px;
}

.exam-table__status--good {
	color: #1b5e20;
	background-color: #c8e6c9;
}

.exam-table__status--normal {
	color: #1565c0;
	background-color: #bbdefb;
}

.exam-table__status--bad {
	color: #b71c1c;
	background-color: #ffcdd2;
}

@media (max-width: 580px) {
	.user-exam {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1280px) {
	
  .exam-table__head {
    display: none;
  }

  .exam-table__body {
    display: block;
  }

  .exam-table__row {
    display: block;
    background-color: #ffffff;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .exam-table__row:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .exam-table__row:last-child {
    margin-bottom: 0;
  }

  .exam-table__cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px dashed #e0e0e0;
  }

  .exam-table__cell:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .exam-table__cell--subject {
    font-size: 20px;
    font-weight: 600;
    color: #1a237e;
    padding: 0 0 16px 0;
    margin-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
    justify-content: flex-start;
  }

  .exam-table__status {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 600;
  }
  
  .exam-table__status + .exam-table__status {
    margin-top: 10px;
  }

  /* подписи этапов */
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(2)::before,
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(3)::before,
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(4)::before,
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(5)::before,
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(6)::before {
    font-weight: 600;
    color: #424242;
  }

  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(2)::before { content: "Этап 1"; }
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(3)::before { content: "Этап 2"; }
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(4)::before { content: "Этап 3"; }
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(5)::before { content: "Этап 4"; }
  .exam-table__row > .exam-table__cell--subject ~ .exam-table__cell:nth-child(6)::before { content: "Этап 5"; }

  .exam-table__cell--subject .exam-table__status {
    display: none;
  }
}

/* === Блок: settings === */
.settings {
	background: #ffffff;
	padding: 36px;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.settings__title {
	font-size: 32px;
	margin-top: 0;
	margin-bottom: 24px;
	font-weight: 600;
}

.settings__form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

@media (max-width: 900px) {
	.settings__form {
		grid-template-columns: 1fr;
	}
}

.settings__group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.settings__label {
	font-weight: 500;
	color: #5f6368;
	font-size: 20px;
}

.settings__input,
.settings__select {
	padding: 16px 20px;
	font-size: 20px;
	border: 1px solid #dadce0;
	border-radius: 8px;
	background: #fff;
	transition: all .2s ease;
}

.settings__input:focus,
.settings__select:focus {
	border-color: #1a73e8;
	box-shadow: 0 0 0 3px rgba(26, 115, 232, .1);
}

.settings__avatar-wrapper {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px;
	background-color: #f8f9fa;
	border-radius: 8px;
}

.settings__avatar-preview {
	width: 120px; height: 120px;
	border-radius: 50%;
	object-fit: cover;
	background-color: #e0e0e0;
	flex-shrink: 0;
}

.settings__btn-group {
	grid-column: 1 / -1;
	display: flex;
	gap: 12px;
	margin-top: 32px;
}

/* === Блок: PM === */
/* =====================================================
   PM – Личные сообщения (BIG UI + СТРОГИЙ БЭМ)
   ===================================================== */

.pm,
.pm--view {
	line-height: 1.6;
	color: #2c3e50;
	background-color: #f5f7fa;
	min-height: 100vh;
}

.pm__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2.5rem 2rem;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Заголовок */
.pm__title {
	font-size: 2.8rem;
	font-weight: 800;
	margin: 0 0 2rem 0;
	color: #1a1a1a;
}

/* Навигация */
.pm-nav {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
}

.pm-nav__item {
	font-size: 1.4rem;
	font-weight: 600;
	padding: 1rem 2rem;
	border-radius: 14px;
	background-color: #eef2f7;
	color: #555555;
	text-decoration: none;
	transition: all 0.25s;
}

.pm-nav__item--active,
.pm-nav__item:hover {
	background-color: #0069d9;
	color: #ffffff;
	box-shadow: 0 6px 16px rgba(0, 105, 217, 0.3);
}

/* Прогресс-бар */
.pm-status {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 2.5rem;
	font-size: 1.15rem;
	color: #666666;
}

.pm-status__bar {
	flex: 1;
	height: 18px;
	background-color: #e9ecef;
	border-radius: 9px;
	overflow: hidden;
	position: relative;
}

.pm-status__fill {
	height: 100%; width: 0;
	background: linear-gradient(90deg, #a855f7 0%, #ec4899 100%);
	transition: width 0.4s ease;
	position: relative;
}

.pm-status__fill[style="width: 3%"] .pm-status__fill-text {
	color: #f5f5f5 !important;
}

.pm-status__fill-text {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	padding: 0 8px;
	text-align: right;
	line-height: 1.3;
	font-size: 14px;
	color: #1a1a1a;
	font-weight: 600;
}

.pm-status__text {
	font-weight: 600;
	font-size: 18px;
	white-space: nowrap;
}

/* =====================================================
   СПИСОК СООБЩЕНИЙ — СТРОГИЙ БЭМ
   ===================================================== */

.pm-list__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 14px;
	font-size: 1.25rem;
}

.pm-list__thead {
	background-color: #f8f9fa;
	text-align: left;
	font-weight: 700;
	font-size: 1.15rem;
	color: #444444;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pm-list__head-row {
	background-color: transparent;
}

.pm-list__head {
	padding: 1.4rem 1.2rem;
	border-bottom: 2px solid #dee2e6;
}

.pm-list__head--icon {
	width: 80px;
	text-align: center;
}

.pm-list__head--subject {
	width: auto;
}

.pm-list__head--user {
	width: 180px;
}

.pm-list__head--check {
	width: 80px;
	text-align: center;
}

.pm-list__tbody {
	/* можно добавить отступы */
}

/* Строка сообщения */
.pm-item {
	background-color: #ffffff;
	border-radius: 14px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
	transition: all 0.2s ease;
	cursor: pointer;
}

.pm-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pm-item--unread {
	background-color: #fffbe6;
	font-weight: 700;
	border-left: 6px solid #f39c12;
}

.pm-item__cell {
	padding: 1.8rem 1.2rem;
	vertical-align: top;
}

.pm-item__cell--icon {
	text-align: center;
}

.pm-item__cell--subject {
	width: 100%;
}

.pm-item__cell--user {
	min-width: 140px;
}

.pm-item__cell--check {
	text-align: center;
}

/* Иконка статуса */
.pm-status-icon {
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pm-status-icon--unread {
	color: #e74c3c;
}

.pm-status-icon--read {
	color: #27ae60;
}

.pm-status-icon--received {
	color: #95a5a6;
}

/* Текст в ячейке */
.pm-item__subject {
	font-size: 1.55rem;
	margin-bottom: 0.6rem;
	font-weight: 600;
}

.pm-item__link {
	color: #0069d9;
	text-decoration: none;
	font-weight: 600;
}

.pm-item__link:hover {
	text-decoration: underline;
}

.pm-item__preview {
	font-size: 1.2rem;
	color: #555555;
	line-height: 1.55;
	margin: 0.8rem 0;
	max-height: 3.1em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.pm-item__with {
    font-style: italic;
    font-size: 1.1rem;
    color: #777777;
}

.pm-item__with a {
	font-style: normal;
}

.pm-item__user {
	color: #0069d9;
	text-decoration: none;
	font-weight: 600;
}

.pm-item__user:hover {
	text-decoration: underline;
}

.pm-item__last-user {
	margin-bottom: 0.4rem;
}

.pm-item__date {
	font-size: 1.1rem;
	color: #888888;
}

/* Чекбоксы */
.pm-checkbox {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.pm-checkbox__input {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%; height: 100%;
	cursor: pointer;
	z-index: 1;
}

.pm-checkbox__box {
	width: 32px; height: 32px;
	border: 3px solid #ced4da;
	border-radius: 10px;
	background-color: #ffffff;
	display: block;
	transition: all 0.2s;
	position: relative;
}

.pm-checkbox__input:checked+.pm-checkbox__box {
	background-color: #0069d9;
	border-color: #0069d9;
}

.pm-checkbox__input:checked+.pm-checkbox__box::after {
	content: "✓";
	color: #ffffff;
	font-weight: bold;
	font-size: 22px;
	line-height: 28px;
	text-align: center;
	display: block;
}

/* Действия */
.pm-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 0;
	border-top: 2px solid #eef2f7;
	margin-top: 1rem;
}

.pm-actions__right {
	display: flex;
	gap: 1.2rem;
	align-items: center;
}

.pm-select {
	font-size: 1.2rem;
	padding: 0.9rem 1.4rem;
	border-radius: 12px;
	border: 2px solid #ced4da;
	background-color: #ffffff;
}

.pm-btn {
	font-size: 1.3rem;
	font-weight: 600;
	padding: 1rem 2.2rem;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.2s;
}

.pm-btn--primary {
	background-color: #0069d9;
	color: #ffffff;
	border: none;
}

.pm-btn--primary:hover {
	background-color: #0052cc;
	transform: translateY(-2px);
}

.pm-btn--big {
	font-size: 1.5rem;
	padding: 1.3rem 3rem;
}

/* =====================================================
   ПЕРЕПИСКА (открытое сообщение)
   ===================================================== */

.pm-thread {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem 3rem;
}

.pm-thread__title {
	font-size: 2.4rem;
	font-weight: 700;
	margin: 2.5rem 0 2rem;
	padding-bottom: 0.8rem;
	border-bottom: 3px solid #eef2f7;
	color: #1a1a1a;
}

.pm-messages {
	margin-bottom: 3rem;
}

/* Одно сообщение в переписке */
.pm-message {
	display: flex;
	gap: 1.8rem;
	padding: 2rem 0;
	border-bottom: 1px solid #eef2f7;
}

.pm-message:last-child {
	border-bottom: none;
}

.pm-message__info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}

.pm-message__avatar {
	flex: 0 0 76px;
}

.pm-avatar {
	width: 76px; height: 76px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: #e9ecef;
	border: 4px solid #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	position: relative;
	display: block;
}

.pm-avatar__online {
	position: absolute;
	bottom: 4px;
	right: 4px;
	background-color: #28a745;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	border: 3px solid #ffffff;
}

.pm-message__user {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pm-message__name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0069d9;
	text-decoration: none;
}

.pm-message__name:hover {
	text-decoration: underline;
}

.pm-message__time {
	font-size: 1.1rem;
	color: #888888;
	margin-top: 0.3rem;
}

/* Действия над сообщением */
.pm-message__actions {
	align-self: center;
}

.pm-message__action-list {
	display: flex;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pm-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px; height: 52px;
	border-radius: 16px;
	background-color: #f8f9fa;
	color: #555555;
	font-size: 1.7rem;
	text-decoration: none;
	transition: all 0.25s;
}

.pm-action:hover {
	background-color: #e9ecef;
	color: #0069d9;
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.pm-action--delete:hover {
	background: #e74c3c !important;
	color: white !important;
}

/* Текст сообщения */
.pm-message__content {
	flex: 1;
	font-size: 1.4rem;
	line-height: 1.75;
	padding-top: 0.5rem;
}

.pm-message__content p {
	margin: 0 0 1rem 0;
}

.pm-message__content p:last-child {
	margin-bottom: 0;
}

/* Форма ответа */
.pm-reply {
	background-color: #f8f9fa;
	border-radius: 18px;
	padding: 2.5rem;
	margin-top: 3rem;
	box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pm-reply__title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 1.8rem 0;
	color: #1a1a1a;
}

.pm-reply__editor {
	width: 100%;
	min-height: 180px;
	padding: 1.6rem 1.8rem;
	font-size: 1.4rem;
	line-height: 1.7;
	border: 3px solid #ced4da;
	border-radius: 16px;
	resize: vertical;
	font-family: inherit;
	transition: all 0.25s;
}

.pm-reply__editor:focus {
	border-color: #0069d9;
	box-shadow: 0 0 0 5px rgba(0, 105, 217, 0.2);
}

.pm-btn--full {
	width: 100%;
	height: 70px;
	margin-top: 1.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Пустое состояние */
.pm-list--empty {
	text-align: center;
	padding: 6rem 2rem;
	font-size: 1.8rem;
	color: #777777;
}

/* Адаптив (если вдруг понадобится) */
@media (max-width: 992px) {
	.pm-message {
		flex-direction: column;
	}

	.pm-message__actions {
		margin-top: 1rem;
		align-self: flex-end;
	}
}

/* ================================
   FEEDBACK — big size UI
   ================================ */
.feedback {
	width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.feedback__card {
	width: 100%;
	max-width: 800px;
	padding: 60px 50px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	box-shadow: 0 10px 40px rgba(51, 56, 150, 0.1);
}

.feedback__title {
	font-size: 2.4rem;
	font-weight: 800;
	color: #1b1e29;
	margin-bottom: 0.4rem;
}

.feedback__subtitle {
	font-size: 1.15rem;
	color: #626778;
	margin-bottom: 2rem;
	max-width: 640px;
}

.feedback__fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* BUTTON AREA */
.feedback__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 20px;
}

.feedback__button {
	flex: 1;
}

/* MOBILE */
@media (max-width: 600px) {
	.feedback__card {
		padding: 26px 20px;
	}

	.feedback__title {
		font-size: 2rem;
	}

	.feedback__button {
		font-size: 1.1rem;
	}
}


/* ---------- FOOTER */
.footer {
	background: var(--color-footer);
	padding: 80px 0 48px;
	color: #444444;
	font-size: 22px;
}

.footer__top {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 56px;
	margin-bottom: 64px;
}

.footer__column {
	display: flex;
	flex-direction: column;
}

/* Колонки */
.footer__column--logo {
	grid-column: 1;
	justify-content: center;
}
.footer__column--menu {
	grid-column: 2;
}
.footer__column--menu-secondary {
	grid-column: 3;
}
.footer__column--social {
	grid-column: 4;
	align-items: flex-start;
}

/* Логотип */
.logo--footer { margin-bottom: 40px; }

/* Ссылки под логотипом */
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links__item { margin-bottom: 20px; }

.footer-links__item:last-child { margin-bottom: 0; }

.footer-links__link {
	color: #444444;
	transition: color 0.2s;
	font-size: 22px;
}

.footer-links__link:hover {
	color: var(--color-primary);
	text-decoration: none;
}

/* Меню */
.footer-menu__list { list-style: none; padding: 0; margin: 0; }

.footer-menu__item { margin-bottom: 20px; }

.footer-menu__item:last-child { margin-bottom: 0; }

.footer-menu__link {
	color: #444444;
	transition: color 0.2s;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.footer-menu__link:hover {
	color: var(--color-primary);
	text-decoration: none;
}

/* Второй уровень */
.footer__middle {
	border-top: 2px solid #ddd;
	border-bottom: 2px solid #ddd;
	padding: 36px 0; margin-bottom: 40px;
}

.footer-legal__list {
	display: flex;
	gap: 56px;
	list-style: none;
	padding: 0; margin: 0;
	flex-wrap: wrap;
}

.footer-legal__item { margin: 0; }

.footer-legal__link {
	color: #444444;
	text-decoration: none;
	font-size: 18px;
	transition: color 0.2s;
}

.footer-legal__link:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

/* Третий уровень */
.footer__bottom {
	
}

.footer-copyright__text {
	margin: 0;
	color: #888888;
	font-size: 18px;
}

/* Социальные сети в футере */
.footer .social-links__list {
	gap: 32px;
}

.footer .social-links__item {
	width: 60px; height: 60px;
}

.footer .social-links__item {
	--color: var(--color-primary);

	border-radius: 50%;
	background-color: #e0e0e0;
	font-size: 32px;
	color: var(--color);
}

.footer .social-links__item-icon {
	width: 32px; height: 32px;
}

.footer .social-links__item:hover {
	color: #ffffff;
	background-color: var(--color);
	transform: translateY(-2px) scale(1.08);
}

.footer .social-links__item--telegram {
	--color: #2ca5e0;
}

.footer .social-links__item--whatsapp {
	--color: #25d366;
}

.footer .social-links__item--vkontakte {
	--color: #6383a8;
}

.footer .social-links__item--odnoklassniki {
	--color: #f4731c;
}

.footer .social-links__item--x {
	--color: #000;
}

.footer .social-links__item--facebook {
	--color: #3b5998;
}

.footer .social-links__item--yandex-msg {
	--color: #03cece;
}

.footer .social-links__item--yandex {
	--color: #f02121;
}

.footer .social-links__item--google {
	--color: #4285f4;
}

.footer .social-links__item--youtube {
	--color: #ff0033;
}

.footer .social-links__item--mailru {
	--color: #005ff9;
}

/* Адаптивность */
@media (max-width: 1280px) {
	.footer__top {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
	.social-links { gap: 24px; }
}

@media (max-width: 1024px) {
	.footer {
		padding: 48px 0 24px;
		font-size: 18px;
	}
	.footer__top { gap: 32px; }
	.social-links__link { width: 48px; height: 48px; font-size: 24px; }
	.social-links__item-icon { width: 24px; height: 24px; }
	.footer-legal__list { gap: 32px; }
	.footer-legal__link,
	.footer-copyright__text { font-size: 15px; }
}

@media (max-width: 768px) {
	.footer {
		padding: 32px 0 12px;
		font-size: 16px;
	}
	.footer__top {
		grid-template-columns: 1fr; gap: 24px;
	}
	.footer__column--logo,
	.footer__column--menu,
	.footer__column--menu-secondary,
	.footer__column--social {
		grid-column: 1;
	}
	.social-links__link {
		
	}
	.social-links__item-icon {
		
	}
	.footer-legal__list {
		
	}
}

@media (max-width: 480px) {
	.footer {
		
	}
	.footer-links__link,
	.footer-menu__link {
		
	}
	.footer-legal__link,
	.footer-copyright__text {
		
	}
	.social-links__link {
		
	}
	.social-links__item-icon {
		
	}
}