@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Unbounded:wght@500;700&display=swap");

:root {
  --bg-main: #07101f;
  --bg-elevated: rgba(12, 24, 46, 0.86);
  --bg-surface: rgba(16, 33, 62, 0.76);
  --bg-surface-strong: rgba(14, 26, 50, 0.94);
  --bg-surface-soft: rgba(21, 42, 74, 0.72);
  --text-main: #f7fbff;
  --text-muted: #a9bdd9;
  --text-soft: #7f94b6;
  --border-soft: rgba(135, 198, 255, 0.16);
  --border-strong: rgba(111, 255, 213, 0.35);
  --emerald: #5ff1c2;
  --emerald-dark: #16b98a;
  --cyan: #67d6ff;
  --violet: #8f6dff;
  --pink: #ff58c9;
  --orange: #ffb454;
  --danger: #ff6e9f;
  --shadow-glow: 0 20px 60px rgba(3, 10, 24, 0.5);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --content-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 300px;
  width: 100%;
  max-width: 100%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(143, 109, 255, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(95, 241, 194, 0.18), transparent 28%),
    radial-gradient(circle at 50% 0%, rgba(255, 88, 201, 0.12), transparent 26%),
    linear-gradient(180deg, #0a1325 0%, #07101f 18%, #050b16 100%);
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
  opacity: 0.32;
}

body::before {
  top: 0;
  left: 0;
  transform: translate(-38%, -26%);
  background: radial-gradient(circle, rgba(143, 109, 255, 0.7) 0%, rgba(143, 109, 255, 0) 68%);
}

body::after {
  top: 10vh;
  right: 0;
  transform: translate(42%, 0);
  background: radial-gradient(circle, rgba(95, 241, 194, 0.55) 0%, rgba(95, 241, 194, 0) 70%);
}

body.scroll-locked {
  overflow: hidden;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

a:hover,
a:focus-visible {
  color: #9ce7ff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: #08101e;
  background: #ffffff;
  border-radius: 10px;
  z-index: 10000;
}

.search-screen-overlay,
.search-screen {
  display: none;
}

.search-screen-overlay.open {
  position: fixed;
  inset: 0;
  display: block;
  background: rgba(2, 8, 18, 0.74);
  backdrop-filter: blur(6px);
  z-index: 90;
}

.search-screen.open {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  display: block;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 18, 36, 0.98), rgba(12, 24, 46, 0.96));
  box-shadow: var(--shadow-soft);
  z-index: 91;
}

.search-screen .search-form {
  margin: 0;
}

.search-screen .search-field {
  width: 100%;
}

