@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Caveat:wght@400;700&family=Golos+Text:wght@400;500;600;700;900&family=Onest:wght@400;500;700&family=Inter:wght@400;500;600&display=swap");
:root {
  --color-bg: #f8fafb;
  --color-white: #ffffff;
  --color-dark: #29303c;
  --color-black-text: #212020;
  --color-excerpt: #71797f;
  --color-muted: #8e8d8a;
  --color-border: rgba(234, 234, 234, 0.65);
  --color-border-solid: #eaeaea;
  --color-tag-bg: #f4f4f6;
  --color-tag-bg-hover: rgb(232.78, 232.78, 236.82);
  --color-header-bg: rgba(255, 255, 255, 0.95);
  --color-link: inherit;
}

[data-theme=dark] {
  --color-bg: #0f0f0f;
  --color-white: #1a1a1a;
  --color-dark: #f8fafb;
  --color-black-text: #f8fafb;
  --color-excerpt: #71797f;
  --color-muted: #8e8d8a;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-solid: #262626;
  --color-tag-bg: #1c1c1c;
  --color-tag-bg-hover: #242424;
  --color-header-bg: rgba(15, 15, 15, 0.85);
  --color-link: #f8fafb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Golos Text", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s ease, color 0.2s ease;
}

a {
  color: var(--color-link);
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-wrap {
  max-width: 1728px;
  margin: 0 auto;
  padding: 0 224px;
}

.layout {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 80px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: auto;
}

@media all and (max-width: 1280px) {
  .layout {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media all and (max-width: 800px) {
  .sidebar-right {
    display: none !important;
  }
  .header__inner {
    justify-content: center;
  }
}
.feed-header__views .catalog-grid-view {
  background: url("/images/view-grid.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-top: 4px;
}
.feed-header__views .catalog-full-view {
  background: url("/images/view-list.svg");
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-top: 4px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  backdrop-filter: blur(10px);
  padding: 11px 0;
  transition: background-color 0.2s ease;
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.header .wrap-logo {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
}
.logo__brand {
  font-family: "Golos Text", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -2px;
  line-height: 1;
}
.logo__media {
  font-family: "Caveat", cursive;
  font-size: 40px;
  font-weight: 400;
  color: #069f7c;
  line-height: 1;
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--color-border-solid);
  border-radius: 90px;
  background: transparent;
  cursor: pointer;
}
.theme-toggle__btn {
  width: 34px;
  height: 34px;
  border-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.theme-toggle__btn svg {
  width: 18px;
  height: 18px;
}
.theme-toggle__btn--active {
  background: #069f7c;
}
.theme-toggle__btn--active svg {
  color: #ffffff;
}

.search-block {
  position: relative;
}
.search-block button {
  background: none;
  border: none;
  position: absolute;
  left: 10px;
  top: 12px;
}
.search-block .form-control {
  border-radius: 20px;
  border: 1px solid #4384D0;
  padding-left: 30px;
  color: #4384D0;
}

.menu-block {
  margin-left: 10px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.menu-block menu {
  list-style: none;
}
.menu-block menu li {
  display: inline-block;
}
.menu-block menu li + li {
  margin-left: 10px;
}

@media all and (max-width: 1280px) {
  .header__inner {
    padding: 0 15px;
  }
}
@media all and (max-width: 568px) {
  .menu-block {
    gap: 0;
  }
  .menu-block menu {
    display: none;
  }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border-solid);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--color-dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media all and (max-width: 568px) {
  .burger {
    display: flex;
  }
}
.hero {
  width: 100%;
  height: 520px;
  background: #29303c;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  position: relative;
  margin-top: -20px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2035 0%, #29303c 50%, #0d1a2e 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #069f7c;
  color: #ffffff;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
}
.hero__title {
  font-family: "Golos Text", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  max-width: 680px;
  margin-bottom: 16px;
}
.hero__excerpt {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  line-height: 1.5;
}

.sidebar-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 240px;
}

.sidebar-section__title {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.game-item__icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-item__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.game-item__name {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  color: var(--color-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.tag:hover {
  background: var(--color-tag-bg-hover);
}

@media all and (max-width: 568px) {
  .sidebar-left {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    max-width: 80vw;
    z-index: 200;
    background: var(--color-white);
    padding: 90px 24px 24px;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar-left.is-open {
    transform: translateX(0);
  }
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.is-active {
  display: block;
  opacity: 1;
}

.sidebar-right {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}

.widget-telegram {
  background: #27a7e7;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.widget-telegram:hover {
  filter: brightness(1.05);
}
.widget-telegram__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-telegram__icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}
.widget-telegram__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.widget-telegram__title {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}
.widget-telegram__sub {
  font-family: "Golos Text", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.widget-donate {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.widget-donate__header {
  padding: 1px 0 0;
}
.widget-donate__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.widget-donate__title {
  font-family: "Bebas Neue", cursive;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1;
}
.widget-donate__sub {
  font-family: "Golos Text", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.widget-donate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.widget-donate__btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.widget-donate--purple {
  background: #415dff;
}
.widget-donate--green {
  background: #069f7c;
}

.feed {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feed-header__filters {
  display: flex;
  gap: 4px;
}
.feed-header__views {
  display: flex;
  gap: 5px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  border-radius: 51px;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.filter-btn--active {
  background: #069f7c;
  color: var(--color-white);
}
.filter-btn--inactive {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-border-solid);
}

.view-btn {
  width: 40px;
  height: 40px;
  border-radius: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--color-border-solid);
  transition: all 0.2s ease;
}
.view-btn svg {
  width: 20px;
  height: 20px;
}
.view-btn--active {
  background: #069f7c;
  border-color: #069f7c;
}
.view-btn--active svg {
  color: var(--color-white);
}
.view-btn--inactive {
  background: var(--color-white);
  border-radius: 34px;
}
.view-btn--inactive svg {
  color: var(--color-dark);
}

.article-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.2s ease;
  margin-top: 20px;
}
.article-card__wrapper {
  padding: 30px;
  position: relative;
}
.article-card__wrapper .article-card__categories {
  position: absolute;
  top: -15px;
}
.article-card:hover {
  box-shadow: 0 4px 24px rgba(41, 48, 60, 0.08);
}
.article-card__categories {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.article-card__image {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
  background: var(--color-tag-bg);
}
.article-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-black-text);
  line-height: 1.1;
  margin: 0;
}
.article-card__excerpt {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-excerpt);
  line-height: 1.333;
  margin-top: 10px;
}
.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.article-card__actions {
  display: flex;
  gap: 4px;
  align-items: center;
}
.article-card__reactions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.article-card__category {
  background: #069f7c;
  border-radius: 15px;
  padding: 6px 12px;
  color: #fff;
}
.article-card__category:hover {
  color: #fff;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--color-tag-bg);
  border-radius: 50px;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}
.category-pill img,
.category-pill svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 40px;
  padding: 0 12px;
  background: var(--color-tag-bg);
  border-radius: 50px;
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  cursor: pointer;
  transition: background 0.2s ease;
}
.action-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.action-pill:hover {
  background: var(--color-tag-bg-hover);
}

.reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--color-tag-bg);
  border-radius: 53px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.reaction-btn__count {
  font-family: "Onest", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}
.reaction-btn:hover {
  background: var(--color-tag-bg-hover);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  color: var(--color-muted);
}
.article-meta__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-tag-bg);
  overflow: hidden;
  object-fit: cover;
}
.article-meta__date {
  font-size: 13px;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
}

.mini-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--color-border);
}
.mini-card__tag {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mini-card__title {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black-text);
  line-height: 1.3;
}
.mini-card__excerpt {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  color: var(--color-excerpt);
  line-height: 1.4;
}
.mini-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #069f7c;
  cursor: pointer;
  width: fit-content;
}
.mini-card__link svg {
  width: 16px;
  height: 16px;
}
.mini-card--image {
  padding: 0;
  position: relative;
}
.mini-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-primary {
  border-color: rgba(6, 159, 124, 0.35);
  box-shadow: 0 8px 32px rgba(6, 159, 124, 0.12);
}

.article-card-primary:hover {
  box-shadow: 0 10px 36px rgba(6, 159, 124, 0.18);
}

.article-card-primary .article-image {
  position: relative;
}

.article-card-primary .article-card__image {
  height: 340px;
  object-fit: cover;
}

.article-card-primary .article-image::before {
  content: "Главное";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: #069f7c;
  color: #ffffff;
  font-family: "Golos Text", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.article-card-primary .article-card__title {
  font-size: 32px;
  line-height: 1.15;
}

.article-card-primary .article-card__title a {
  transition: color 0.15s ease;
}

.article-card-primary .article-card__title a:hover {
  color: #069f7c;
}

.article-card-primary .article-card__excerpt {
  font-size: 19px;
}

.feed .items.grid .article-card-primary {
  width: 100%;
}

.feed .items.grid .article-card-primary .article-image {
  height: auto;
}

.feed .items.grid .article-card-primary .article-card__title {
  height: auto;
  -webkit-line-clamp: unset;
}

@media all and (max-width: 568px) {
  .article-card-primary .article-card__image {
    height: 220px;
  }
  .article-card-primary .article-card__title {
    font-size: 24px;
  }
}
.feed .items.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  justify-content: space-between;
}
.feed .items.grid .article-card {
  width: 48%;
}
.feed .items.grid .article-card .article-image {
  height: 200px;
  overflow: hidden;
}
.feed .items.grid .article-card .article-card__title {
  height: 105px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination-block {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-radius: 51px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 51px;
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid var(--color-border-solid);
  transition: all 0.2s ease;
}
.pagination li a:hover {
  background: var(--color-tag-bg-hover);
}
.pagination li.active a {
  background: #069f7c;
  border-color: #069f7c;
  color: var(--color-white);
}
.pagination li.prev a, .pagination li.next a {
  background: var(--color-tag-bg);
  border-color: transparent;
}
.pagination li.prev a:hover, .pagination li.next a:hover {
  background: var(--color-tag-bg-hover);
}
.pagination li.prev a i, .pagination li.next a i {
  font-size: 14px;
}
.pagination li.disabled a {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

@media all and (max-width: 568px) {
  .pagination li a {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 14px;
  }
}
@media all and (max-width: 990px) {
  .feed .items.grid .article-card {
    width: 100%;
  }
}
.d-flex {
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 20px;
  background: none;
  padding: 0;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb li a {
  color: var(--color-muted);
  transition: color 0.2s ease;
}
.breadcrumb li a:hover {
  color: var(--color-dark);
}
.breadcrumb li.active {
  font-weight: 500;
}

[data-theme=dark] .breadcrumb {
  background: none;
}

[data-theme=light] .feed .view-btn:not(.view-btn--active) span {
  filter: invert(1);
}

.cta-block-tool {
  border: 1px solid #e8e8eb;
  border-radius: 8px;
  padding: 20px;
}

.cta-block-tool__image-preview {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin-bottom: 8px;
  border-radius: 6px;
}

.cta-block-tool__image-button {
  background: #f0f0f5;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 13px;
}

.cta-block-tool__title {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 8px;
}

.cta-block-tool__description {
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}

.cta-block-tool [contentEditable]:empty:before {
  content: attr(data-placeholder);
  color: #b0b0b8;
}

.cta-block-tool__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-block-tool__button-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 200px;
}

.cta-block-tool__button-group input {
  border: 1px solid #e8e8eb;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 14px;
}

.cta-block {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  margin: 30px 0;
  transition: box-shadow 0.2s ease;
  padding: 15px;
  gap: 15px;
}

.cta-block:hover {
  box-shadow: 0 4px 24px rgba(41, 48, 60, 0.08);
}

.cta-block__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--color-tag-bg);
}

.cta-block__title {
  font-family: "Golos Text", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black-text);
  line-height: 1.25;
  width: 50%;
}

.cta-block__description {
  font-family: "Golos Text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-excerpt);
  line-height: 1.55;
}

.cta-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-block__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  border-radius: 50px;
  font-family: "Golos Text", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: filter 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.cta-block__button:active {
  transform: scale(0.97);
}

.cta-block__button--primary {
  background: #069f7c;
  color: #ffffff;
}

.cta-block__button--primary:hover {
  filter: brightness(1.05);
}

.cta-block__button--secondary {
  background: var(--color-tag-bg);
  color: var(--color-dark);
  border: 1px solid var(--color-border-solid);
}

.cta-block__button--secondary:hover {
  background: var(--color-tag-bg-hover);
}

.cta-block--v1 {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.cta-block--v1 .cta-block__image {
  width: 220px;
  height: 100%;
  min-height: 160px;
  flex-shrink: 0;
}

.cta-block__content {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
}

@media all and (max-width: 1280px) {
  .cta-block__content {
    flex-direction: column;
  }
}
@media all and (max-width: 990px) {
  .cta-block--v1 {
    flex-direction: column;
  }
}
@media all and (max-width: 568px) {
  .cta-block--v1 {
    flex-direction: column;
  }
  .cta-block--v1 .cta-block__image {
    width: 100%;
    height: 180px;
  }
}
[data-theme=dark] .cta-block__button--secondary {
  background: var(--color-tag-bg);
  border-color: var(--color-border-solid);
}

.content-block {
  font-family: "Golos Text", sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-black-text);
}
.content-block > * + * {
  margin-top: 24px;
}
.content-block p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-black-text);
}
.content-block p a {
  color: #069f7c;
  text-decoration: underline;
  text-decoration-color: rgba(6, 159, 124, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}
.content-block p a:hover {
  text-decoration-color: #069f7c;
}
.content-block p mark {
  background: rgba(6, 159, 124, 0.16);
  color: inherit;
  border-radius: 3px;
  padding: 0 2px;
}
.content-block p code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88em;
  background: var(--color-tag-bg);
  border-radius: 4px;
  padding: 2px 6px;
}
.content-block p u {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.content-block h2,
.content-block h3,
.content-block h4 {
  font-family: "Golos Text", sans-serif;
  font-weight: 700;
  color: var(--color-black-text);
  line-height: 1.25;
  scroll-margin-top: 90px;
}
.content-block h2 a,
.content-block h3 a,
.content-block h4 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease;
}
.content-block h2 a:hover,
.content-block h3 a:hover,
.content-block h4 a:hover {
  border-bottom-color: #069f7c;
}
.content-block h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
  padding-top: 8px;
  position: relative;
}
.content-block h2::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 12px;
  bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: #069f7c;
}
.content-block h3 {
  font-size: 24px;
  letter-spacing: -0.1px;
}
.content-block h4 {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--color-excerpt);
}
.content-block ul,
.content-block ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}
.content-block ul ul,
.content-block ul ol,
.content-block ol ul,
.content-block ol ol {
  margin-top: 10px;
  padding-left: 22px;
}
.content-block ul li {
  position: relative;
  padding-left: 26px;
}
.content-block ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #069f7c;
}
.content-block ol {
  counter-reset: content-ol;
}
.content-block ol > li {
  counter-increment: content-ol;
  position: relative;
  padding-left: 34px;
}
.content-block ol > li::before {
  content: counter(content-ol);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-tag-bg);
  color: #069f7c;
  font-family: "Onest", sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-block li {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-black-text);
}
.content-block li.content-block__checklist-item {
  list-style: none;
  padding-left: 30px;
}
.content-block li.content-block__checklist-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border-solid);
  border-radius: 5px;
  background: var(--color-white);
}
.content-block li.content-block__checklist-item.is-checked {
  color: var(--color-muted);
  text-decoration: line-through;
  text-decoration-color: var(--color-border-solid);
}
.content-block li.content-block__checklist-item.is-checked::before {
  background: #069f7c;
  border-color: #069f7c;
}
.content-block li.content-block__checklist-item.is-checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.content-block figure {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-block figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: var(--color-tag-bg);
}
.content-block figure.image-bordered img {
  border: 1px solid var(--color-border-solid);
}
.content-block figure.image-bg img {
  padding: 24px;
  background: var(--color-tag-bg);
  object-fit: contain;
}
.content-block figure.image-stretched {
  margin-left: calc(-1 * var(--content-bleed, 0px));
  margin-right: calc(-1 * var(--content-bleed, 0px));
}
.content-block figure.image-stretched img {
  border-radius: 0;
}
.content-block figure figcaption {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}
.content-block blockquote {
  position: relative;
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--color-tag-bg);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--color-black-text);
}
.content-block blockquote::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1;
  color: rgba(6, 159, 124, 0.25);
}
.content-block blockquote p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 28px;
}
.content-block blockquote cite,
.content-block blockquote .content-block__quote-caption {
  display: block;
  margin-top: 12px;
  padding-left: 28px;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-muted);
}
.content-block blockquote cite::before,
.content-block blockquote .content-block__quote-caption::before {
  content: "— ";
}
.content-block .ce-table,
.content-block table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-border-solid);
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
}
.content-block .ce-table th,
.content-block .ce-table td,
.content-block table th,
.content-block table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-solid);
  border-right: 1px solid var(--color-border-solid);
}
.content-block .ce-table th:last-child,
.content-block .ce-table td:last-child,
.content-block table th:last-child,
.content-block table td:last-child {
  border-right: none;
}
.content-block .ce-table tr:last-child td,
.content-block table tr:last-child td {
  border-bottom: none;
}
.content-block .ce-table th,
.content-block table th {
  background: var(--color-tag-bg);
  font-family: "Golos Text", sans-serif;
  font-weight: 600;
  color: var(--color-black-text);
}
.content-block .ce-table tbody tr:hover td,
.content-block table tbody tr:hover td {
  background: var(--color-tag-bg);
}
.content-block .content-block__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-block .embed-tool {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-block .embed-tool iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 12px;
  background: var(--color-dark);
  border: none;
}
.content-block .embed-tool .embed-caption {
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}
.content-block .attaches-tool {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border-solid);
  border-radius: 8px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.content-block .attaches-tool:hover {
  border-color: #069f7c;
  box-shadow: 0 2px 12px rgba(6, 159, 124, 0.08);
}
.content-block .attaches-tool::before {
  content: "";
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-tag-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23069f7c' stroke-width='1.6'%3E%3Cpath d='M14 6v6a4 4 0 0 1-8 0V4a2.5 2.5 0 0 1 5 0v7a1 1 0 0 1-2 0V6'/%3E%3C/svg%3E") center/16px no-repeat;
}
.content-block .attaches-tool a {
  font-family: "Golos Text", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black-text);
}
.content-block .attaches-tool .attaches-size {
  font-size: 13px;
  color: var(--color-muted);
  margin-left: auto;
  flex-shrink: 0;
}
.content-block .link-tool {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--color-border-solid);
  border-radius: 12px;
  overflow: hidden;
  color: var(--color-black-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.content-block .link-tool:hover {
  border-color: #069f7c;
  box-shadow: 0 2px 12px rgba(6, 159, 124, 0.08);
}
.content-block .link-tool:hover .link-tool-title {
  color: #069f7c;
}
.content-block .link-tool img {
  width: 160px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--color-tag-bg);
}
.content-block .link-tool-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 16px 20px;
  min-width: 0;
}
.content-block .link-tool-title {
  font-size: 16px;
  font-weight: 600;
  transition: color 0.15s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-block .link-tool-desc {
  font-size: 14px;
  color: var(--color-excerpt);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-block .link-tool-url {
  font-size: 12px;
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-block .warning-tool {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  border-radius: 8px;
  background: rgba(255, 176, 32, 0.1);
  border-left: 3px solid #ffb020;
}
.content-block .warning-tool .warning-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Golos Text", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #a06400;
}
.content-block .warning-tool .warning-title::before {
  content: "⚠";
  font-size: 14px;
}
.content-block .warning-tool .warning-message {
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-black-text);
}
.content-block .ce-delimiter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 12px;
  color: var(--color-border-solid);
  letter-spacing: 8px;
  font-size: 20px;
}
.content-block .ce-delimiter::before, .content-block .ce-delimiter::after {
  content: "";
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--color-border-solid);
}

