/* === НОВОСТИ — design tokens from mockups === */
:root {
  --red: #b62225;
  --red-hover: #9a1c1f;
  --red-soft: #c62828;
  --navy: #031629;
  --navy-2: #051c2e;
  --text: #111111;
  --text-2: #333333;
  --muted: #8a8a8a;
  --muted-2: #a3a3a3;
  --line: #e8e8e8;
  --line-2: #eeeeee;
  --bg: #ffffff;
  --bg-soft: #f7f7f7;
  --bg-page: #fafafa;
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1180px;
  --gap: 24px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--red);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ========== TOPBAR ========== */
.topbar {
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  color: var(--muted);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
}

.topbar__date {
  letter-spacing: 0.01em;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__links {
  display: flex;
  gap: 16px;
}

.topbar__links a {
  color: var(--muted);
}

.topbar__links a:hover {
  color: var(--red);
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social a {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: #4a4a4a;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--red);
}

.social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social--light a {
  color: rgba(255, 255, 255, 0.85);
}

.social--light a:hover {
  color: #fff;
}

.social--lg a {
  width: 28px;
  height: 28px;
}

.social--lg svg {
  width: 22px;
  height: 22px;
}

/* ========== HEADER ========== */
.header {
  background: #fff;
  padding: 22px 0 20px;
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text);
}

.logo:hover {
  color: var(--text);
}

.logo__img,
.logo .custom-logo {
  display: block;
  max-height: 56px;
  width: auto;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.logo--footer .logo__img,
.logo--footer .custom-logo {
  max-height: 48px;
  max-width: 180px;
}

.logo--footer .logo__tag {
  display: none;
}

.footer .logo {
  margin-bottom: 10px;
}

.logo__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.logo__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.site-search {
  position: relative;
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.site-search input {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.site-search input::placeholder {
  color: #b0b0b0;
}

.site-search input:focus {
  border-color: #c5c5c5;
}

.site-search__btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #9a9a9a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-search__btn:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-hover);
  color: #fff;
}

.btn--ghost {
  background: #fff;
  color: var(--text-2);
  border: 1px solid #d8d8d8;
}

.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn--block {
  width: 100%;
}

.btn--white {
  background: #fff;
  color: var(--red);
  width: 100%;
}

.btn--white:hover {
  background: #f5f5f5;
  color: var(--red);
}

/* ========== NAV ========== */
.nav {
  background: var(--navy);
}

.nav__inner {
  display: flex;
  align-items: stretch;
  min-height: 48px;
  gap: 2px;
}

.nav__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  color: #fff;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__burger:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav.is-panel-open .nav__burger {
  background: rgba(255, 255, 255, 0.1);
}

.nav__burger-close[hidden],
.nav__burger-icon[hidden] {
  display: none;
}

.nav__list {
  display: flex;
  flex: 1;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav__list::-webkit-scrollbar {
  display: none;
}

.nav__list a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav__list a.is-active {
  background: var(--red);
  color: #fff;
}

.nav-panel {
  display: none;
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 32px rgba(3, 22, 41, 0.28);
}

.nav.is-panel-open .nav-panel,
.nav-panel:not([hidden]) {
  display: block;
}

.nav-panel[hidden] {
  display: none !important;
}

.nav-panel__inner {
  padding: 22px 0 26px;
}

.nav-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.nav-panel__title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.nav-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.nav-panel__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.nav-panel__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav-panel__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-panel__link.is-active {
  background: var(--red);
  color: #fff;
}

.nav-panel__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-panel__quick a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

body.nav-panel-open {
  overflow: hidden;
}

/* ========== SECTION TITLES ========== */
.section-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.section-head__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  flex-shrink: 0;
  padding-bottom: 8px;
}

.section-head__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-head__line {
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-bottom: 4px;
}

.section-head__link {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2px;
}

.section-head__link:hover {
  color: var(--red);
}

.widget-title {
  position: relative;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
  padding-bottom: 8px;
}

.widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* ========== META ========== */
.meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 12px;
  color: var(--muted);
}

.meta__dot::before {
  content: "•";
  margin-right: 8px;
  color: #c0c0c0;
}

.meta__comments {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta__comments svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.2;
}

.cat--badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* ========== PAGE ========== */
main.page {
  padding: 28px 0 56px;
  background: var(--bg);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.layout > .main {
  min-width: 0;
}

.layout--article {
  grid-template-columns: minmax(0, 1fr) 300px;
}

/* ========== HERO ========== */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.hero-feature {
  position: relative;
  display: block;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: #0a1520;
}

.hero-feature:hover {
  color: #fff;
}

.hero-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero-feature__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 28px 24px;
  z-index: 1;
}

.hero-feature__content .cat--badge {
  margin-bottom: 12px;
}

.hero-feature__title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 34ch;
}