.site {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.site::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 12%),
    radial-gradient(circle at 50% 6%, rgba(95, 241, 194, 0.1), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.site-header,
.main-navigation,
.site-content,
.site-footer {
  position: relative;
  z-index: 1;
}

.fixed.main-navigation-inner,
.fixed.site-content,
.fixed.site-footer-inner,
.fixed.site-header-inner,
.main-navigation.fixed,
.site-footer.fixed,
.site-header.fixed {
  width: min(100%, var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  margin: 0;
  padding: 14px 0 12px;
  background:
    linear-gradient(180deg, rgba(6, 13, 24, 0.88), rgba(6, 13, 24, 0.72)),
    radial-gradient(circle at 50% 0%, rgba(255, 88, 201, 0.16), transparent 48%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.site-header-inner,
.main-navigation-inner,
.site-content,
.site-footer-inner {
  padding-left: 16px;
  padding-right: 16px;
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  min-height: 88px;
}

.site-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 56px;
}

.site-logotype {
  position: relative;
}

.site-logotype::after {
  content: "";
  position: absolute;
  inset: 10% -8%;
  background: radial-gradient(circle, rgba(95, 241, 194, 0.28), transparent 70%);
  filter: blur(16px);
  z-index: -1;
}

.site-logotype img {
  width: auto;
  max-width: min(56vw, 220px);
  max-height: 58px;
  object-fit: contain;
}

.header-html-1,
.header-html-2 {
  width: 100%;
}

.btn-box {
  margin: 0;
}

.btn-box a,
.btn-box span,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #04111c;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 10px 28px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(95, 241, 194, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    filter 0.24s ease,
    color 0.24s ease;
}

.btn:hover,
.btn:focus-visible,
.btn-box a:hover,
.btn-box a:focus-visible {
  transform: translateY(-2px);
  color: #04111c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 14px 32px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(143, 109, 255, 0.25);
}

.btn-accent-primary {
  background: linear-gradient(135deg, #86ffd7 0%, #49dcb0 52%, #17b889 100%);
}

.btn-accent-secondary {
  color: #f8fdff;
  background: linear-gradient(135deg, #ff67cc 0%, #cf55ff 48%, #7f70ff 100%);
}

.btn-accent-secondary:hover,
.btn-accent-secondary:focus-visible {
  color: #ffffff;
}

.humburger {
  position: absolute;
  top: 26px;
  left: 16px;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 5;
}

.humburger::before {
  content: "";
  position: absolute;
  inset: -16px;
}

.humburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #f5fbff;
  box-shadow: 0 0 18px rgba(95, 241, 194, 0.35);
  transition: transform 0.26s ease, opacity 0.26s ease;
}

.humburger span:first-child {
  top: 0;
}

.humburger span:nth-child(2) {
  top: 8px;
}

.humburger span:last-child {
  top: 16px;
}

.humburger.open span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.humburger.open span:nth-child(2) {
  opacity: 0;
}

.humburger.open span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.main-navigation {
  display: none;
  margin: 0 auto 18px;
  padding: 0;
}

.main-navigation.is-open {
  display: block;
}

.main-navigation-inner {
  padding-top: 0;
}

.main-navigation .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 14px;
  list-style: none;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(9, 18, 36, 0.96), rgba(12, 24, 46, 0.92));
  box-shadow: var(--shadow-soft);
}

.main-navigation .menu li {
  margin: 0;
}

.main-navigation .menu a,
.main-navigation .menu .removed-link {
  display: block;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.main-navigation .menu a:hover,
.main-navigation .menu a:focus-visible {
  color: #06111f;
  background: linear-gradient(135deg, rgba(134, 255, 215, 0.96), rgba(103, 214, 255, 0.9));
  border-color: rgba(255, 255, 255, 0.2);
}

.main-navigation .menu .removed-link {
  color: #07101f;
  background: linear-gradient(135deg, rgba(95, 241, 194, 0.96), rgba(103, 214, 255, 0.92));
  border-color: rgba(255, 255, 255, 0.18);
}

.mobile-menu-placeholder {
  transition: margin-top 0.24s ease;
}

.mobile-menu-placeholder.open {
  margin-top: 8px;
}

.site-content {
  padding-top: 4px;
  padding-bottom: 42px;
}

.site-content-inner,
.content-area,
.site-main {
  min-width: 0;
}

.article-post {
  position: relative;
  margin-bottom: 18px;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid var(--border-soft);
  border-radius: clamp(22px, 5vw, 34px);
  background:
    linear-gradient(180deg, rgba(12, 22, 42, 0.92) 0%, rgba(8, 16, 30, 0.98) 100%);
  box-shadow: var(--shadow-glow);
  overflow: visible;
}

.article-post::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 240px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 88, 201, 0.26), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(95, 241, 194, 0.18), transparent 28%);
  pointer-events: none;
}

.entry-title,
.article-post > h1[itemprop="headline"],
.entry-content h1,
.entry-content h2,
.entry-content h3,
.h1 {
  position: relative;
  margin: 0;
  font-family: "Unbounded", "Montserrat", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.16;
  color: #ffffff;
}

.entry-title,
.article-post > h1[itemprop="headline"] {
  display: block;
  width: 100%;
  max-inline-size: 100%;
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(0.98rem, 4.34vw, 2.59rem);
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.entry-title::after,
.article-post > h1[itemprop="headline"]::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald), var(--cyan), var(--pink));
  box-shadow: 0 0 18px rgba(95, 241, 194, 0.42);
}

.entry-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  color: var(--text-muted);
}

.entry-content > p:first-child {
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  color: #eaf5ff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: clamp(0.98rem, 3.6vw, 1.08rem);
}

