/* =============================================================================
   Тема «Гряда» — базовый слой: сетка, шапка, ленты, подвал.
   Поверх него подключается fs-design.css с фирменным оформлением.
   ========================================================================== */

:root {
	--g-green-900: #10301f;
	--g-green-800: #17522f;
	--g-green-700: #1f6b41;
	--g-green-500: #2e8b57;
	--g-line: #e4ebe6;
	--g-text: #303f37;
	--g-muted: #6b7d72;
	--g-radius: 14px;
	--g-radius-sm: 10px;
	--g-container: 1190px;
	--g-gutter: 45px;
	--g-gap: 40px;
	--g-sidebar: 300px;
	--g-sidebar-gap: 70px;
	--g-font: Montserrat, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: #fff;
	color: var(--g-text);
	font-family: var(--g-font);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--g-green-700);
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: #fff;
	padding: 10px 16px;
}

.skip-link:focus {
	left: 8px;
	top: 8px;
}

.g-icon {
	flex: none;
	vertical-align: -2px;
}

/* -----------------------------------------------------------------------------
   1. Контейнер и колонки
   -------------------------------------------------------------------------- */

.fixed {
	max-width: var(--g-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--g-gutter);
	padding-right: var(--g-gutter);
}

.site-content {
	padding-top: 30px;
	position: relative;
}

.site-content-inner {
	display: flex;
	align-items: flex-start;
}

/* Без сайдбара колонок нет — блоки идут друг под другом. */
.sidebar-none .site-content-inner {
	display: block;
}

#primary {
	flex: 1 1 auto;
	min-width: 0;
}

.has-sidebar #primary {
	padding-right: var(--g-sidebar-gap);
}

#secondary {
	flex: 0 0 var(--g-sidebar);
	width: var(--g-sidebar);
	padding-bottom: 30px;
}

.sticky-sidebar {
	position: sticky;
	top: 110px;
}

/* -----------------------------------------------------------------------------
   2. Шапка
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 120;
	background: var(--g-green-700);
	color: #fff;
	padding: 20px 0;
}

.site-header a {
	color: inherit;
	text-decoration: none;
}

.site-header-inner {
	display: flex;
	align-items: center;
	gap: 26px;
	padding-top: 0;
	padding-bottom: 0;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.site-logotype img {
	display: block;
	width: 52px;
	height: 52px;
	border-radius: var(--g-radius-sm);
}

.site-title {
	margin: 0;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.02em;
}

.site-description {
	margin: 2px 0 0;
	font-size: 14px;
	line-height: 1.35;
	color: rgba(255, 255, 255, .78);
}

.top-menu {
	margin-left: auto;
}

.top-menu ul {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 12.8px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.top-menu li {
	position: relative;
}

.top-menu a {
	display: inline-block;
	padding: 4px 0;
	border-bottom: 2px solid transparent;
}

.top-menu a:hover,
.top-menu .current-menu-item > a,
.top-menu .current-post-parent > a {
	border-bottom-color: rgba(255, 255, 255, .75);
}

.top-menu .sub-menu {
	position: absolute;
	left: 0;
	top: 100%;
	display: none;
	flex-direction: column;
	gap: 0;
	min-width: 220px;
	padding: 8px 0;
	background: var(--g-green-700);
	border-radius: 0 0 var(--g-radius-sm) var(--g-radius-sm);
	box-shadow: 0 12px 30px rgba(9, 24, 15, .25);
	z-index: 5;
}

.top-menu li:hover > .sub-menu {
	display: flex;
}

.top-menu .sub-menu a {
	padding: 8px 18px;
	border: 0;
}

.header-search {
	display: flex;
	align-items: center;
}

.header-search .search-icon svg {
	width: 22px;
	height: 22px;
}

.humburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 26px;
	height: 26px;
}

.humburger span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}

/* Поиск поверх страницы */

