/*
Theme Name: Blog Theme
Theme URI: 
Author: 
Author URI: 
Description: Кастомная тема для блога с компонентами для статей, рейтингов и обзоров
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blog-theme
Tags: blog, custom-theme, articles, reviews, ratings

Blog Theme WordPress Theme
*/

/* Стили применяются только на фронтенде, не в админке */

/* Базовые стили будут добавлены позже согласно макету Figma */

/* ============================================
   Сброс и базовые стили
   ============================================ */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #070707;
}

/* ============================================
   Хедер
   ============================================ */
.site-header {
	width: 100%;
	padding: 20px 0;
	background: #fff;
	position: relative;
	z-index: 10001; /* Выше меню, чтобы был виден при открытом меню */
}

.site-header__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

/* Логотип */
.site-header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.site-header__logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-header__logo .custom-logo,
.site-header__logo img {
	max-height: 60px;
	width: auto;
	height: auto;
	display: block;
}

/* Поддержка SVG логотипа */
.site-header__logo .custom-logo-link img[src$=".svg"],
.site-header__logo img[src$=".svg"] {
	width: auto;
	height: 60px;
	max-width: 200px;
}

.site-header__logo .site-logo__link {
	text-decoration: none;
	color: #070707;
	font-size: 24px;
	font-weight: bold;
}

/* Навигация */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.main-navigation__wrapper {
	background: #F6F7F9;
	border-radius: 100px;
	height: 60px;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.main-navigation__menu {
	display: flex;
	align-items: center;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation__menu li {
	margin: 0;
	position: relative;
	height: 60px;
	display: flex;
	align-items: center;
}

.main-navigation__menu a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 24px;
	color: #070707;
	text-decoration: none;
	border-radius: 100px;
	transition: all 0.3s ease;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	white-space: nowrap;
	height: 100%;
}

.main-navigation__menu a:hover {
	background: rgba(7, 7, 7, 0.1);
}

/* Активный пункт меню */
.main-navigation__menu .current-menu-item > a,
.main-navigation__menu .current_page_item > a,
.main-navigation__menu .current-menu-ancestor > a {
	background: #070707;
	color: #FFFFFF;
	font-weight: 500;
}

/* Убираем левый отступ у первого пункта и правый у последнего */
.main-navigation__menu li:first-child a {
	padding-left: 0;
}

.main-navigation__menu li:last-child a {
	padding-right: 0;
}

/* Ховер у первого элемента доходит до левого края серого фона */
.main-navigation__menu li:first-child a:hover {
	margin-left: -20px;
	padding-left: 20px;
}

/* Активный пункт у первого элемента доходит до левого края серого фона */
.main-navigation__menu li:first-child.current-menu-item > a,
.main-navigation__menu li:first-child.current_page_item > a,
.main-navigation__menu li:first-child .current-menu-item > a,
.main-navigation__menu li:first-child .current_page_item > a,
.main-navigation__menu li:first-child .current-menu-ancestor > a {
	margin-left: -20px !important;
	padding-left: 20px !important;
}

/* Ховер у последнего элемента доходит до правого края серого фона */
.main-navigation__menu li:last-child a:hover {
	margin-right: -20px;
	padding-right: 20px;
}

/* Активный пункт у последнего элемента доходит до правого края серого фона */
.main-navigation__menu li:last-child.current-menu-item > a,
.main-navigation__menu li:last-child.current_page_item > a,
.main-navigation__menu li:last-child .current-menu-item > a,
.main-navigation__menu li:last-child .current_page_item > a,
.main-navigation__menu li:last-child .current-menu-ancestor > a {
	margin-right: -20px !important;
	padding-right: 20px !important;
}

/* Поиск и правая часть */
.site-header__right {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
}

.site-header__search {
	flex-shrink: 0;
}

.search-button {
	background: #F6F7F9;
	border: none;
	border-radius: 100px;
	height: 60px;
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	color: #070707;
}

.search-button:hover {
	background: #e8e9eb;
}

.search-button__text {
	font-size: 16px;
	color: #070707;
}

.search-button__icon {
	width: 20px;
	height: 20px;
	display: block;
}

/* ============================================
   Основной контент
   ============================================ */
.site-main {
	width: 100%;
	margin-top: 86px;
}

.site-main > *,
.page-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   Хлебные крошки
   ============================================ */
.breadcrumbs {
	margin-bottom: 8px;
}

.breadcrumbs__list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	row-gap: 4px;
}

.breadcrumbs__item {
	display: flex;
	align-items: center;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
}