.entry-content > p:nth-of-type(2) {
  margin: 0 0 22px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 88, 201, 0.18), rgba(95, 241, 194, 0.06)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 18px 36px rgba(3, 11, 24, 0.42);
}

.entry-content img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.entry-content p,
.entry-content li,
.entry-content td,
.entry-content th,
.entry-content blockquote {
  color: var(--text-muted);
}

.entry-content p {
  margin: 0 0 1.1em;
}

.entry-content strong {
  color: #ffffff;
}

.entry-content code {
  padding: 0.18rem 0.38rem;
  border-radius: 8px;
  color: #fff4d8;
  background: rgba(255, 180, 84, 0.16);
}

.entry-content a:not(.btn) {
  color: #8fe1ff;
  text-decoration: underline;
  text-decoration-color: rgba(143, 225, 255, 0.4);
  text-underline-offset: 0.18em;
}

.entry-content a:not(.btn):hover,
.entry-content a:not(.btn):focus-visible {
  color: #d2f2ff;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  margin-top: 1.6em;
  margin-bottom: 0.72em;
}

.entry-content h1 {
  font-size: clamp(1.65rem, 6vw, 2.6rem);
}

.entry-content h2 {
  padding-top: 18px;
  font-size: clamp(1.35rem, 5vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.entry-content h3 {
  font-size: clamp(1.08rem, 4.2vw, 1.35rem);
  color: #f6fbff;
}

.entry-content [id] {
  scroll-margin-top: 110px;
}

.entry-content ul:not([class]),
.entry-content ol:not([class]) {
  margin: 0 0 1.6em;
  padding: 0;
  list-style: none;
}

.entry-content ul:not([class]) li,
.entry-content ol:not([class]) li {
  position: relative;
  margin: 0.78em 0;
  padding-left: 1.7rem;
}

.entry-content ul:not([class]) li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 0 18px rgba(95, 241, 194, 0.35);
}

.entry-content ol:not([class]) {
  counter-reset: section;
}

.entry-content ol:not([class]) li::before {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--emerald);
}

.entry-content blockquote {
  margin: 1.5em 0;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--emerald);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.entry-content blockquote.warning {
  background: linear-gradient(135deg, rgba(255, 180, 84, 0.14), rgba(255, 110, 159, 0.12));
  border-left-color: var(--orange);
}

#toc_container {
  margin: 0 0 24px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 20, 39, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#toc_container > p,
#toc_container .toc_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  font-family: "Unbounded", "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
}

#toc_container > p::after,
#toc_container .toc_title::after {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(239, 248, 255, 0.88);
  border-bottom: 2px solid rgba(239, 248, 255, 0.88);
  transform: rotate(45deg);
  transition: transform 0.24s ease;
}

#toc_container > p:focus-visible,
#toc_container .toc_title:focus-visible {
  outline: 2px solid rgba(103, 214, 255, 0.75);
  outline-offset: 6px;
  border-radius: 8px;
}

#toc_container > ul,
#toc_container .toc_list {
  display: none;
  margin-top: 12px;
}

#toc_container.is-expanded > ul,
#toc_container.is-expanded > .toc_list,
#toc_container ul ul,
#toc_container .toc_list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#toc_container.is-expanded > p::after,
#toc_container.is-expanded .toc_title::after {
  transform: rotate(225deg);
}

#toc_container ul ul,
#toc_container .toc_list ul {
  margin-top: 10px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

#toc_container li::before {
  display: none;
}

#toc_container a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: #eff8ff;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
  line-height: 1.45;
}

#toc_container a:hover,
#toc_container a:focus-visible {
  color: #04111c;
  background: linear-gradient(135deg, rgba(95, 241, 194, 0.96), rgba(103, 214, 255, 0.9));
}