.search-screen-overlay {
	position: fixed;
	inset: 0;
	z-index: 150;
	background: rgba(9, 24, 15, .55);
}

.search-screen {
	position: fixed;
	left: 50%;
	top: 22vh;
	z-index: 160;
	width: min(640px, calc(100vw - 40px));
	transform: translateX(-50%);
	background: #fff;
	border-radius: var(--g-radius);
	box-shadow: 0 24px 60px rgba(9, 24, 15, .3);
	padding: 26px;
}

.search-screen__close {
	position: absolute;
	right: 12px;
	top: 12px;
	color: var(--g-muted);
}

/* Форма поиска */

.search-form {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius-sm);
	background: #fff;
	padding: 4px 8px 4px 14px;
}

.search-form label {
	flex: 1 1 auto;
	margin: 0;
}

.search-field {
	width: 100%;
	border: 0;
	outline: none;
	padding: 10px 0;
	font: inherit;
	color: inherit;
	background: none;
}

.search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--g-green-700);
	border-radius: 8px;
}

/* -----------------------------------------------------------------------------
   3. Слайдер
   -------------------------------------------------------------------------- */

.card-slider-container {
	position: relative;
	margin-bottom: 44px;
	overflow: hidden;
}

.card-slider__viewport {
	overflow: hidden;
}

.card-slider__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.card-slider__track::-webkit-scrollbar {
	display: none;
}

.card-slider__slide {
	flex: 0 0 33.3333%;
	scroll-snap-align: start;
	min-width: 0;
}

.card-slider__link {
	position: relative;
	display: block;
	height: 100%;
	color: #fff;
	text-decoration: none;
}

.card-slider__image {
	position: relative;
	height: 400px;
	background: var(--g-green-900);
}

.card-slider__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.card-slider__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 24, 15, 0) 40%, rgba(9, 24, 15, .85) 100%);
}

.card-slider__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px 30px;
	z-index: 2;
}

.card-slider__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.card-slider__nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-top: -22px;
	color: #fff;
	background: rgba(9, 24, 15, .35);
	border-radius: 50%;
	transition: background .2s;
}

.card-slider__nav:hover {
	background: rgba(9, 24, 15, .6);
}

.card-slider__nav svg {
	width: 20px;
	height: 20px;
}

.card-slider__nav--prev {
	left: 16px;
	transform: rotate(180deg);
}

.card-slider__nav--next {
	right: 16px;
}

.card-slider__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.card-slider__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
	transition: background .2s, transform .2s;
}

.card-slider__dot.is-active {
	background: #fff;
	transform: scale(1.3);
}

/* -----------------------------------------------------------------------------
   4. Блоки главной
   -------------------------------------------------------------------------- */

.section-block {
	position: relative;
	max-width: var(--g-container);
	margin: 0 auto;
	padding: 10px var(--g-gutter) 30px;
}

.section-block::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 100vw;
	margin-left: -50vw;
	z-index: -1;
}

.section-preset--bgc-10,
.section-preset--bgc-11 {
	padding-top: 34px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.section-block__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
}

.section-block__title {
	position: relative;
	margin: 0 50px 15px 0;
	padding-left: 18px;
	font-size: 21.6px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -.01em;
	color: var(--g-green-900);
}

.section-block__title::before {
	content: "";
	position: absolute;
	left: 0;
	top: .15em;
	bottom: .15em;
	width: 4px;
	border-radius: 2px;
	background: var(--g-green-500);
}

/* -----------------------------------------------------------------------------
   5. Ленты карточек
   -------------------------------------------------------------------------- */

.post-cards {
	position: relative;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.post-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: .78em;
	color: var(--g-muted);
}

.post-card__meta > span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.post-card__category {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 6px;
	background: var(--g-green-500);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none;
}

.post-card__thumbnail {
	position: relative;
}

.post-card__thumbnail img {
	display: block;
	width: 100%;
}

.post-card__thumbnail .post-card__category {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 3;
}