.breadcrumbs__item a {
	color: #070707;
	text-decoration: none;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.breadcrumbs__item a:hover {
	opacity: 0.7;
}

.breadcrumbs__separator {
	margin: 0 8px;
	color: #070707;
}

/* Разделитель перед ссылкой - темный */
.breadcrumbs__item:has(a) .breadcrumbs__separator {
	color: #070707;
}

/* Разделитель перед активным элементом - серый */
.breadcrumbs__item:has(.breadcrumbs__current) .breadcrumbs__separator {
	color: #83857B;
}

.breadcrumbs__current {
	color: #83857B;
	font-weight: 400;
}

/* ============================================
   Заголовок статьи
   ============================================ */
.article-header {
	margin-bottom: 60px;
}

/* ============================================
   Фильтр категорий
   ============================================ */
.category-filter {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 30px;
	margin-bottom: 0;
}

.category-filter__item {
	display: inline-block;
	padding: 18px 40px;
	border-radius: 100px;
	background: #F6F7F9;
	color: #070707;
	text-decoration: none;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	transition: background-color 0.2s ease;
	white-space: nowrap;
}

.category-filter__item:hover {
	background: #E8E8EC;
}

.category-filter__item--active {
	background: #CFFF3F;
	color: #070707;
}

.category-filter__item--active:hover {
	background: #CFFF3F;
}

.article-header__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0;
}

/* ============================================
   Баннер на главной странице
   ============================================ */
.homepage-banner {
	width: 100%;
	margin: 0 auto 60px auto;
	display: flex;
	justify-content: center;
}

.homepage-banner img {
	width: 100%;
	max-width: 1280px;
	height: 433px;
	display: block;
	border-radius: 30px;
	object-fit: cover;
	object-position: center;
}

.homepage-banner a {
	display: block;
	text-decoration: none;
	width: 100%;
	max-width: 1280px;
}

/* ============================================
   Секции на главной странице
   ============================================ */
.home-section {
	margin-bottom: 80px;
}

.home-section__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.home-section__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0;
	flex: 1;
}

.home-section__button {
	display: inline-block;
	background: #CFFF3F;
	border-radius: 100px;
	padding: 18px 37px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	color: #070707;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.home-section__button:hover {
	background: #070707;
	color: #FFFFFF;
}

/* ============================================
   Заголовок отдельной статьи с мета-информацией
   ============================================ */
.single-post-header {
	margin-bottom: 60px;
}

.single-post-header__content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.single-post-header__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0;
	flex: 1;
}

.single-post-header__meta {
	display: flex;
	align-items: flex-end;
	gap: 15px;
	flex-shrink: 0;
	align-self: stretch;
}

.single-post-header__date {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #868484;
	display: flex;
	align-items: flex-end;
}

.single-post-header__views {
	display: flex;
	align-items: flex-end;
	gap: 5px;
}

.single-post-header__views-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.single-post-header__views-count {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #868484;
}

/* ============================================
   Компонент: Основная картинка
   ============================================ */
.component-image--main {
	width: 100%;
	margin: 0 0 36px 0;
}

.component-image--main img {
	width: 100%;
	height: 433px;
	display: block;
	border-radius: 30px;
	object-fit: cover;
	object-position: center;
}

.component-image--main .component-image__caption {
	margin-top: 15px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	color: #444242;
	text-align: center;
}

/* ============================================
   Большой заголовок (кастомный компонент)
   ============================================ */
.page-content .large-heading,
.component-large-heading {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 55px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin-bottom: 45px;
}

/* ============================================
   Внутренний заголовок (h2, h3 и т.д.)
   ============================================ */
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.page-content .inner-heading,
.wp-block-heading,
.article-content__body h2,
.article-content__body h3,
.article-content__body h4,
.article-content__body h5,
.article-content__body h6 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0 0 20px 0;
}

/* Заголовок с верхним отступом */
.heading-with-margin {
	margin-top: 45px !important;
}

/* ============================================
   Абзац
   ============================================ */
.page-content p,
.wp-block-paragraph,
.article-content__body p,
.article-content__body .wp-block-paragraph {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
	margin-bottom: 16px;
}

/* ============================================
   Столбцы (Gutenberg columns)
   ============================================ */
.wp-block-columns {
	display: flex;
	gap: 20px;
	margin: 0 0 120px 0;
}

.wp-block-column {
	flex: 1;
}

/* ============================================
   Сетки статей
   ============================================ */
.articles-grid,
.reviews-grid,
.ratings-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.articles-grid,
	.reviews-grid,
	.ratings-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.articles-grid,
	.reviews-grid,
	.ratings-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ============================================
   Карточка статьи
   ============================================ */
.article-card {
	background: #F6F7F9;
	border-radius: 30px;
	padding: 20px;
	display: flex;
	flex-direction: column;
}

.article-card__image {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	max-height: 280px;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 20px;
}

.article-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.article-card__category-label {
	position: absolute;
	left: 15px;
	top: 15px;
	background: #CFFF3F;
	padding: 10px 15px;
	border-radius: 100px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	color: #070707;
	white-space: nowrap;
}