[data-theme=dark] .content-block blockquote::before {
  color: rgba(6, 159, 124, 0.35);
}
[data-theme=dark] .content-block .embed-tool iframe {
  background: #000;
}
[data-theme=dark] .content-block .warning-tool {
  background: rgba(255, 176, 32, 0.08);
}
[data-theme=dark] .content-block .warning-tool .warning-title {
  color: #ffc85c;
}
[data-theme=dark] .content-block ol > li::before {
  background: rgba(6, 159, 124, 0.15);
}

@media all and (max-width: 568px) {
  .content-block {
    font-size: 16px;
  }
  .content-block h2 {
    font-size: 26px;
  }
  .content-block h2::before {
    left: -14px;
  }
  .content-block h3 {
    font-size: 21px;
  }
  .content-block blockquote {
    padding: 20px 18px;
    font-size: 17px;
  }
  .content-block blockquote p {
    padding-left: 0;
  }
  .content-block blockquote::before {
    display: none;
  }
  .content-block .link-tool {
    flex-direction: column;
  }
  .content-block .link-tool img {
    width: 100%;
    height: 160px;
  }
}
footer .d-flex {
  justify-content: space-between;
}
footer menu {
  list-style: none;
}
footer .socials a {
  float: left;
}
footer .small-menu li {
  display: inline;
}
footer .small-menu li + li {
  margin-left: 10px;
}
footer .copyright {
  margin-top: 20px;
  font-size: 12px;
}