/* Мозаика: четыре колонки, 1-я и 6-я карточки на две */

.post-cards--grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}

.post-card--grid {
	position: relative;
	flex: 0 0 25%;
	max-width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-bottom: 20px;
	padding: 0 20px;
}

.post-cards--grid .post-card--grid:nth-child(6n + 1),
.post-cards--grid .post-card--grid:nth-child(6n) {
	flex-basis: 50%;
	max-width: 50%;
}

.post-card--grid .post-card__thumbnail {
	position: relative;
	border-radius: var(--g-radius);
	overflow: hidden;
	background: var(--g-line);
}

.post-card--grid .post-card__thumbnail img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .35s ease;
}

.post-card--grid:hover .post-card__thumbnail img {
	transform: scale(1.04);
}

.post-card--grid .post-card__body {
	padding-top: 12px;
}

.post-card--grid .post-card__title {
	font-size: 1.05em;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 8px;
}

/* Крупные карточки мозаики: текст поверх картинки */

.post-cards--grid .post-card--grid:nth-child(6n + 1):not(.post-card--thumbnail-no) .post-card__thumbnail::before,
.post-cards--grid .post-card--grid:nth-child(6n):not(.post-card--thumbnail-no) .post-card__thumbnail::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(180deg, rgba(9, 24, 15, 0) 30%, rgba(9, 24, 15, .9) 100%);
}

.post-cards--grid .post-card--grid:nth-child(6n + 1):not(.post-card--thumbnail-no) .post-card__body,
.post-cards--grid .post-card--grid:nth-child(6n):not(.post-card--thumbnail-no) .post-card__body {
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	z-index: 3;
	padding: 20px 22px;
	color: #fff;
}

.post-cards--grid .post-card--grid:nth-child(6n + 1):not(.post-card--thumbnail-no) .post-card__title,
.post-cards--grid .post-card--grid:nth-child(6n):not(.post-card--thumbnail-no) .post-card__title {
	font-size: 1.2em;
}

/* Плитка */

.post-cards--vertical {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--g-gap);
}

.post-card--vertical .post-card__thumbnail,
.post-card--related .post-card__thumbnail {
	border-radius: var(--g-radius);
	overflow: hidden;
	margin-bottom: 12px;
	background: var(--g-line);
}

.post-card--vertical .post-card__thumbnail img,
.post-card--related .post-card__thumbnail img {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform .35s ease;
}

.post-card--vertical:hover .post-card__thumbnail img,
.post-card--related:hover .post-card__thumbnail img {
	transform: scale(1.04);
}

.post-card--vertical .post-card__title,
.post-card--related .post-card__title {
	font-size: 1em;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
}

.post-card--related .post-card__description {
	font-size: .9em;
	color: var(--g-muted);
	margin-bottom: 8px;
}

/* Компактные карточки в строку */

.post-cards--small {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 18px;
}

.post-card--small {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	flex: 0 0 27.27%;
	max-width: 27.27%;
}

.post-card--small .post-card__thumbnail {
	flex: 0 0 100px;
	width: 100px;
	border-radius: var(--g-radius-sm);
	overflow: hidden;
	background: var(--g-line);
}

.post-card--small .post-card__body {
	min-width: 0;
}

.post-card--small .post-card__title {
	font-size: .95em;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 6px;
}

/* Карточки архива */

.post-card--standard .post-card__title {
	font-weight: 700;
}

/* -----------------------------------------------------------------------------
   6. Страница записи
   -------------------------------------------------------------------------- */

.breadcrumb {
	font-size: 12.8px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--g-muted);
	margin-bottom: 14px;
}

.breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.breadcrumb-separator {
	margin: 0 6px;
}

.entry-title,
.page-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.16;
	margin: 0 0 18px;
}

.entry-image {
	position: relative;
	border-radius: var(--g-radius);
	overflow: hidden;
	margin-bottom: 25px;
}