.article-card__content {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.article-card__title {
	margin: 0 0 10px 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
}

.article-card__title a {
	color: #070707;
	text-decoration: none;
}

.article-card__title a:hover {
	text-decoration: none;
}

.article-card__excerpt {
	margin: 0 0 15px 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-card__meta {
	display: flex;
	align-items: center;
	gap: 15px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #868484;
	margin-top: auto;
}

.article-card__date {
	color: #868484;
}

.article-card__views {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #868484;
}

.article-card__views-icon {
	font-size: 13px;
}

.article-card__views-count {
	color: #868484;
}

@media (max-width: 768px) {
	.article-card {
		border-radius: 25px;
	}
}

/* ============================================
   Карточка автора
   ============================================ */
.author-card {
	background: #F6F7F9;
	border-radius: 25px;
	padding: 20px;
	margin: 0 0 20px 0;
}

.author-card__content {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.author-card__left {
	flex: 1;
}

.author-card__name {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 160%;
	letter-spacing: 0px;
	color: #0B0F19;
	margin: 0 0 10px 0;
}

.author-card__description {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
}

.author-card__description p {
	margin: 0 0 10px 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
}

.author-card__description p:last-child {
	margin-bottom: 0;
}

.author-card__right {
	flex-shrink: 0;
}

.author-card__photo {
	width: 110px;
	height: 110px;
	border-radius: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.author-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============================================
   Футер
   ============================================ */
.site-footer {
	width: 100%;
	background: #fff;
	margin-top: 120px;
}

/* Серый блок с 3 колонками */
.site-footer__top {
	background: #F6F7F9;
	padding: 30px;
	border-radius: 30px;
	margin: 0 20px;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	height: 190px;
	box-sizing: border-box;
}

.site-footer__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
	height: 100%;
}

.site-footer__columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	height: 100%;
}

/* Левая колонка */
.site-footer__column--left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	height: 100%;
}

.site-footer__logo {
	margin-bottom: 0;
}

.site-footer__logo .custom-logo,
.site-footer__logo img {
	max-height: 60px;
	width: auto;
	height: auto;
}

.site-footer__email {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
}

.site-footer__email a {
	color: #070707;
	text-decoration: none;
}

.site-footer__email a:hover {
	text-decoration: underline;
}

/* Скрываем мобильные элементы на десктопе */
.site-footer__mobile-bottom {
	display: none;
}

.site-footer__email--mobile-row {
	display: none;
}

.site-footer__email--mobile {
	display: none;
}

/* Центральная колонка */
.site-footer__column--center {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
}

.site-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.site-footer__menu li {
	margin: 0;
}

.site-footer__menu a {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	text-decoration: none;
	display: block;
}

.site-footer__menu a:hover {
	text-decoration: underline;
}

/* Правая колонка */
.site-footer__column--right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	height: 100%;
}

.site-footer__disclaimer {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: right;
	color: #444242;
	max-width: 100%;
}

.site-footer__social {
	display: flex;
	gap: 5px;
	align-items: center;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.site-footer__social-link:hover {
	opacity: 0.7;
}

.site-footer__social-link img {
	width: 36px;
	height: 35px;
	display: block;
}

/* Нижний блок */
.site-footer__bottom {
	padding: 20px 0;
	background: #fff;
}

.site-footer__bottom-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.site-footer__bottom-column {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
}

.site-footer__bottom-column:first-child {
	text-align: left;
}

.site-footer__bottom-column:nth-child(2) {
	text-align: left;
}

.site-footer__bottom-column:last-child {
	text-align: right;
}

.site-footer__link {
	color: #444242;
	text-decoration: none;
}

.site-footer__link:hover {
	text-decoration: underline;
}

/* ============================================
   Бургер-меню
   ============================================ */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	position: relative;
}

.mobile-menu-toggle__icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-toggle__icon--close {
	opacity: 0;
	visibility: hidden;
}

.site-header.mobile-menu-open .mobile-menu-toggle__icon--burger {
	opacity: 0;
	visibility: hidden;
}

.site-header.mobile-menu-open .mobile-menu-toggle__icon--close {
	opacity: 1;
	visibility: visible;
}

/* Мобильное меню */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99999; /* Очень высокий z-index, чтобы быть поверх всего */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu[aria-hidden="false"] {
	display: block !important;
	opacity: 1 !important;
	visibility: visible !important;
}

.mobile-menu__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px);
	background: rgba(0, 0, 0, 0.3);
	z-index: 1; /* Под wrapper, но кликабелен */
	cursor: pointer;
}

.mobile-menu__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 10px;
	padding-top: 6px; /* Поднимаем модалку на 4px выше */
	box-sizing: border-box;
	z-index: 2; /* Поверх overlay */
	pointer-events: none; /* Пропускаем клики через wrapper */
}