.entry-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.4em 0 1.8em;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(7, 15, 29, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.entry-content thead,
.entry-content tbody {
  width: 100%;
}

.entry-content tr {
  background: transparent;
}

.entry-content th,
.entry-content td {
  min-width: 128px;
  padding: 14px 14px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  white-space: normal;
}

.entry-content th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #04111c;
  background: linear-gradient(135deg, #7dffd7 0%, #59d0ff 100%);
  font-weight: 800;
}

.entry-content td {
  color: #e5effd;
  background: rgba(255, 255, 255, 0.02);
}

.entry-content tbody tr:nth-child(2n) td {
  background: rgba(255, 255, 255, 0.04);
}

.entry-content tbody tr:hover td {
  background: rgba(143, 109, 255, 0.16);
}

.expert-review {
  margin: 1.6em 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.expert-review-pluses-minuses {
  display: grid;
  gap: 18px;
  padding: 0;
}

.expert-review-pluses,
.expert-review-minuses {
  min-width: 0;
}

.expert-review-plus,
.expert-review-minus {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 46px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #eef7ff;
}

.expert-review-plus + .expert-review-plus,
.expert-review-minus + .expert-review-minus {
  margin-top: 10px;
}

.expert-review-plus::before,
.expert-review-minus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
}

.expert-review-plus::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 23%, transparent 26%),
    linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 0 20px rgba(95, 241, 194, 0.32);
}

.expert-review-minus::before {
  background:
    linear-gradient(90deg, transparent 0 22%, #fff 22% 78%, transparent 78% 100%),
    linear-gradient(135deg, #ff7b8e, #ff58c9);
  box-shadow: 0 0 18px rgba(255, 88, 201, 0.28);
}

.expert-review-faq {
  margin: 1.8em 0 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 20, 39, 0.94), rgba(12, 24, 46, 0.9));
}

.expert-review-faq__header {
  margin-bottom: 12px;
  font-family: "Unbounded", "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

.expert-review-faq-item {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.expert-review-faq-item + .expert-review-faq-item {
  margin-top: 10px;
}

.expert-review-faq-item::before,
.expert-review-faq-item::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 18px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--emerald);
  transition: transform 0.24s ease;
}

.expert-review-faq-item::after {
  transform: rotate(90deg);
}

.expert-review-faq-item.expand::after {
  transform: rotate(0deg);
}

.expert-review-faq-item__question {
  padding: 17px 52px 17px 18px;
  color: #f4fbff;
  font-weight: 700;
  cursor: pointer;
}

.expert-review-faq-item__answer {
  padding: 0 18px 18px;
  color: var(--text-muted);
}

.article-author {
  width: min(100%, 920px);
  margin: 32px auto 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 110, 159, 0.92) 0, rgba(255, 110, 159, 0.92) 4px, transparent 4px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(10, 19, 36, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.article-author__inner {
  display: grid;
  gap: 16px;
}

.article-author__avatar {
  display: flex;
  justify-content: center;
}

.article-author__avatar img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.article-author__body,
.article-author__intro,
.article-author__dates,
.article-author__socials {
  min-width: 0;
}

.article-author__body {
  display: grid;
  gap: 14px;
}

.article-author__header {
  display: grid;
  gap: 14px;
}

.article-author__name {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.18;
}

.article-author__role {
  margin: 6px 0 0;
  color: #dbe7f8;
  font-size: 0.96rem;
  line-height: 1.5;
}

.article-author__dates {
  display: grid;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-author__dates span {
  display: block;
}

.article-author__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-author__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #ffd27c;
  background: rgba(255, 255, 255, 0.03);
}

.article-author__socials a:hover,
.article-author__socials a:focus-visible {
  color: #08101e;
  background: linear-gradient(135deg, rgba(255, 180, 84, 0.96), rgba(255, 214, 126, 0.92));
  border-color: rgba(255, 255, 255, 0.16);
}

.article-author__socials svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.site-footer-container {
  padding-bottom: 24px;
}

.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(9, 17, 31, 0.94), rgba(6, 12, 23, 0.98));
}

.site-footer-inner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-bottom,
.footer-info {
  color: var(--text-soft);
  text-align: center;
  font-size: 0.92rem;
}

.scrolltop {
  position: fixed;
  right: 14px;
  bottom: 16px;
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(95, 241, 194, 0.94), rgba(103, 214, 255, 0.9));
  color: #04111c;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  z-index: 60;
}