.hero-feature__lead {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.hero-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  min-height: 128px;
  transition: background 0.15s ease;
}

.hero-card:hover {
  background: #f0f0f0;
  color: inherit;
}

.hero-card__img {
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
}

.hero-card__img img {
  width: 100%;
  height: 100%;
  min-height: 104px;
  object-fit: cover;
}

.hero-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding-right: 4px;
}

.hero-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  color: var(--text);
}

.hero-card:hover .hero-card__title {
  color: var(--red);
}

/* ========== NEWS GRID ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
}

.news-card:hover {
  color: inherit;
}

.news-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eaeaea;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__img img {
  transform: scale(1.03);
}

.news-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  color: var(--text);
}

.news-card:hover .news-card__title {
  color: var(--red);
}

.news-card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ========== OPINIONS ========== */
.opinions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.opinion-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
}

.opinion-card:hover {
  color: inherit;
}

.opinion-card__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eaeaea;
}

.opinion-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opinion-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.opinion-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #ddd;
}

.opinion-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.opinion-card__role {
  font-size: 12px;
  color: var(--muted);
}

.opinion-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.opinion-card:hover .opinion-card__title {
  color: var(--red);
}

.opinion-card__excerpt {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ========== SIDEBAR ========== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.feed-list {
  display: flex;
  flex-direction: column;
}

.feed-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-2);
}

.feed-item:first-child {
  padding-top: 0;
}

.feed-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.feed-item__time {
  font-size: 12px;
  color: var(--muted);
  padding-top: 2px;
}

.feed-item__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.feed-item:hover .feed-item__title {
  color: var(--red);
}

.widget .btn {
  margin-top: 16px;
  width: 100%;
  height: 40px;
}

.subscribe {
  background: var(--red);
  border: 0;
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 18px;
}