.mobile-menu__content {
	position: relative;
	width: 100%;
	max-width: 100%;
	background: transparent; /* Контейнер прозрачный, чтобы между блоками просвечивал blur */
	border-radius: 0;
	padding: 0;
	margin-top: 0; /* Убираем отступ, так как хедер скрыт */
	box-sizing: border-box;
	pointer-events: auto; /* Восстанавливаем клики для контента */
	display: flex;
	flex-direction: column;
}

/* Визуальный хедер внутри модального меню */
.mobile-menu__header {
	background: #F6F7F9;
	border-radius: 18px;
	padding: 10px;
	margin-bottom: 0;
}

.mobile-menu__header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px; /* как в обычном хедере */
}

.mobile-menu__header-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.mobile-menu__header-logo .custom-logo,
.mobile-menu__header-logo img {
	max-height: 50px;
	width: auto;
	height: auto;
	display: block;
}

.mobile-menu__header-logo .custom-logo-link img[src$=".svg"],
.mobile-menu__header-logo img[src$=".svg"] {
	width: auto;
	height: 50px;
	max-width: 200px;
}

.mobile-menu__header-search {
	flex: 1;
	display: flex;
	justify-content: flex-end; /* прижимаем поиск вправо, как в основном хедере */
}

/* Поиск в хедере модалки: белый фон */
.mobile-menu__header .search-button {
	background: #FFFFFF;
}

.mobile-menu__header-close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mobile-menu__header-close img {
	width: 100%;
	height: 100%;
	display: block;
}

/* Контент меню (пункты, email, соцсети) */
.mobile-menu__items-wrapper {
	background: #F6F7F9;
	border-radius: 18px;
	padding: 24px 15px;
	margin-top: 10px; /* Визуальный разрыв, через него виден blur */
}

/* Хедер скрываем при открытом меню, так как есть визуальный хедер в модалке */
@media (max-width: 1024px) {
	/* ВАЖНО: не скрываем .site-header целиком, т.к. внутри него находится .mobile-menu */
	.site-header.mobile-menu-open .site-header__container {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	
	/* Меню начинается с верха, так как хедер скрыт */
	.mobile-menu__wrapper {
		padding-top: 10px;
	}
	
	.mobile-menu__content {
		margin-top: 0;
	}
	
	/* Убеждаемся, что меню видимо при открытии */
	.mobile-menu[aria-hidden="false"] {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
}

.mobile-menu__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 10px; /* 8px вертикальный, 10px горизонтальный */
	margin-bottom: 136px;
}

.mobile-menu__item {
	display: flex;
	align-items: center;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 10px;
	text-decoration: none;
	color: #070707;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	transition: all 0.2s ease;
}

.mobile-menu__item:hover {
	opacity: 0.8;
}

.mobile-menu__item-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	margin-right: 6px;
}

.mobile-menu__item-text {
	flex: 1;
}

.mobile-menu__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.mobile-menu__email {
	background: #FFFFFF;
	border-radius: 8px;
	padding: 8px 12px;
	flex: 0 0 auto;
	width: fit-content;
	max-width: calc(100% - 120px); /* оставляем место под соц.иконки */
	overflow: hidden;
}