.scrolltop::before {
  content: "\2191";
  font-size: 1.5rem;
  font-weight: 800;
}

.scrolltop:hover,
.scrolltop:focus-visible {
  transform: translateY(-2px);
}

::selection {
  color: #04111c;
  background: var(--emerald);
}

@media (min-width: 480px) {
  .entry-title {
    width: 100%;
    max-width: none;
    max-inline-size: none;
    font-size: clamp(0.99rem, 3.22vw, 1.72rem);
  }

  .article-author {
    padding: 20px 22px;
  }

  .article-author__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
  }

  .article-author__avatar img {
    width: 88px;
    height: 88px;
  }

  .site-header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .site-branding {
    justify-content: center;
    padding: 0 56px 0 64px;
  }

  .header-html-1,
  .header-html-2 {
    width: auto;
  }

  .btn-box a,
  .btn-box span,
  .btn {
    min-width: 150px;
    width: auto;
    padding-inline: 20px;
  }
}

@media (max-width: 479px) {
  .entry-title {
    font-family: "Montserrat", Arial, sans-serif;
    width: 100%;
    max-width: none;
    max-inline-size: none;
    font-size: clamp(0.83rem, 3.29vw, 1.2rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
  }
}

@media (min-width: 320px) {
  .article-author {
    padding: 16px;
  }

  .article-author__name {
    font-size: 1.2rem;
  }

  .article-author__role {
    font-size: 0.92rem;
  }
}

@media (min-width: 360px) {
  .article-author {
    padding: 18px;
  }

  .article-author__avatar img {
    width: 86px;
    height: 86px;
  }
}

@media (min-width: 390px) {
  .article-author__socials {
    gap: 12px;
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-header-inner,
  .main-navigation-inner,
  .site-content,
  .site-footer-inner {
    padding-left: 26px;
    padding-right: 26px;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
  }

  .humburger {
    position: relative;
    top: auto;
    left: auto;
  }

  .site-branding {
    justify-content: flex-start;
    padding: 0;
  }

  .site-logotype img {
    max-width: 240px;
    max-height: 64px;
  }

  .article-post {
    padding: 32px;
  }

  .entry-title {
    max-width: none;
    max-inline-size: none;
  }

  .entry-content > p:first-child {
    padding: 20px 24px;
  }

  .article-author {
    margin-top: 38px;
    padding: 24px 26px;
  }

  .article-author__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
  }

  .article-author__dates {
    text-align: right;
  }

  .entry-content table {
    display: table;
    overflow: visible;
  }

  .entry-content th,
  .entry-content td {
    min-width: 0;
    padding: 16px;
    white-space: normal;
  }

  .expert-review-pluses-minuses {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .humburger {
    display: none;
  }

  .site-header-inner,
  .main-navigation-inner,
  .site-content,
  .site-footer-inner {
    padding-left: 34px;
    padding-right: 34px;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto auto;
    min-height: 94px;
  }

  .main-navigation {
    display: block;
    margin-bottom: 24px;
  }

  .main-navigation .menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .main-navigation .menu li {
    flex: 0 0 auto;
  }

  .main-navigation .menu a,
  .main-navigation .menu .removed-link {
    white-space: nowrap;
  }

  .site-content {
    padding-bottom: 56px;
  }

  .article-author {
    padding: 26px 30px;
  }

  .article-author__avatar img {
    width: 94px;
    height: 94px;
  }

  .article-author__name {
    font-size: 1.45rem;
  }

  .article-author__role {
    font-size: 1rem;
  }

  .article-post {
    padding: 40px;
  }

  .entry-title {
    font-size: clamp(1.68rem, 2.8vw, 2.8rem);
  }
}

@media (min-width: 1280px) {
  .site-header-inner,
  .main-navigation-inner,
  .site-content,
  .site-footer-inner {
    padding-left: 42px;
    padding-right: 42px;
  }

  .article-post {
    padding: 46px;
  }

  .article-author {
    max-width: 900px;
    padding: 28px 32px;
  }
}

@media (min-width: 1440px) {
  .article-author {
    max-width: 940px;
  }
}