.subscribe__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.subscribe__icon svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.subscribe__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.subscribe__text {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.subscribe__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe__form input {
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  outline: none;
}

.subscribe__form input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.subscribe__status {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.subscribe__status.is-error {
  color: #ffe0e0;
}

.subscribe__status.is-success {
  color: #e8ffe8;
}

.nv-recaptcha {
  margin: 2px 0 4px;
}

.nv-recaptcha--v2 .g-recaptcha {
  transform-origin: left top;
}

.nv-recaptcha__note {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.nv-recaptcha__note a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popular-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.popular-item__num {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popular-item__title {
  margin: 0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  color: var(--text);
}

.popular-item:hover .popular-item__title {
  color: var(--red);
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.related-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}

.related-item__img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #eaeaea;
}

.related-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.related-item__title {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.related-item:hover .related-item__title {
  color: var(--red);
}

/* ========== ARTICLE ========== */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}

.breadcrumbs a {
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs__sep {
  color: #c8c8c8;
}

.article-header {
  margin-bottom: 22px;
}

.article-header .cat {
  margin-bottom: 12px;
}

.article-header h1 {
  margin: 0 0 14px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.article-header__lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-2);
  max-width: 48rem;
}

.article-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share__label {
  font-size: 12px;
  color: var(--muted);
}

.share__btns {
  display: flex;
  gap: 6px;
}

.share__btns a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.share__btns a:hover {
  filter: brightness(1.08);
  color: #fff;
}

.share__btns svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.share__vk {
  background: #4c75a3;
}
.share__tg {
  background: #2aabee;
}
.share__tw {
  background: #1da1f2;
}
.share__link {
  background: #8a8a8a;
}

.article-cover {
  margin: 22px 0 10px;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-cover__cap {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.article-body {
  font-size: 17px;
  line-height: 1.7;
  color: #222;
  max-width: 44rem;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body h2 {
  margin: 28px 0 14px;
  font-size: 22px;
  font-weight: 800;
}

.pullquote {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  margin: 28px 0;
  padding: 20px 22px;
  background: var(--bg-soft);
  border-radius: var(--radius);
}

.pullquote__mark {
  font-size: 56px;
  line-height: 0.8;
  color: var(--red);
  font-weight: 800;
  font-family: Georgia, serif;
}

.pullquote__text {
  margin: 0 0 10px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}

.pullquote__author {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  font-style: normal;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 16px;
  line-height: 1.45;
}

.check-list__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-list__icon svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 32px;
}

.tags a {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: #555;
  font-size: 13px;
}

.tags a:hover {
  background: #eee;
  color: var(--red);
}

.author-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  margin-bottom: 36px;
}

.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box__name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 800;
}

.author-box__role {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--muted);
}

.author-box__bio {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.comments {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  margin-top: 8px;
}

.comments__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
}

.comments__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.comments__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(182, 34, 37, 0.1);
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.comments__compose {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  padding: 20px 22px 18px;
  margin-bottom: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.comments__form-wrap {
  margin: 0;
}

.comments__form-wrap .comment-reply-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
}

.comments__logged {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
}

.comments__logged a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.comments__logged a:hover {
  border-bottom-color: currentColor;
}

.comments__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.comments__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comments__field input,
.comments__field--body textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dde5;
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}

.comments__field--body textarea {
  min-height: 110px;
  line-height: 1.5;
}

.comments__field input:focus,
.comments__field--body textarea:focus {
  border-color: rgba(182, 34, 37, 0.45);
  box-shadow: 0 0 0 3px rgba(182, 34, 37, 0.12);
}

.comments__form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.comments__submit {
  min-width: 160px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  padding: 0 28px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(182, 34, 37, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.comments__submit:hover {
  background: #9e1d20;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(182, 34, 37, 0.28);
}

.comments__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.comments__admin-link {
  margin-left: 6px;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.comments__admin-link:hover {
  text-decoration: underline;
}

.comments__empty {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border: 1px dashed #d5dae2;
  border-radius: 14px;
  background: #fafbfc;
  color: var(--muted);
}

.comments__empty-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(3, 22, 41, 0.06);
  color: var(--navy);
  flex-shrink: 0;
}

.comments__empty p {
  margin: 0;
  font-size: 14px;
}

.comments__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comments__list .children {
  margin: 14px 0 0 28px;
  padding: 0 0 0 18px;
  list-style: none;
  border-left: 2px solid #e8ebf0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment-card {
  margin: 0;
}

.comment-card__inner {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(3, 22, 41, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.comment-card__inner:hover {
  border-color: #dce1e8;
  box-shadow: 0 4px 14px rgba(3, 22, 41, 0.06);
}

.comment-card__avatar img,
.comment-card__avatar .avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: #eef1f5;
}

.comment-card__body {
  min-width: 0;
}

.comment-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 8px;
}

.comment-card__author {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.comment-card__author:hover {
  color: var(--red);
}

.comment-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

.comment-card__meta a {
  color: inherit;
  text-decoration: none;
}

.comment-card__meta a:hover {
  color: var(--red);
}

.comment-card__edit a {
  color: var(--red) !important;
  font-weight: 600;
}

.comment-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #2a2a2a;
}

.comment-card__text p {
  margin: 0 0 0.6em;
}

.comment-card__text p:last-child {
  margin-bottom: 0;
}

.comment-card__await {
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(182, 34, 37, 0.08);
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
}

.comment-card__actions {
  margin-top: 10px;
}

.comment-card__reply a,
.comment-reply-link {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  background: #f3f5f8;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.comment-card__reply a:hover,
.comment-reply-link:hover {
  background: rgba(182, 34, 37, 0.1);
  color: var(--red);
}

@media (max-width: 640px) {
  .comments__compose {
    padding: 16px;
  }

  .comments__fields {
    grid-template-columns: 1fr;
  }

  .comments__submit {
    width: 100%;
  }

  .comments__list .children {
    margin-left: 12px;
    padding-left: 12px;
  }

  .comment-card__inner {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .comment-card__avatar img,
  .comment-card__avatar .avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

/* ========== SEARCH ========== */
.search-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.search-head h1 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 800;
}

.search-head__info {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.search-head__info strong {
  color: var(--red);
  font-weight: 700;
}

.sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.sort select {
  height: 38px;
  padding: 0 36px 0 14px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  appearance: none;
  color: var(--text);
  cursor: pointer;
}

.result-list {
  display: flex;
  flex-direction: column;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 0 12px;
  max-width: 520px;
}

.empty-state__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(182, 34, 37, 0.1);
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.empty-state__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.empty-state__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.empty-state__search {
  max-width: 420px;
  width: 100%;
  margin: 4px 0 2px;
}

.empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.result-item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.result-item:first-child {
  padding-top: 0;
}

.result-item:hover {
  color: inherit;
}

.result-item__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eaeaea;
}

.result-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.result-item__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.result-item:hover .result-item__title {
  color: var(--red);
}

.result-item__excerpt {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.result-item__meta {
  margin-top: auto;
  padding-top: 4px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
}

.pagination a,
.pagination span,
.pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid transparent;
  text-decoration: none;
}

.pagination a:hover,
.pagination .page-numbers:hover {
  border-color: #ddd;
  color: var(--red);
}

.pagination .is-active,
.pagination .page-numbers.current {
  background: var(--red);
  color: #fff;
}

.pagination__arrow {
  color: var(--muted);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 40px;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 0.9fr 0.9fr;
  gap: 40px;
}

.footer .logo__title {
  color: #fff;
  font-size: 26px;
}

.footer .logo__tag {
  display: none;
}

.footer__about {
  margin: 12px 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28ch;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__col-title {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.footer__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer a:hover {
  color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .layout,
  .layout--article {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .header__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-search {
    max-width: none;
    justify-self: stretch;
  }

  .btn--header {
    width: 100%;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .opinions-grid {
    grid-template-columns: 1fr;
  }

  .result-item {
    grid-template-columns: 1fr;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .article-header h1 {
    font-size: 28px;
  }

  .comments__form {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nav__list a {
    padding: 0 10px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .topbar__links {
    display: none;
  }

  .hero-feature {
    min-height: 360px;
  }

  .hero-feature__title {
    font-size: 22px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .logo__title {
    font-size: 28px;
  }

  .page {
    padding: 18px 0 40px;
  }

  .search-head h1 {
    font-size: 26px;
  }

  .pagination a,
  .pagination span {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav__list {
    mask-image: linear-gradient(90deg, #000 85%, transparent);
  }
}

@media (max-width: 560px) {
  .nav-panel__grid {
    grid-template-columns: 1fr;
  }

  .nav-panel__inner {
    padding: 18px 0 22px;
  }
}

@media (max-width: 900px) {
  .hero-feature {
    min-height: 380px;
  }

  .hero-feature__content {
    padding: 20px;
  }

  .hero-feature__title {
    font-size: 22px;
  }

  .hero-card {
    grid-template-columns: 96px 1fr;
  }

  .result-item {
    gap: 14px;
  }

  .author-box {
    grid-template-columns: 56px 1fr;
  }

  .pullquote {
    grid-template-columns: 28px 1fr;
    padding: 16px;
  }

  .share {
    width: 100%;
    justify-content: space-between;
  }
}

/* ========== PWA ========== */
.pwa-promo {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 -8px 28px rgba(3, 22, 41, 0.28);
}

.pwa-promo__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.pwa-promo__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.pwa-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.pwa-promo__copy strong {
  font-size: 14px;
  font-weight: 800;
}

.pwa-promo__copy span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.pwa-promo__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.pwa-promo__actions .btn {
  height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.pwa-promo__dismiss {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.pwa-promo__dismiss:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pwa-page__cta {
  margin: 0 0 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.pwa-page__device {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}

.pwa-page__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
}

.pwa-page__hint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.pwa-guide__benefits {
  margin: 16px 0 0;
  padding-left: 18px;
}

.pwa-guide__benefits li {
  margin: 0 0 8px;
}

.pwa-step {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pwa-step h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.pwa-step ol {
  margin: 12px 0;
  padding-left: 20px;
}

.pwa-step li {
  margin: 0 0 8px;
  line-height: 1.45;
}

.pwa-step__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.pwa-page.is-device-ios .pwa-step--ios,
.pwa-page.is-device-android .pwa-step--android {
  border-color: rgba(182, 34, 37, 0.35);
  box-shadow: 0 0 0 3px rgba(182, 34, 37, 0.08);
}

.pwa-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pwa-faq__grid article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.pwa-faq__grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.pwa-faq__grid p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .pwa-promo__inner {
    flex-wrap: wrap;
  }

  .pwa-promo__actions {
    width: 100%;
  }

  .pwa-faq__grid {
    grid-template-columns: 1fr;
  }
}

/* —— Advertising page —— */
.ads-page {
  padding-bottom: 48px;
}

.ads-page__head {
  margin-bottom: 36px;
}

.ads-page__cta-row {
  margin: 22px 0 0;
}

.ads-stats {
  margin: 0 0 48px;
}

.ads-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.ads-stat {
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ads-stat__value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.ads-stat__label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.ads-stat__note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.ads-page__disclaimer {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.ads-formats {
  margin: 0 0 48px;
}

.ads-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.ads-format {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.ads-format h3 {
  margin: 14px 0 4px;
  font-size: 18px;
}

.ads-format p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #555;
}

.ads-format__size {
  margin: 0 0 10px !important;
  font-size: 13px !important;
  font-weight: 700;
  color: var(--red) !important;
}

.ads-format__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2a45 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ads-format__preview--970 {
  min-height: 56px;
}

.ads-format__preview--728 {
  min-height: 48px;
  background: linear-gradient(135deg, #051c2e 0%, var(--red) 160%);
}

.ads-format__preview--300 {
  min-height: 120px;
  max-width: 180px;
}

.ads-format__preview--160 {
  min-height: 160px;
  max-width: 72px;
}

.ads-format__preview--320 {
  min-height: 48px;
  max-width: 220px;
}

.ads-format__preview--native {
  background: linear-gradient(135deg, var(--red) 0%, #7a1518 100%);
}

.ads-contact {
  margin: 8px 0 0;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.ads-contact__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.ads-contact h2 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #fff;
}

.ads-contact p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.ads-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ads-contact__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.ads-contact__hint {
  margin: 0 !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.55) !important;
}

@media (max-width: 980px) {
  .ads-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ads-formats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ads-contact__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ads-stats__grid,
  .ads-formats__grid {
    grid-template-columns: 1fr;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nv-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.alignwide,
.alignfull {
  max-width: 100%;
}

.wp-block-image img {
  border-radius: var(--radius);
}