.mobile-menu__email a {
	color: #070707;
	text-decoration: none;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-size: 13px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.mobile-menu__social {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
}

.mobile-menu__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.mobile-menu__social-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ============================================
   Медиа-запросы: Планшет и мобильные
   ============================================ */

/* Планшет (до 1024px) */
@media (max-width: 1024px) {
	/* Скрываем навигацию в центре */
	.main-navigation {
		display: none;
	}
	
	/* Показываем бургер */
	.mobile-menu-toggle {
		display: block;
		width: 60px;
		height: 60px;
	}
	
	/* Показываем мобильное меню */
	.mobile-menu {
		display: block;
	}
	
	/* При открытом меню оно должно быть видимо */
	.mobile-menu[aria-hidden="false"] {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	/* Хедер в рамочке при открытом меню на планшете (уже определен выше) */
	
	/* Футер на планшете: левая колонка по ширине email, остальные 2 поровну */
	.site-footer__columns {
		grid-template-columns: auto 1fr 1fr;
		gap: 30px;
	}
	
	.site-footer__column--left {
		width: fit-content;
	}
	
	/* Отступы для футера на планшете */
	.site-footer {
		margin-top: 70px;
	}
	
	.site-footer__top {
		margin: 0 20px 20px 20px;
		padding: 25px;
	}
	
	.site-footer__bottom {
		margin: 0 20px 20px 20px;
	}
	
	/* Типографика футера на планшете */
	/* Пункты меню: 14px */
	.site-footer__menu a {
		font-size: 14px;
	}
	
	/* Email: 15px */
	.site-footer__email {
		font-size: 15px;
	}
	
	/* Текст (disclaimer): 14px */
	.site-footer__disclaimer {
		font-size: 14px;
	}
	
	/* Политика, копирайт, обработка: 13px */
	.site-footer__bottom-column {
		font-size: 13px;
	}
	
	/* Хлебные крошки на планшете: 14px */
	.breadcrumbs__item {
		font-size: 14px;
	}
	
	/* Заголовок страницы на планшете: 34px */
	.article-header__title {
		font-size: 34px;
	}
	
	.home-section__title {
		font-size: 34px;
	}
	
	.home-section__button {
		font-size: 15px;
		padding: 16px 30px;
	}
	
	/* Отступ от заголовка до контента на планшете: 30px */
	.article-header {
		margin-bottom: 30px;
	}
	
	.category-filter {
		margin-top: 30px;
	}
	
	/* Заголовок отдельной статьи на планшете */
	.single-post-header {
		margin-bottom: 30px;
	}
	
	.single-post-header__title {
		font-size: 34px;
	}
	
	.single-post-header__date,
	.single-post-header__views-count {
		font-size: 12px;
	}
	
	.single-post-header__views-icon {
		width: 14px;
		height: 14px;
	}
	
	/* Основная картинка на планшете: радиус 30px, высота 294px */
	.component-image--main img {
		border-radius: 30px;
		height: 294px;
	}
	
	.homepage-banner img {
		height: 294px;
	}
	
	/* Отступ снизу у картинки на планшете: 30px */
	.component-image--main {
		margin-bottom: 30px;
	}
	
	/* Большой заголовок на планшете: 34px */
	.page-content .large-heading,
	.component-large-heading {
		font-size: 34px;
		margin-bottom: 30px;
	}
	
	/* Внутренний заголовок на планшете: 18px */
	.page-content h2,
	.page-content h3,
	.page-content h4,
	.page-content h5,
	.page-content h6,
	.page-content .inner-heading,
	.wp-block-heading,
	.article-content__body h2,
	.article-content__body h3,
	.article-content__body h4,
	.article-content__body h5,
	.article-content__body h6 {
		font-size: 18px;
	}
	
	/* Абзац на планшете: 15px */
	.page-content p,
	.wp-block-paragraph,
	.article-content__body p,
	.article-content__body .wp-block-paragraph {
		font-size: 15px;
		margin-bottom: 15px;
	}
	
	/* Столбцы на планшете - в один столбец */
	.wp-block-columns {
		flex-direction: column;
		gap: 0;
		margin-bottom: 70px;
	}
	
	.wp-block-column {
		flex: none;
		width: 100%;
	}
	
	/* Карточка автора на планшете */
	.author-card {
		padding: 20px;
	}
	
	.author-card__name {
		font-size: 15px;
	}
	
	.author-card__description,
	.author-card__description p {
		font-size: 15px;
	}
	
	.author-card__photo {
		width: 110px;
		height: 110px;
	}
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
	/* Высота хедера 50px */
	.site-header {
		padding: 15px 0;
	}
	
	/* Бургер на мобильных 50x50 */
	.mobile-menu-toggle {
		width: 50px;
		height: 50px;
	}
	
	.site-header__logo .custom-logo,
	.site-header__logo img {
		max-height: 50px;
	}
	
	.site-header__logo .custom-logo-link img[src$=".svg"],
	.site-header__logo img[src$=".svg"] {
		height: 50px;
	}
	
	.main-navigation__wrapper {
		height: 50px;
	}
	
	.search-button {
		height: 50px;
		padding: 0 20px;
	}
	
	/* Бургер 50x50 на мобильных */
	.mobile-menu-toggle {
		width: 50px;
		height: 50px;
	}
	
	/* Адаптивные отступы */
	.site-header__container {
		padding: 0 10px;
	}
	
	.site-main {
		margin-top: 40px;
	}
	
	.site-footer {
		margin-top: 60px;
	}
	
	.site-main > *,
	.page-content {
		padding: 0 10px;
	}
	
	/* Заголовок статьи на мобильных: 26px */
	.article-header__title {
		font-size: 26px;
	}
	
	.home-section__title {
		font-size: 26px;
	}
	
	.home-section__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	
	.home-section__button {
		font-size: 14px;
		padding: 15px 25px;
	}
	
	/* Хлебные крошки на мобильных: 13px */
	.breadcrumbs__item {
		font-size: 13px;
		line-height: 140%;
	}
	
	/* Отступ от заголовка до контента на мобильных: 20px */
	.article-header {
		margin-bottom: 20px;
	}
	
	.category-filter {
		margin-top: 20px;
	}
	
	/* Заголовок отдельной статьи на мобильных */
	.single-post-header {
		margin-bottom: 20px;
	}
	
	.single-post-header__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	
	.single-post-header__title {
		font-size: 26px;
		width: 100%;
	}
	
	.single-post-header__meta {
		width: 100%;
	}
	
	.single-post-header__date,
	.single-post-header__views-count {
		font-size: 11px;
	}
	
	.single-post-header__views-icon {
		width: 12px;
		height: 12px;
	}
	
	/* Основная картинка на мобильных: радиус 25px, высота 180px */
	.component-image--main img {
		border-radius: 25px;
		height: 180px;
	}
	
	.homepage-banner img {
		border-radius: 25px;
		height: 180px;
	}
	
	.homepage-banner {
		margin-bottom: 40px;
	}
	
	/* Отступ снизу у картинки на мобильных: 30px */
	.component-image--main {
		margin-bottom: 30px;
	}
	
	/* Большой заголовок на мобильных: 26px */
	.page-content .large-heading,
	.component-large-heading {
		font-size: 26px;
		margin-bottom: 20px;
	}
	
	/* Внутренний заголовок на мобильных: 16px */
	.page-content h2,
	.page-content h3,
	.page-content h4,
	.page-content h5,
	.page-content h6,
	.page-content .inner-heading,
	.wp-block-heading,
	.article-content__body h2,
	.article-content__body h3,
	.article-content__body h4,
	.article-content__body h5,
	.article-content__body h6 {
		font-size: 16px;
	}
	
	/* Абзац на мобильных: 14px */
	.page-content p,
	.wp-block-paragraph,
	.article-content__body p,
	.article-content__body .wp-block-paragraph {
		font-size: 14px;
		line-height: 140%;
		text-indent: 1.5em;
		margin-bottom: 14px;
	}
	
	/* Столбцы на мобильных - в один столбец */
	.wp-block-columns {
		flex-direction: column;
		gap: 0;
		margin-bottom: 60px;
	}
	
	.wp-block-column {
		flex: none;
		width: 100%;
	}
	
	/* Карточка автора на мобильных */
	.author-card {
		padding: 15px;
		margin-bottom: 10px;
	}
	
	.author-card__name {
		font-size: 15px;
	}
	
	.author-card__description,
	.author-card__description p {
		font-size: 14px;
	}
	
	.author-card__photo {
		width: 70px;
		height: 70px;
	}
	
	/* Футер на мобильных - все в сером блоке */
	.site-footer__top {
		padding: 15px;
		height: auto;
		margin: 0 10px;
	}
	
	.site-footer__columns {
		display: flex;
		flex-direction: column;
		gap: 0;
		height: auto;
	}
	
	/* Перестраиваем структуру для мобильных */
	.site-footer__top .site-footer__container {
		position: relative;
	}
	
	.site-footer__columns {
		display: flex;
		flex-direction: column;
		gap: 20px;
		height: auto;
	}
	
	/* 1 строка: Лого и Иконки (space-between, горизонтально по центру) */
	.site-footer__column--left {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin: 0;
		height: auto;
	}
	
	.site-footer__logo {
		margin-bottom: 0;
	}
	
	/* Скрываем email desktop версию в левой колонке */
	.site-footer__email--desktop {
		display: none;
	}
	
	/* Скрываем email mobile версию в левой колонке */
	.site-footer__column--left .site-footer__email--mobile {
		display: none;
	}
	
	/* Показываем email mobile row во второй строке */
	.site-footer__email--mobile-row {
		display: block !important;
	}
	
	/* Иконки из правой колонки - первая строка справа */
	.site-footer__column--right {
		position: absolute;
		top: 20px;
		right: 20px;
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		width: auto;
		height: auto;
		margin: 0;
		padding: 0;
	}
	
	.site-footer__social {
		margin: 0;
	}
	
	/* Скрываем disclaimer в правой колонке, он будет в мобильном блоке */
	.site-footer__column--right .site-footer__disclaimer {
		display: none;
	}
	
	/* 2 строка: Меню и email (space-between, горизонтально по низу) */
	.site-footer__column--center {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		width: 100%;
		height: auto;
		margin: 0;
	}
	
	.site-footer__menu {
		margin: 0;
	}
	
	/* Типографика футера на мобильных */
	/* Пункты меню: 14px */
	.site-footer__menu a {
		font-size: 14px;
	}
	
	/* Email mobile версия во второй строке справа: 14px */
	.site-footer__email--mobile-row {
		display: block;
		margin: 0;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 500;
		font-size: 14px;
		line-height: 100%;
		letter-spacing: 0%;
		color: #070707;
	}
	
	.site-footer__email--mobile-row a {
		color: #070707;
		text-decoration: none;
	}
	
	/* Мобильные элементы нижнего блока */
	.site-footer__mobile-bottom {
		display: block !important;
		width: 100%;
		margin-top: 20px;
	}
	
	/* Текст (disclaimer): 13px */
	.site-footer__disclaimer-mobile {
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 400;
		font-size: 13px;
		line-height: 100%;
		letter-spacing: 0%;
		text-align: left;
		color: #444242;
		margin-bottom: 28px;
	}
	
	.site-footer__mobile-links {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	
	/* Политика, обработка, копирайт: 12px */
	.site-footer__mobile-links .site-footer__link {
		display: block;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 400;
		font-size: 12px;
		line-height: 100%;
		letter-spacing: 0%;
		color: #444242;
		text-decoration: none;
	}
	
	.site-footer__mobile-links .site-footer__link:first-child {
		margin-bottom: 5px;
	}
	
	.site-footer__mobile-links .site-footer__link:nth-child(2) {
		margin-bottom: 8px;
	}
	
	.site-footer__mobile-links .site-footer__copyright {
		margin: 0;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 400;
		font-size: 12px;
		line-height: 100%;
		letter-spacing: 0%;
		color: #444242;
	}
	
	/* Нижний блок на мобильных - скрываем */
	.site-footer__bottom {
		display: none;
	}
}

/* Скрываем мобильный блок на десктопе */
.site-footer__mobile-bottom {
	display: none;
}

/* Скрываем email mobile row на десктопе */
.site-footer__email--mobile-row {
	display: none;
}

.site-footer__copyright {
	margin: 0 10px;
}

/* ============================================
   Компонент "Содержание"
   ============================================ */
.table-of-contents {
	width: 300px;
	background: #F6F7F9;
	padding: 24px;
	border-radius: 26px;
	margin-bottom: 40px;
}

.table-of-contents__title {
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	color: #444242;
	margin: 0 0 16px 0;
}

.table-of-contents__title-divider {
	height: 1px;
	background: #E8E8EC;
	margin: 0 0 16px 0;
}

.table-of-contents__nav {
	margin: 0;
}

.table-of-contents__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.table-of-contents__item {
	margin: 0;
	padding: 0;
}

.table-of-contents__link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	padding: 8px 0;
	transition: opacity 0.2s;
}

.table-of-contents__link:hover {
	opacity: 0.7;
}

.table-of-contents__number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 29px;
	height: 29px;
	background: #FFFFFF;
	border-radius: 50%;
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	color: #070707;
	flex-shrink: 0;
}

.table-of-contents__text {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
	margin-left: 14px;
}

.table-of-contents__divider {
	height: 1px;
	background: #E8E8EC;
	margin: 8px 0;
}

/* Стили блока "Содержание" в редакторе */
.table-of-contents-editor {
	background: #f8f9fa;
	padding: 20px 24px;
	border-radius: 12px;
	border: 1px solid #e8e8e8;
}

.table-of-contents-editor__title {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.3;
	color: #1e1e1e;
	margin: 0 0 6px 0;
}

.table-of-contents-editor__hint {
	font-size: 13px;
	color: #757575;
	margin: 0;
	line-height: 1.4;
}

/* Планшет */
@media (max-width: 1024px) {
	.table-of-contents {
		width: 100%;
		max-width: 100%;
	}
}

/* Мобильный */
@media (max-width: 768px) {
	.table-of-contents {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		border-radius: 20px;
	}
	
	.table-of-contents__title {
		font-size: 15px;
	}
	
	.table-of-contents__number {
		width: 26px;
		height: 26px;
		font-size: 13px;
	}
	
	.table-of-contents__text {
		font-size: 13px;
		margin-left: 12px;
	}
}

/* ============================================
   Внутреннее изображение
   ============================================ */
.component-image--inner {
	width: 100%;
	border-radius: 30px;
	margin-bottom: 25px;
}

.component-image--inner img {
	width: 100%;
	height: auto;
	border-radius: 30px;
	object-fit: cover;
}

/* Планшет */
@media (max-width: 1024px) {
	.component-image--inner {
		border-radius: 25px;
		margin-bottom: 25px;
	}
	
	.component-image--inner img {
		border-radius: 25px;
	}
}

/* Мобильный */
@media (max-width: 768px) {
	.component-image--inner {
		border-radius: 25px;
		margin-bottom: 25px;
	}
	
	.component-image--inner img {
		border-radius: 25px;
	}
}

/* ============================================
   Основные характеристики
   ============================================ */
.characteristics-block {
	width: 100%;
	margin-top: 65px;
}

.characteristics-block__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0 0 20px 0;
}