.entry-image .post-card__category {
	position: absolute;
	left: 16px;
	bottom: 16px;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 14px 20px;
	margin-bottom: 26px;
	border-radius: var(--g-radius-sm);
	background: #f4f8f5;
	font-size: 14.4px;
}

.entry-meta__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.entry-meta .entry-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--g-muted);
}

.entry-meta .entry-value {
	display: block;
	font-weight: 700;
}

.entry-meta__item > svg {
	color: var(--g-green-500);
}

.entry-content {
	margin-bottom: 40px;
}

.entry-content img {
	border-radius: var(--g-radius-sm);
}

/* Оглавление */

.table-of-contents {
	margin-bottom: 30px;
	padding: 20px 26px;
	border-radius: var(--g-radius);
	background: #f1f7f3;
}

.table-of-contents__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
}

.table-of-contents__toggle {
	width: 22px;
	height: 22px;
	position: relative;
}

.table-of-contents__toggle::before {
	content: "";
	position: absolute;
	left: 5px;
	top: 8px;
	width: 10px;
	height: 10px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(135deg);
	transition: transform .2s;
}

.table-of-contents.open .table-of-contents__toggle::before {
	transform: rotate(-45deg);
	top: 4px;
}

.table-of-contents__list {
	margin: 14px 0 0;
	padding-left: 22px;
}

.table-of-contents:not(.open) .table-of-contents__list {
	display: none;
}

.table-of-contents__item {
	margin-bottom: 8px;
}

.table-of-contents__item--h3 {
	padding-left: 16px;
}

/* Кнопки «поделиться» */

.social-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.social-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #eef4f0;
	color: var(--g-green-700);
	text-decoration: none;
	transition: background .2s, transform .2s;
}

.social-button:hover {
	background: var(--g-green-500);
	color: #fff;
	transform: translateY(-2px);
}

.social-button__label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
}

.social-button svg {
	width: 17px;
	height: 17px;
}

.social-button.is-copied {
	background: var(--g-green-500);
	color: #fff;
}

.entry-social {
	margin: 30px 0 10px;
}

/* Оценка */

.rating-box {
	padding: 20px 22px;
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius);
	margin-bottom: 24px;
}

.rating-box__header {
	font-weight: 700;
	margin-bottom: 10px;
}

.star-rating {
	display: flex;
	gap: 4px;
	margin-bottom: 10px;
}

.star-rating-item svg {
	fill: #dfe7e2;
	transition: fill .15s;
}

.star-rating-item.is-active svg {
	fill: #f2b705;
}

.rating-box__summary {
	font-size: 14.4px;
	color: var(--g-muted);
}

/* Похожие записи */

.related-posts {
	padding: 40px 0;
}

.related-posts__header {
	margin-bottom: 6px;
}

/* -----------------------------------------------------------------------------
   7. Архивы, пагинация, виджеты
   -------------------------------------------------------------------------- */

.page-header {
	margin-bottom: 24px;
}

.taxonomy-description {
	color: var(--g-muted);
}

.no-results {
	margin-bottom: 30px;
}

.pagination {
	margin: 30px 0 50px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius-sm);
	color: inherit;
	text-decoration: none;
}

.pagination .page-numbers.current {
	background: var(--g-green-700);
	border-color: var(--g-green-700);
	color: #fff;
}

.widget {
	margin-bottom: 30px;
}

.widget-header {
	margin-bottom: 12px;
	font-weight: 700;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	margin-bottom: 10px;
	line-height: 1.4;
}

.widget a {
	color: inherit;
	text-decoration: none;
}

.widget a:hover {
	color: var(--g-green-700);
}

/* -----------------------------------------------------------------------------
   8. Комментарии
   -------------------------------------------------------------------------- */

.comments-area {
	margin-bottom: 40px;
}

.comment-list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.comment-list .children {
	list-style: none;
	padding-left: 26px;
}