footer {
  background: var(--color-header-bg);
  padding: 20px 0;
}

@media all and (max-width: 568px) {
  footer .d-flex {
    flex-direction: column;
    align-items: normal;
  }
  footer menu {
    margin: 20px 0;
  }
  footer .socials {
    margin-top: 20px;
  }
  footer .small-menu li {
    display: block;
  }
  footer .small-menu li + li {
    margin-left: 0;
  }
}
.subscribe-block .title {
  font-size: 18px;
  font-weight: bold;
}

.subscribe-form {
  margin-top: 20px;
}
.subscribe-form form {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.subscribe-form .form-group {
  position: relative;
}
.subscribe-form .form-group .control-label {
  position: absolute;
  left: 18px;
  top: -9px;
  padding: 0 6px;
  background: var(--color-white);
  font-family: "Golos Text", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
  z-index: 1;
}
.subscribe-form .form-group .form-control {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: 1px solid var(--color-border-solid);
  border-radius: 50px;
  background: var(--color-white);
  font-family: "Golos Text", sans-serif;
  font-size: 15px;
  color: var(--color-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.subscribe-form .form-group .form-control::placeholder {
  color: var(--color-muted);
}
.subscribe-form .form-group .form-control:focus {
  outline: none;
  border-color: #069f7c;
  box-shadow: 0 0 0 3px rgba(6, 159, 124, 0.12);
}
.subscribe-form .form-group .help-block-error {
  display: none;
}
.subscribe-form .form-group.has-error .form-control {
  border-color: #e5484d;
}
.subscribe-form .form-group.has-error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(229, 72, 77, 0.12);
}
.subscribe-form .form-group.has-error .control-label {
  color: #e5484d;
}
.subscribe-form .form-group.has-error .help-block-error {
  display: block;
  margin-top: 6px;
  margin-left: 18px;
  font-family: "Golos Text", sans-serif;
  font-size: 12px;
  color: #e5484d;
}
.subscribe-form .btn {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 28px;
  border-radius: 50px;
  background: #069f7c;
  font-family: "Golos Text", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.15s ease;
}
.subscribe-form .btn:hover {
  filter: brightness(1.05);
}
.subscribe-form .btn:active {
  transform: scale(0.97);
}
@media all and (max-width: 568px) {
  .subscribe-form #subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }
  .subscribe-form .form-group {
    flex: 1 1 auto;
  }
  .subscribe-form .btn-buy {
    width: 100%;
  }
}

.catalog-menu-wrap {
  align-items: center;
  background: rgba(233, 236, 239, 0.96);
  display: none;
  flex-direction: column;
  height: 100vh;
  justify-content: flex-start;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  overflow-y: scroll;
  padding-bottom: 40px;
}
.catalog-menu-wrap menu {
  margin-left: 50px;
  list-style: none;
}
.catalog-menu-wrap menu li {
  float: left;
}
.catalog-menu-wrap menu li + li {
  margin-left: 10px;
}
.catalog-menu-wrap menu:after {
  content: " ";
  clear: both;
  display: block;
}
.catalog-menu-wrap .catalog-menu {
  padding: 0 20px;
  max-width: 90%;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.catalog-menu-wrap .catalog-menu .item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding-right: 5px;
}
.catalog-menu-wrap .catalog-menu .item .lit {
  font-weight: bold;
  font-size: 18px;
}
.catalog-menu-wrap .catalog-menu .item .list > a {
  font-weight: bold;
}
.catalog-menu-wrap .catalog-menu .item .sub-list {
  font-size: 12px;
  margin-bottom: 10px;
}
.catalog-menu-wrap .catalog-menu .item .sub-list a {
  margin-right: 10px;
}

.catalog-menu {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.catalog-menu .item {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding-right: 5px;
}
.catalog-menu .item .lit {
  font-weight: bold;
  font-size: 20px;
  color: #4384D0;
}
.catalog-menu .item .list > a {
  font-weight: 400;
  display: block;
}
.catalog-menu .item a {
  color: #27313C;
}
.catalog-menu .item .sub-list {
  font-size: 12px;
  margin-bottom: 10px;
}
.catalog-menu .item .sub-list a {
  display: block;
  color: #8E8989;
  margin-right: 10px;
}

.page-content .catalog-menu {
  margin-top: 25px;
}

body.open-menu {
  overflow: hidden;
}
body.open-menu .catalog-menu-wrap {
  display: block;
}

@media all and (max-width: 568px) {
  .catalog-menu-wrap .catalog-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-menu-wrap .catalog-menu .item .list a {
    display: inline-block;
  }
  .catalog-menu-wrap .catalog-menu .item .list a + a {
    margin-left: 0;
  }
  .catalog-menu-wrap .catalog-menu .item .sub-list a {
    display: inline-block;
  }
  .catalog-menu-wrap .catalog-menu .item .sub-list a + a {
    margin-left: 0;
  }
}
[data-theme=dark] .subscribe-form .form-group .control-label {
  background: var(--color-white);
}