.characteristics-block__list {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.characteristics-block__item {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	padding: 14px 20px;
}

.characteristics-block__item--odd {
	background: #F6F7F9;
	border-radius: 8px;
}

.characteristics-block__key {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
	flex: 0 0 50%;
}

.characteristics-block__value {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
	flex: 0 0 50%;
}

/* Планшет */
@media (max-width: 1024px) {
	.characteristics-block {
		margin-top: 40px;
	}
	
	.characteristics-block__title {
		margin-bottom: 15px;
	}
}

/* Мобильный */
@media (max-width: 768px) {
	.characteristics-block {
		margin-top: 30px;
	}
	
	.characteristics-block__title {
		margin-bottom: 15px;
	}
}

/* ============================================
   Плюсы и минусы
   ============================================ */
.pros-cons-block {
	width: 100%;
	margin-top: 65px;
}

.pros-cons-block__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0 0 20px 0;
}

.pros-cons-block__content {
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: stretch;
}

.pros-cons-block__pros,
.pros-cons-block__cons {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pros-cons-block__item {
	display: flex;
	align-items: center;
	padding: 15px 60px 15px 15px;
	border-radius: 15px;
	flex: 1;
	min-height: 100%;
}

.pros-cons-block__item--pro {
	background: #F6F7F9;
}

.pros-cons-block__item--con {
	background: #F6F7F9;
}

.pros-cons-block__icon {
	width: 37px;
	height: 37px;
	flex-shrink: 0;
	margin-right: 15px;
}

.pros-cons-block__text {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #444242;
}

/* Планшет */
@media (max-width: 1024px) {
	.pros-cons-block {
		margin-top: 40px;
	}
	
	.pros-cons-block__title {
		margin-bottom: 15px;
	}
	
	.pros-cons-block__content {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.pros-cons-block__item {
		padding: 15px 40px 15px 15px;
	}
}

/* Мобильный */
@media (max-width: 768px) {
	.pros-cons-block {
		margin-top: 30px;
	}
	
	.pros-cons-block__title {
		margin-bottom: 15px;
	}
	
	.pros-cons-block__content {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	
	.pros-cons-block__item {
		padding: 15px 40px 15px 15px;
	}
}

/* ============================================
   Лучшие предложения
   ============================================ */
.best-offers-block {
	width: 100%;
	margin-top: 65px;
}

.best-offers-block__title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0%;
	color: #070707;
	margin: 0 0 20px 0;
}

.best-offers-block__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.best-offers-block__item {
	display: flex;
	align-items: center;
	background: #F6F7F9;
	border-radius: 15px;
	height: 87px;
	overflow: visible;
}

.best-offers-block__icon {
	height: 100%;
	width: auto;
	flex-shrink: 0;
	object-fit: contain;
}

.best-offers-block__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 55px;
	gap: 5px;
	flex: 1;
}

.best-offers-block__name {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: #444242;
}

.best-offers-block__price {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	text-transform: uppercase;
	color: #7C7B7B;
}

.best-offers-block__price.is-highlight {
	color: #C24A4A;
	font-weight: 600;
}

.best-offers-block__button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #CFFF3F;
	border-radius: 100px;
	width: 289px;
	height: 50px;
	margin-right: 24px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 15px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	color: #070707;
	text-decoration: none;
	flex-shrink: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.best-offers-block__button:hover {
	background: #070707;
	color: #FFFFFF;
	text-decoration: none;
}

/* Планшет */
@media (max-width: 1024px) {
	.best-offers-block {
		margin-top: 40px;
	}
	
	.best-offers-block__title {
		margin-bottom: 15px;
	}
	
	.best-offers-block__item {
		height: 87px;
	}
	
	.best-offers-block__info {
		margin-left: 55px;
	}
	
	.best-offers-block__button {
		width: 289px;
		height: 50px;
		font-size: 14px;
	}
}

/* Мобильный */
@media (max-width: 768px) {
	.best-offers-block {
		margin-top: 30px;
	}
	
	.best-offers-block__title {
		margin-bottom: 15px;
	}
	
	.best-offers-block__item {
		flex-wrap: wrap;
		height: auto;
		padding: 15px;
		align-items: center;
		justify-content: space-between;
	}
	
	.best-offers-block__icon {
		width: 60px;
		height: 60px;
		border-radius: 10px;
		object-fit: contain;
		margin: 0;
		flex-shrink: 0;
		order: 2;
	}
	
	.best-offers-block__info {
		margin-left: 0;
		flex: 1;
		min-width: 0;
		order: 1;
	}
	
	.best-offers-block__button {
		width: 100%;
		margin: 30px 0 0 0;
		font-size: 14px;
		order: 3;
	}
}

/* ============================================
   Двухколоночный макет с содержанием
   ============================================ */
.article-content-with-toc {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	margin-top: 40px;
}

.article-content-with-toc__sidebar {
	flex: 0 0 auto;
	width: auto;
	min-width: 300px;
	align-self: flex-start;
}

.table-of-contents-wrapper {
	position: sticky;
	top: 70px;
	align-self: flex-start;
}

.article-content-with-toc__main {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
}

/* На планшете и мобильном - обычный одноколоночный вид */
@media (max-width: 1024px) {
	.article-content-with-toc {
		display: block;
	}
	
	.article-content-with-toc__sidebar {
		width: 100%;
		margin-bottom: 40px;
	}
	
	.table-of-contents-wrapper {
		position: static;
	}
	
	.article-content-with-toc__main {
		width: 100%;
	}
}