.comment-body {
	padding: 16px 0;
	border-bottom: 1px solid var(--g-line);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--g-line);
	border-radius: var(--g-radius-sm);
	font: inherit;
}

.comment-form .submit {
	padding: 12px 26px;
	background: var(--g-green-700);
	color: #fff;
	border-radius: var(--g-radius-sm);
	font-weight: 700;
	cursor: pointer;
}

/* -----------------------------------------------------------------------------
   9. Подвал
   -------------------------------------------------------------------------- */

.site-footer {
	background: var(--g-green-800);
	color: rgba(255, 255, 255, .82);
	padding: 50px 0;
	margin-top: 40px;
	font-size: 14.4px;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer a:hover {
	color: #fff;
}

.footer-widgets {
	display: flex;
	flex-wrap: wrap;
	gap: var(--g-gap);
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-widget {
	flex: 1 1 200px;
	min-width: 0;
}

.footer-widget .widget {
	margin-bottom: 0;
}

.footer-widget .widget-header {
	color: #fff;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* -----------------------------------------------------------------------------
   10. Адаптив
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {

	:root {
		--g-gutter: 30px;
		--g-sidebar: 280px;
		--g-sidebar-gap: 40px;
		--g-gap: 30px;
	}

	.card-slider__image {
		height: 340px;
	}
}

@media (max-width: 991px) {

	.humburger {
		display: flex;
	}

	.top-menu {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: none;
		background: var(--g-green-700);
		padding: 10px var(--g-gutter) 20px;
		box-shadow: 0 16px 30px rgba(9, 24, 15, .25);
	}

	.top-menu.is-open {
		display: block;
	}

	.top-menu ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.top-menu .sub-menu {
		position: static;
		display: flex;
		box-shadow: none;
		padding: 6px 0 0 14px;
	}

	.site-header-inner {
		gap: 16px;
	}

	.site-branding {
		flex: 1 1 auto;
	}

	.site-content-inner {
		flex-direction: column;
	}

	.has-sidebar #primary {
		padding-right: 0;
		width: 100%;
	}

	#secondary {
		flex: 1 1 auto;
		width: 100%;
		margin-top: 30px;
	}

	.sticky-sidebar {
		position: static;
	}

	.card-slider__slide {
		flex-basis: 50%;
	}

	.card-slider__image {
		height: 300px;
	}

	.post-cards--vertical {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.post-card--small {
		flex-basis: 48%;
		max-width: 48%;
	}
}

@media (max-width: 767px) {

	:root {
		--g-gutter: 18px;
		--g-gap: 22px;
	}

	.site-title {
		font-size: 20px;
	}

	.site-description {
		display: none;
	}

	.card-slider__slide {
		flex-basis: 100%;
	}

	.card-slider__image {
		height: 240px;
	}

	.card-slider__body {
		padding: 18px 18px 22px;
	}

	.card-slider__title {
		font-size: 19px;
	}

	.card-slider__nav {
		display: none;
	}

	.post-cards--grid {
		margin: 0;
	}

	.post-card--grid,
	.post-cards--grid .post-card--grid:nth-child(6n + 1),
	.post-cards--grid .post-card--grid:nth-child(6n) {
		flex-basis: 100%;
		max-width: 100%;
		padding: 0;
	}

	.post-cards--grid .post-card--grid:nth-child(6n + 1):not(.post-card--thumbnail-no) .post-card__body,
	.post-cards--grid .post-card--grid:nth-child(6n):not(.post-card--thumbnail-no) .post-card__body {
		left: 0;
		right: 0;
	}

	.post-cards--vertical {
		grid-template-columns: minmax(0, 1fr);
	}

	.post-card--small {
		flex-basis: 100%;
		max-width: 100%;
	}

	.entry-title,
	.page-title {
		font-size: 25px;
	}

	.entry-meta {
		gap: 16px;
	}

	.footer-widgets {
		gap: 24px;
	}
}
