/*
Theme Name: MonoBrand
Text Domain: mytheme
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Author: You
Description: Custom theme.
*/

.site-logo::after,
.site-logo::before {
	display: block;
	top: 0;
	z-index: -1;
	content: "";
	position: absolute;
}
.btn:hover,
.menu a:hover,
a {
	text-decoration: none;
}
.backdrop,
.nav-open .burger span {
	opacity: 0;
}
.card .title span,
h1,
h2,
h3,
h4 {
	border-bottom: 2px solid var(--brand-2);
}
.card-bonus,
.toc,
table {
	overflow: hidden;
}
.bonus .big,
.bonus .mid,
.bonus .top {
	text-transform: uppercase;
}
.bonus,
.card .title,
footer {
	text-align: center;
}
footer,
footer a {
	color: var(--footer-text);
}
:root {
	--container: 1300px;
	--radius: 14px;
	--shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
	--shadow-soft: 0 4px 14px rgba(17, 24, 39, 0.08);
	--brand: #15513b;
	--brand-2: #0f5239;
	--brand-3: #27b686;
	--table-toc-bg: #c9f3e6;
	--brand-second: #ffcd07;
	--brand-second-700: #e5b905;
	--toc-table-header: #fff;
	--text: #111;
	--muted: #777;
	--main-and-card: #fff;
	--black: #000;
	--header-bg: #fff;
	--body-bg: #fff;
	--header-link: #818181;
	--table-border: #b1b1b1;
	--footer-logos: #f1f9f6;
	--footer-text: #fff;
}
* {
	box-sizing: border-box;
}
body,
html {
	margin: 0;
	padding: 0;
}
body {
	font:
		16px/1.55 system-ui,
		-apple-system,
		Segoe UI,
		Roboto,
		Ubuntu,
		Cantarell,
		"Noto Sans",
		"Helvetica Neue",
		Arial,
		"Apple Color Emoji",
		"Segoe UI Emoji";
	color: var(--text);
	background: var(--body-bg);
	padding-top: 70px;
}
h1,
h2 {
	font-weight: 800;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
}
a:hover {
	text-decoration: underline;
}
p a {
	color: var(--brand);
}
p a:hover {
	color: var(--brand-second);
}
h1,
h2,
h3,
h4 {
	display: inline-block;
	margin: 28px 0 14px;
	line-height: 1.2;
}
h1 {
	font-size: clamp(26px, 3vw + 1rem, 40px);
}
h2 {
	font-size: clamp(22px, 2.2vw + 0.6rem, 28px);
}
.btn,
.card .title,
.hero-tag,
h3,
h4,
th {
	font-weight: 700;
}
h3 {
	font-size: clamp(18px, 1.6vw + 0.5rem, 22px);
}
h4 {
	font-size: clamp(16px, 1.2vw + 0.4rem, 18px);
}
ol,
ul {
	padding-left: 20px;
}
ul li:not(.c-marker)::marker {
	font-size: 20px;
	color: var(--brand-second);
}
ol li:not(.c-marker)::marker {
	color: var(--brand-second);
}
.wp-block-table td, .wp-block-table th {
	border: none;
}
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table {
	width: 100%;
	border-collapse: separate !important;
	border-spacing: 0;
	background: var(--main-and-card);
	border: 1px solid var(--table-border);
	border-radius: 12px;
}
td {
	border: none !important;
}
td,
th {
	padding: 10px 20px;
	border-top: 1px solid var(--table-border) !important;
	vertical-align: top;
}
td:not(:last-child),
th:not(:last-child) {
	border-right: 1px solid var(--table-border) !important;
}
.rating-row:first-child,
tr:first-child td,
tr:first-child th {
	border-top: 0;
}
th {
	background: var(--brand);
	color: var(--toc-table-header);
	border-top: none !important;
}
tr:nth-child(odd) {
	background: var(--table-toc-bg);
}
blockquote, q{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
blockquote {
    background: var(--brand-3);
    border-radius: 10px;
    padding: 10px 20px;
    color: var(--main-and-card);
    font-weight: 500;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--brand-second);
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 15px;
}
.grid {
	display: grid;
	gap: 42px;
}
.site-header-wrap {
	background: var(--header-bg);
	box-shadow: 1px 2px 7px 1px rgba(0, 0, 0, 0.37);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	height: 70px;
}
.site-logo,
.site-logo::after,
.site-logo::before {
	background: var(--brand);
}
.site-header {
	display: grid;
	grid-template-columns: max-content 1fr max-content;
	align-items: center;
	gap: 56px;
	height: 100%;
}
.site-logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-height: 70px;
    height: 100%;
    padding: 20px 0;
}
.site-logo img {
    max-height: 70px;
    height: 100%;
    object-fit: contain;
    width: auto;
}
.site-logo::after {
	width: 50px;
	height: 100%;
	transform: skewX(-22deg);
	right: -30px;
}
.site-logo::before {
	width: 1000%;
	height: 100%;
	right: 0;
}
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 36px;
}
.btn,
.main-rating-block i,
.menu a {
	display: inline-block;
}
.menu a {
	color: var(--header-link);
	font-weight: 600;
	padding: 10px 0;
	transition: color 0.3s;
}
.menu a:hover {
	color: var(--brand);
}
.btn,
.nav-panel .menu a {
	color: var(--text);
}
.btn {
	background: linear-gradient(90deg, var(--brand-second) 0, var(--brand-second-700) 100%);
	padding: 12px 28px;
	border-radius: 999px;
	box-shadow: var(--shadow-soft);
	transition:
		background-position 0.4s,
		transform 0.2s,
		filter 0.2s;
	background-size: 200% auto;
	background-position: left center;
}
.btn:hover {
	background-position: right center;
	transform: translateY(-2px);
}
.btn:active {
	transform: translateY(0);
	filter: brightness(0.95);
}
.text-btn {
	display: flex;
	justify-content: center;
}
.burger {
	display: none;
	position: relative;
	width: 42px;
	height: 36px;
	border-radius: 8px;
	border: 1px solid #e7e7e7;
}
.burger span,
.burger::after,
.burger::before {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	height: 2px;
	background: #2b2b2b;
	border-radius: 2px;
	transition:
		transform 0.25s,
		opacity 0.25s,
		top 0.25s,
		bottom 0.25s;
}
.burger span {
	top: 50%;
	transform: translateY(-50%);
}
.burger::before {
	top: 10px;
}
.burger::after {
	bottom: 10px;
}
.nav-panel {
	position: fixed;
	inset: 70px 0 0 auto;
	width: min(360px, 86vw);
	background: var(--main-and-card);
	transform: translateX(100%);
	transition: transform 0.35s;
	box-shadow: -12px 0 28px rgba(0, 0, 0, 0.15);
	padding: 18px;
	z-index: 19;
}
.nav-panel .menu {
	flex-direction: column;
	gap: 14px;
}
.backdrop {
	position: fixed;
	inset: 70px 0 0 0;
	background: rgba(0, 0, 0, 0.35);
	visibility: hidden;
	transition: opacity 0.35s;
	z-index: 18;
}
.hero-right small,
.hero-tag {
	opacity: 0.9;
}
.nav-open .nav-panel {
	transform: none;
}
.nav-open .backdrop {
	opacity: 1;
	visibility: visible;
}
.nav-open .burger::before {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.nav-open .burger::after {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
.hero {
	margin: 22px 0 26px;
}
.hero-inner {
	background: var(--brand);
	border-radius: var(--radius);
	display: grid;
	grid-template-columns: 284px 1fr 310px;
	gap: 28px;
	padding-right: 26px;
	border: 0;
	box-shadow: var(--shadow);
	color: var(--toc-table-header);
	position: relative;
}
.hero-left {
	background: var(--brand-3);
	border-radius: 10px 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
}
.hero-left img {
    height: auto;
    width: 100%;
}
.logo-row img {
	height: 50px;
	width: auto;
}
.hero-mid {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 26px 0;
}
.card,
.hero-right,
main {
	border-radius: 12px;
	padding: 20px 18px;
}
.hero-tag {
	font-size: 14px;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}
.hero-title {
	font-size: clamp(26px, 3.2vw + 0.8rem, 44px);
	line-height: 1.15;
	font-weight: 800;
	color: var(--brand-second);
	margin: 0 0 16px;
}
.hero-mid .btn {
	align-self: flex-start;
}
.hero-right {
	background: var(--brand-second);
	color: var(--text);
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
	margin: 26px 0;
}
.score {
	font-size: 32px;
	font-weight: 800;
	margin-bottom: 2px;
}
.main-rating-block i.green {
	background: url('assets/img/star-green-color.svg') 50% / contain no-repeat;
}
.main-rating-block i {
	background: url('assets/img/star-yellow-color.svg') 50% / contain no-repeat;
	height: 20px;
	width: 20px;
}
.hero-right .btn {
	background: var(--brand);
	color: var(--toc-table-header);
	padding: 10px 18px;
	border-radius: 999px;
}
.bonus .mid,
.card-bonus-title span {
	color: var(--brand-second);
}
.hero-right .btn:hover {
	opacity: 0.92;
}
.hero-right a.alt {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.main {
	grid-template-columns: 1fr 330px;
}
.card,
main {
	background: var(--main-and-card);
	box-shadow: var(--shadow-soft);
}
.aside .card + .card {
	margin-top: 18px;
}
.card .title {
	font-size: 18px;
	margin: 0 0 18px;
}
.card-bonus {
	background: var(--brand-2);
	border-radius: 10px;
	padding: 50px 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	position: relative;
}
.card-bonus img {
	height: auto;
    width: 100%;
}
.card-bonus-img-sub {
	position: absolute;
	left: 0;
	bottom: 0;
	background: var(--brand-3);
	color: var(--toc-table-header);
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 0 20px 0 0;
}
.card-bonus-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 14px;
}
.bonus .mid,
.bonus .top,
.card-info {
	margin-bottom: 10px;
}
.card-info {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 14px;
}
.muted {
	color: var(--muted);
}
.bonus,
.toc-head {
	color: var(--toc-table-header);
}
.rating-row {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-top: 1px solid #f0f2f4;
}
.toc {
	background: var(--table-toc-bg);
	border-radius: 12px;
}
.toc-head,
footer {
	background: var(--brand);
}
.toc-head {
	padding: 14px 16px;
	font-weight: 700;
}
.toc ul {
	margin: 0;
	padding: 10px 30px;
}
.toc li {
	margin: 8px 0;
}
.bonus {
	border-radius: 10px;
	padding: 42px 20px;
	margin: 28px 0;
	background: var(--brand) url('assets/img/pexels-aleksandar-pasaric-1694000.jpg') center/cover no-repeat;
	box-shadow: var(--shadow);
}
.bonus .top {
	font-size: clamp(18px, 2.2vw + 0.4rem, 32px);
	font-weight: 700;
}
.bonus .mid {
	font-size: clamp(16px, 1.8vw + 0.3rem, 24px);
}
.bonus .big {
	font-size: clamp(20px, 2.6vw + 0.5rem, 36px);
	font-weight: 800;
	margin-bottom: 16px;
}
.logos {
	background: var(--footer-logos);
	padding: 26px 0;
	margin: 32px 0 0;
}
.logo-row {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	align-items: center;
}
footer {
	padding: 32px 0;
}
footer a {
	text-decoration: underline dotted var(--footer-text);
}
@media (max-width: 1400px) {
	.container {
		max-width: 1140px;
	}
}
@media (max-width: 1200px) {
	.container {
		max-width: 1000px;
	}
	.site-header {
		gap: 50px;
	}
	.hero-inner {
		grid-template-columns: 240px 1fr 300px;
	}
}
@media (max-width: 992px) {
	.burger {
		display: inline-block;
	}
	nav.primary .menu {
		display: none;
	}
	.site-header {
		grid-template-columns: max-content 1fr max-content max-content;
		gap: 20px;
	}
	.main,
	.rating-row {
		grid-template-columns: 1fr;
	}
	.aside {
		order: 2;
	}
	.card-info {
		grid-template-columns: 120px 1fr;
	}
	.hero-left {
		border-radius: 10px;
	}
	.hero-inner {
		grid-template-columns: 240px 1fr;
		gap: 18px;
		padding: 20px;
	}
	.hero-right {
		grid-column: 1/-1;
		margin: 0;
		padding: 5px;
	}
	.hero-mid .btn {
		align-self: flex-start;
	}
	#menu-footer {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0;
		column-gap: 20px;
	}
	body {
		padding-top: 30px;
	}
}
@media (max-width: 768px) {
	.site-header {
		grid-template-columns: 200px 1fr max-content max-content;
	}
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.hero-left {
		border-radius: 10px;
	}
	.hero-mid .btn {
		align-self: center;
	}
}
@media (max-width: 576px) {
	.site-header-wrap {
		height: 64px;
	}
	.nav-panel {
		inset: 64px 0 0 auto;
	}
	.backdrop {
		inset: 64px 0 0 0;
	}
	.hero-title {
		margin-bottom: 12px;
	}
}
@media (max-width: 500px) {
	.site-header {
		grid-template-columns: 150px 1fr max-content max-content;
		gap: 10px;
	}
	.site-logo {
		padding: 5px 0;
	}
	.container {
		padding: 0 10px;
	}
	main {
		background: 0 0;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
	}
}
@media (max-width: 428px) {
	.site-header {
		grid-template-columns: 130px 1fr max-content max-content;
		gap: 10px;
	}
}
@media (max-width: 400px) {
	.site-header {
		grid-template-columns: 100px 1fr max-content max-content;
		gap: 5px;
	}
	.site-header .btn {
		padding: 10px 15px;
	}
}
#menu-footer {
	justify-content: center;
}
#menu-footer li a {
	color: var(--brand-second);
	text-decoration: none;
}
#menu-footer li a:hover {
	color: var(--brand-second);
}
.mb-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 1000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.mb-popup {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(.98);
	max-width: 560px;
	width: min(92vw, 560px);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.mb-popup .card {
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	background: var(--main-and-card);
}
.mb-popup-close {
	position: absolute;
	top: 8px;
	right: 8px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	cursor: pointer;
}
.mb-popup-close:focus-visible {
	outline: 2px solid var(--brand-second);
	outline-offset: 2px;
}
.mb-popup.is-open,
.mb-popup-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}
.mb-popup.is-open {
	transform: translate(-50%, -50%) scale(1);
}
body.mb-popup-open {
	overflow: hidden;
	touch-action: none;
	overscroll-behavior: contain;
}
@supports not (backdrop-filter: blur(2px)) {
  .mb-popup-backdrop { background: rgba(0,0,0,.7); }
}
.schema-faq {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.schema-faq-section {
  border: 1px solid var(--table-border);
  border-radius: var(--radius);
  overflow: clip;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.schema-faq-question {
  display: block;
  font-weight: 700;
  font-size: clamp(16px, 1.2vw + 0.4rem, 18px);
  line-height: 1.3;
  margin: 0;
  padding: 10px 20px;
  background: var(--brand);
  color: var(--brand-second);
  border-bottom: 2px solid var(--brand-2);
}
.schema-faq-answer {
  padding: 10px 20px;
  margin: 0;
  color: var(--text);
}
.schema-faq.is-accordion .schema-faq-question::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .2s ease;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="black"><path d="M5.23 7.21a1 1 0 0 1 1.41 0L10 10.58l3.36-3.37a1 1 0 1 1 1.41 1.42l-4.07 4.07a1 1 0 0 1-1.41 0L5.23 8.63a1 1 0 0 1 0-1.42z"/></svg>') center/contain no-repeat;
  background: var(--brand);
}
.schema-faq.is-accordion .schema-faq-section.is-open .schema-faq-question::after {
  transform: translateY(-50%) rotate(180deg);
}
.schema-faq.is-accordion .schema-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: max-height .28s ease, opacity .2s ease, transform .2s ease;
  margin: 0;
}
.schema-faq.is-accordion .schema-faq-section.is-open .schema-faq-answer {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}
.schema-faq.is-accordion .schema-faq-question:focus-visible {
  outline: 2px solid var(--brand-second);
  outline-offset: 3px;
}
.schema-faq.is-accordion .schema-faq-section:hover {
  box-shadow: 0 6px 16px rgba(17,24,39,.10);
}
.mb-cards { margin: 32px 0; }
.mb-cards__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
.mb-cards__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.mb-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--main-and-card);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  aspect-ratio: 200 / 280;
}
.mb-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mb-card__label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
}
.mb-card__label img { width: 24px; height: 24px; }
.mb-card__back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 3;
  border-radius: var(--radius);
}
.mb-card__name {
  color: #fff;
  margin: 0 0 2px;
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.mb-card:hover .mb-card__back { opacity: 1; transform: none; }
.mb-card:hover .mb-card__back,
.mb-card:focus-within .mb-card__back {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 20%, rgba(0,0,0,0.65) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--fluid { width: 100%; text-align: center; }
.btn--xs { padding: 8px 12px; font-size: 12px; }
.btn--s  { padding: 10px 16px; font-size: 14px; }
.btn--bordered {
  background: var(--brand);
  color: var(--text);
}
.mb-cards__btn { display: block; max-width: 360px; margin: 0 auto; }
@media (max-width: 1400px) { .mb-cards__list { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 1200px) { .mb-cards__list { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 992px)  { .mb-cards__list { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .mb-cards__list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px)  { .mb-cards__list { grid-template-columns: repeat(2, 1fr); } }
#ez-toc-container {
    background: var(--brand);
    border: 1px solid var(--brand-second);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    color: var(--text);
}
#ez-toc-container a {
    color: var(--text);
}