﻿:root {
  --green-900: #22392d;
  --green-700: #42684f;
  --green-500: #739475;

  --sand-100: #ffffff;
  --sand-200: #ffffff;
  --sand-300: #e8dcc8;

  --caramel: #d49b4e;
  --caramel-soft: #f3eadc;
  --caramel-deep: #b8752f;

  --white: #ffffff;
  --text: #22392d;
  --muted: #6f6c63;
  --border: #d2b27a;

  --red: #42684f;
  --shadow: 0 18px 44px rgba(118, 62, 18, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: rgba(251, 246, 236, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--green-900);
}

.site-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.site-nav a {
  font-size: 15px;
  color: var(--green-900);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--green-700);
}

.hero-section {
  padding: 56px 0 34px;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(59, 155, 109, 0.16),
      transparent 28%
    ),
    linear-gradient(180deg, var(--sand-100), #fff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin: 0 0 22px;
  color: var(--green-900);
}

.hero-copy p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  font-size: 15px;
}

.btn-primary {
  background: var(--green-700);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--green-900);
  border: 1px solid var(--border);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-200);
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-content {
  padding: 24px;
}

.hero-card-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}

.hero-card-content h2 a:hover {
  color: var(--green-700);
}

.hero-card-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.post-meta {
  color: var(--green-700);
  font-size: 14px;
  font-weight: 700;
}

.section-block {
  padding: 56px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 8px 0 0;
  color: var(--green-900);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(118, 62, 18, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card-image {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--sand-200);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.04);
}

.post-card-body {
  padding: 18px;
}

.post-category {
  display: inline-flex;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.post-card h3 {
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}

.post-card h3 a:hover {
  color: var(--green-700);
}

.post-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  margin: 12px 0 0;
}

.mission-section {
  padding: 24px 0 64px;
}

.mission-card {
  background: var(--green-700);
  color: white;
  border-radius: 32px;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.mission-card .eyebrow {
  color: #9ee2bd;
}

.mission-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.site-footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 30px 0;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-grid,
  .mission-card {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .post-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 34px;
  }

  .mission-card {
    padding: 24px;
    border-radius: 24px;
  }
}
.single-main {
  padding: 0;
}

.single-article {
  padding: 42px 0 64px;
}

.single-container {
  max-width: 1180px;
}

.single-breadcrumbs {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.single-breadcrumbs a {
  color: var(--green-700);
  font-weight: 700;
}

.single-header {
  /* max-width: 920px; */
  margin-bottom: 28px;
}

.single-category {
  display: inline-flex;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.single-header h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.single-meta {
  margin-top: 18px;
  color: var(--green-700);
  font-size: 15px;
  font-weight: 800;
}

.single-featured-image {
  margin: 0 0 36px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--sand-200);
}

.single-featured-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.single-content {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
}

.single-content p {
  font-size: 19px;
  line-height: 1.78;
  color: #27352e;
  margin: 0 0 24px;
}

.single-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-content .btn,
.single-content .telegram-cta a {
  text-decoration: none;
}

.single-content .btn-primary {
  color: white;
}

.single-content .btn-secondary {
  color: var(--green-900);
}

.single-content img {
  border-radius: 18px;
  margin: 24px 0;
}

.single-content h2,
.single-content h3 {
  color: var(--green-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 34px;
}

.telegram-cta {
  margin: 38px 0;
  padding: 24px;
  border-radius: 22px;
  background: var(--green-700);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.telegram-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2aabee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.telegram-cta strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.telegram-cta p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.telegram-cta a {
  background: white;
  color: var(--green-900);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.single-aside {
  position: sticky;
  top: 100px;
}

.aside-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 18px;
}

.aside-card h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.aside-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-card li {
  border-top: 1px solid var(--border);
  padding: 11px 0;
}

.aside-card li:first-child {
  border-top: 0;
}

.aside-card a {
  font-weight: 700;
  color: var(--text);
}

.aside-card a:hover {
  color: var(--green-700);
}

.aside-posts span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.single-comments {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.comments-area {
  display: grid;
  gap: 28px;
}

.comment-reply-title,
.comments-title {
  margin: 0 0 18px;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.comment-list,
.comment-list .children {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-list {
  display: grid;
  gap: 22px;
}

.comment-list .children {
  margin: 18px 0 0 64px;
  padding-left: 18px;
  border-left: 2px solid var(--border);
}

.comment-body {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.comment-avatar img {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sand-200);
}

.comment-content-wrap {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffdf9;
}

.comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.comment-author {
  color: var(--green-900);
  font-weight: 900;
}

.comment-says {
  color: var(--muted);
}

.comment-date {
  color: var(--green-700);
  font-weight: 700;
}

.comment-awaiting-moderation {
  margin: 0 0 12px;
  color: var(--caramel-deep);
  font-size: 15px;
  font-style: italic;
}

.comment-text p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
}

.comment-text p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  margin-top: 14px;
}

.comment-reply-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--caramel-soft);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.no-comments {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.logged-in-as,
.comment-notes {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.single-comments label {
  display: block;
  margin: 0 0 8px;
  color: var(--green-900);
  font-weight: 800;
  font-size: 15px;
}

.comment-form p {
  margin: 18px 0 18px;
}

.single-comments textarea,
.single-comments input[type="text"],
.single-comments input[type="email"],
.single-comments input[type="url"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: white;
}

.single-comments textarea {
  min-height: 220px;
  resize: vertical;
}

.single-comments input[type="submit"],
#submit {
  border: 0;
  background: var(--green-700);
  color: white;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.single-comments .comment-form-cookies-consent label {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.comment-form-cookies-consent input {
  margin-top: 4px;
}

.single-comments input[type="submit"]:hover,
#submit:hover,
.telegram-cta a:hover,
.single-content .btn:hover {
  transform: translateY(-1px);
}

.related-section {
  margin-top: 54px;
}

.related-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .single-layout {
    grid-template-columns: 1fr;
  }

  .single-aside {
    position: static;
  }
}

@media (max-width: 680px) {
  .single-content {
    padding: 22px;
    border-radius: 22px;
  }

  .single-content p {
    font-size: 17px;
  }

  .telegram-cta {
    grid-template-columns: 1fr;
  }

  .telegram-cta a {
    justify-self: start;
  }

  .comment-body {
    grid-template-columns: 1fr;
  }

  .comment-list .children {
    margin-left: 18px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }
}
.archive-main {
  padding: 0;
}

.archive-hero {
  padding: 56px 0 42px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(59, 155, 109, 0.16),
      transparent 30%
    ),
    linear-gradient(180deg, var(--sand-100), #fff);
  border-bottom: 1px solid var(--border);
}

.archive-kicker {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.archive-hero h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.archive-description {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.archive-content {
  padding: 46px 0 70px;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.site-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 28px rgba(118, 62, 18, 0.05);
}

.sidebar-card-green {
  background: var(--green-700);
  color: white;
}

.sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--green-900);
}

.sidebar-card-green h3 {
  color: white;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.sidebar-card-green p {
  color: rgba(255, 255, 255, 0.75);
}

.sidebar-card-green a {
  display: inline-flex;
  background: white;
  color: var(--green-900);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.sidebar-label {
  display: inline-flex;
  color: #9ee2bd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-list,
.sidebar-post-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-list li,
.sidebar-post-list li {
  border-top: 1px solid var(--border);
  padding: 11px 0;
}

.sidebar-list li:first-child,
.sidebar-post-list li:first-child {
  border-top: 0;
}

.sidebar-list a,
.sidebar-post-list a {
  font-weight: 750;
  color: var(--text);
}

.sidebar-list a:hover,
.sidebar-post-list a:hover {
  color: var(--green-700);
}

.sidebar-post-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.empty-state {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
}

.empty-state h2 {
  margin: 0 0 8px;
  color: var(--green-900);
}

.empty-state p {
  color: var(--muted);
}

.pagination {
  margin-top: 34px;
}

.pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  color: var(--green-900);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--green-700);
  color: white;
}

@media (max-width: 980px) {
  .archive-layout {
    grid-template-columns: 1fr;
  }

  .site-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}
.site-logo span {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input {
  width: 180px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  outline: none;
}

.header-search input:focus {
  border-color: var(--green-700);
}

.telegram-link {
  background: var(--green-700);
  color: white;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  font-size: 14px;
}

.telegram-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green-700);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .header-actions {
    display: none;
  }
}
.search-page-form {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  max-width: 620px;
}

.search-page-form input {
  flex: 1;
  border: 1px solid var(--border);
  background: white;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  outline: none;
}

.search-page-form input:focus {
  border-color: var(--green-700);
}

.search-page-form button {
  border: 0;
  background: var(--green-700);
  color: white;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
}

.search-page-form button:hover {
  background: var(--green-700);
}

@media (max-width: 620px) {
  .search-page-form {
    flex-direction: column;
  }

  .search-page-form button {
    width: 100%;
  }
}
.site-footer {
  background: var(--green-700);
  color: white;
  padding: 56px 0 24px;
  border-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: white;
  margin-bottom: 14px;
}

.footer-logo span {
  color: #9ee2bd;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  max-width: 360px;
  margin: 0 0 18px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-telegram {
  display: inline-flex;
  background: white;
  color: var(--green-900);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 16px;
  color: #9ee2bd;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col ul,
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer-col a:hover {
  color: white;
}

.footer-contact p {
  margin: 0 0 16px;
}

.footer-contact a[href^="mailto:"] {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-search {
  display: flex;
  gap: 8px;
}

.footer-search input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 999px;
  padding: 11px 14px;
  font: inherit;
  outline: none;
}

.footer-search input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.footer-search button {
  border: 0;
  background: white;
  color: var(--green-900);
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 900;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.social-icon-link {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-search {
    flex-direction: column;
  }
}
.page-main {
  padding: 0;
}

.page-article {
  padding: 46px 0 72px;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(59, 155, 109, 0.14),
      transparent 28%
    ),
    var(--sand-100);
}

.page-container {
  max-width: 920px;
}

.page-header {
  margin-bottom: 28px;
}

.page-header h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.page-content {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.page-content p {
  font-size: 19px;
  line-height: 1.78;
  color: #27352e;
  margin: 0 0 24px;
}

.page-content h2,
.page-content h3 {
  color: var(--green-900);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-top: 34px;
}

.page-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-content ul,
.page-content ol {
  padding-left: 22px;
  margin-bottom: 24px;
}

.page-content li {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 680px) {
  .page-content {
    padding: 24px;
    border-radius: 22px;
  }

  .page-content p,
  .page-content li {
    font-size: 17px;
  }
}
.focus-section {
  padding: 20px 0 60px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.focus-card {
  min-height: 210px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(118, 62, 18, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--green-700);
}

.focus-card span {
  color: var(--green-900);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.focus-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 18px 0 0;
}

.focus-card:hover span,
.focus-card:hover p {
  color: white;
}

.reporter-section {
  padding: 0 0 64px;
}

.reporter-card {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 218, 158, 0.24),
      transparent 28%
    ),
    var(--green-900);
  color: white;
  border-radius: 34px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.reporter-card h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.reporter-card p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.reporter-card .btn-primary {
  background: white;
  color: var(--green-900);
}

@media (max-width: 980px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reporter-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .reporter-card {
    padding: 26px;
    border-radius: 26px;
  }
}
.error-main {
  padding: 0;
}

.error-section {
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(59, 155, 109, 0.16),
      transparent 30%
    ),
    var(--sand-100);
}

.error-card {
  max-width: 850px;
}

.error-card h1 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.error-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
  margin: 22px 0 0;
}

.error-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.error-search {
  margin-top: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo-image {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: white;
  border: 1px solid var(--border);
}

.site-logo-text {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: var(--green-900);
  line-height: 1;
}

.site-logo-text span {
  color: var(--caramel-deep);
}

/* .language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
}

.language-switcher span {
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--green-900);
  font-size: 12px;
  font-weight: 900;
}

.language-switcher a:hover {
  background: var(--caramel-soft);
} */

.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-700);
  color: white;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  font-size: 14px;
}

.telegram-link:hover {
  background: var(--green-700);
}

.telegram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  margin-bottom: 14px;
}

.footer-logo-image {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: white;
}

.footer-logo-text {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: white;
}

.footer-logo-text span {
  color: #f3d9ab;
}

.single-navigation-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 34px;
}

.sidebar-rubrics {
  background: var(--caramel-soft);
}

.sidebar-rubric-list li {
  border-top: 1px solid rgba(120, 83, 38, 0.18);
}

.sidebar-rubric-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sidebar-rubric-list a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid var(--green-700);
  flex: 0 0 auto;
}

.sidebar-rubric-list a span {
  flex: 1;
}

.sidebar-rubric-list a em {
  font-style: normal;
  color: var(--muted);
  font-weight: 700;
}

.date-search-form {
  display: grid;
  gap: 12px;
}

.date-search-form label {
  display: grid;
  gap: 6px;
}

.date-search-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.date-search-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 12px;
  background: white;
  font: inherit;
  color: var(--text);
}

.date-search-form button {
  border: 0;
  background: var(--green-700);
  color: white;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
}

.date-search-form button:hover {
  background: var(--green-700);
}

.home-main {
  padding: 0;
}

.home-top-news {
  padding: 46px 0 38px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(207, 152, 88, 0.18),
      transparent 28%
    ),
    linear-gradient(180deg, var(--sand-100), #fff);
  border-bottom: 1px solid var(--border);
}

.home-section-title {
  margin-bottom: 24px;
}

.home-section-title span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-section-title h1 {
  margin: 8px 0 0;
  color: var(--green-900);
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.home-story-image {
  display: block;
  overflow: hidden;
  background: var(--sand-200);
}

.home-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story-content {
  padding: 22px;
}

.home-story-content h2 {
  margin: 8px 0 10px;
  color: var(--green-900);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-story-content h2 a:hover {
  color: var(--green-700);
}

.home-story-content p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.home-feed-section {
  padding: 44px 0 70px;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.home-news-list {
  display: grid;
  gap: 22px;
}

.home-news-item {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(88, 58, 28, 0.05);
}

.home-news-image {
  display: block;
  min-height: 190px;
  background: var(--sand-200);
}

.home-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-news-content {
  padding: 20px 20px 20px 0;
}

.home-news-content h3 {
  margin: 8px 0 10px;
  color: var(--green-900);
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.home-news-content h3 a:hover {
  color: var(--green-700);
}

.home-news-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  margin: 0 0 12px;
}

@media (max-width: 1050px) {
  .home-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-news-item {
    grid-template-columns: 1fr;
  }

  .home-news-content {
    padding: 20px;
  }
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
}

.site-logo-image {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: white;
  border: 1px solid var(--border);
}

.site-logo-text {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: var(--green-900);
  line-height: 1;
  white-space: nowrap;
}

.site-logo-text span {
  color: var(--caramel-deep);
}

.telegram-link,
.footer-telegram,
.sidebar-card-green a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.telegram-link-icon,
.footer-telegram span,
.sidebar-card-green a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.telegram-link svg,
.footer-telegram svg,
.sidebar-card-green svg {
  width: 18px;
  height: 18px;
}

.telegram-icon svg {
  width: 24px;
  height: 24px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  margin-bottom: 14px;
}

.footer-logo-image {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: white;
}

.footer-logo-text {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.06em;
  color: white;
}

.footer-logo-text span {
  color: #f3d9ab;
}

@media (max-width: 760px) {
  .site-logo-image {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .site-logo-text {
    font-size: 28px;
  }
}

.social-link,
.telegram-link,
.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.facebook-link {
  background: #315f9f;
  color: white;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 900;
  font-size: 14px;
}

.facebook-link:hover {
  background: #254b80;
}

.post-views {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.single-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.language-switcher-google {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  max-width: 180px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.language-switcher-google select {
  max-width: 150px;
  border: 0;
  background: transparent;
  color: var(--green-900);
  font-weight: 800;
  font: inherit;
  outline: none;
  cursor: pointer;
}

.language-switcher-google img {
  width: 20px;
  height: auto;
  margin-right: 6px;
}

.language-switcher-google .goog-te-gadget {
  font-size: 0;
}

.language-switcher-google .goog-te-gadget span,
.language-switcher-google .goog-te-gadget a {
  display: none;
}

.goog-te-banner-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Header responsive overrides */
.site-header {
  overflow: visible;
}

.header-inner {
  position: relative;
  gap: 18px;
  min-width: 0;
}

.site-logo {
  min-width: 0;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav ul {
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.site-nav a {
  font-size: clamp(13px, 1.15vw, 15px);
}

.header-actions {
  flex: 0 1 auto;
  min-width: 0;
  gap: 8px;
}

.translate-widget {
  flex: 0 1 160px;
  min-width: 120px;
}

.translate-widget select,
.translate-widget .goog-te-combo {
  width: 100%;
  max-width: 160px;
  min-height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--green-900);
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
  outline: none;
}

.header-search {
  flex: 0 1 150px;
  min-width: 120px;
}

.header-search input {
  width: 100%;
  min-height: 36px;
  padding: 9px 13px;
}

.telegram-link,
.facebook-link {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 9px 12px;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 64px;
    padding: 10px 0;
    gap: 10px 14px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    order: 2;
  }

  .site-logo {
    order: 1;
  }

  .site-nav {
    display: none;
    position: static;
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    padding: 14px 0 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav.is-open,
  .header-inner.is-open .site-nav {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
  }

  .header-actions {
    display: none;
    order: 4;
    width: 100%;
    flex: 0 0 100%;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 8px 0 4px;
  }

  .header-inner.is-open .header-actions {
    display: flex;
  }

  .translate-widget,
  .header-search {
    flex: 1 1 220px;
  }

  .translate-widget select,
  .translate-widget .goog-te-combo {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-logo {
    gap: 10px;
  }

  .site-logo-image {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .site-logo-text {
    font-size: 27px;
  }

  .header-actions {
    flex-direction: column;
  }

  .translate-widget,
  .header-search,
  .telegram-link,
  .facebook-link {
    width: 100%;
    flex-basis: auto;
  }

  .telegram-link,
  .facebook-link {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .site-logo-text {
    font-size: 23px;
  }

  .site-logo-image {
    width: 40px;
    height: 40px;
  }
}

.telegram-link.social-icon-link,
.facebook-link.social-icon-link,
.footer-telegram.social-icon-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  gap: 0;
  justify-content: center;
}

.telegram-link.social-icon-link svg,
.facebook-link.social-icon-link svg,
.footer-telegram.social-icon-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 640px) {
  .telegram-link.social-icon-link,
  .facebook-link.social-icon-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-basis: 44px;
    align-self: flex-start;
  }
}

/* Client revision: old SREDA color, inline languages, comments rail, and homepage slider */
.language-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.language-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 8px;
  border-radius: 6px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.language-links a:hover,
.language-links .gt-current-lang {
  color: var(--green-900);
  background: rgba(66, 104, 79, 0.08);
}

.home-section-title h1 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-feature-slider {
  position: relative;
  border: 1px solid var(--border);
  background: white;
  box-shadow: 0 14px 34px rgba(118, 62, 18, 0.1);
  overflow: hidden;
  border-radius: 24px;
}

.home-feature-track {
  position: relative;
}

.home-feature-slide {
  display: none;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  min-height: 430px;
}

.home-feature-slide.is-active {
  display: grid;
}

.home-feature-slide .home-story-image {
  min-height: 430px;
  aspect-ratio: auto;
  border-radius: 0;
}

.home-feature-slide .home-story-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  background: linear-gradient(180deg, #fff, var(--sand-100));
}

.home-story-date {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 10px;
  background: var(--green-700);
  color: white;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.home-feature-slide .home-story-content h2 {
  margin: 10px 0 14px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.home-feature-slide .home-story-content p {
  max-width: 560px;
  color: #293047;
  font-size: 17px;
  line-height: 1.65;
}

.home-feature-controls {
  position: absolute;
  left: 42px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.home-feature-prev,
.home-feature-next,
.home-feature-dots button {
  border: 0;
  cursor: pointer;
}

.home-feature-prev,
.home-feature-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: 28px;
  line-height: 1;
}

.home-feature-dots {
  display: inline-flex;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.home-feature-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  background: rgba(7, 17, 41, 0.25);
}

.home-feature-dots button.is-active {
  background: var(--green-700);
}

.sidebar-comments-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(118, 62, 18, 0.05);
}

.sidebar-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-comment-list li {
  border-top: 1px solid var(--border);
  padding: 11px 0;
}

.sidebar-comment-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.sidebar-comment-list li:last-child {
  padding-bottom: 0;
}

.sidebar-comment-list a {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
}

.sidebar-comment-list a:hover {
  color: var(--green-700);
}

.sidebar-comment-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.sidebar-empty {
  color: var(--muted);
  font-size: 14px;
}

/* @media (max-width: 1180px) {
  .language-links,
  .header-search {
    flex: 1 1 220px;
  }
} */

@media (max-width: 900px) {
  .home-feature-slide,
  .home-feature-slide.is-active {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-feature-slide .home-story-image {
    min-height: 300px;
  }

  .home-feature-controls {
    left: 24px;
    bottom: auto;
    top: 248px;
  }
}

@media (max-width: 640px) {
  .language-links {
    /* width: 100%; */
    justify-content: flex-start;
  }

  .language-links a {
    min-height: 34px;
    padding: 0 10px;
  }

  .home-feature-slide .home-story-content {
    padding: 26px;
  }

  .home-feature-slide .home-story-image {
    min-height: 240px;
  }

  .home-feature-controls {
    top: 194px;
    left: 18px;
  }
}

/* Old website warm beige footer and selected red-block override */
.site-footer {
  background: var(--sand-100);
  color: var(--text);
  border-top: 1px solid var(--border);
}

.site-footer .footer-logo,
.site-footer .footer-logo-text,
.site-footer .footer-bottom,
.site-footer .footer-brand p,
.site-footer .footer-col h3,
.site-footer .footer-col a,
.site-footer .footer-contact a[href^="mailto:"] {
  color: var(--text);
}

.site-footer .footer-logo-text span,
.site-footer .footer-logo span,
.site-footer .footer-col a:hover,
.site-footer .footer-contact a[href^="mailto:"]:hover {
  color: var(--green-900);
}

.site-footer .footer-bottom {
  border-top-color: var(--border);
}

.site-footer .footer-search input {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.site-footer .footer-search input::placeholder {
  color: var(--muted);
}

.site-footer .footer-search button {
  background: transparent;
  color: var(--muted);
}

.site-footer .footer-telegram.social-icon-link,
.site-footer .facebook-link.social-icon-link {
  box-shadow: 0 2px 0 rgba(118, 62, 18, 0.12);
}

/* Red sections softened to old website sand where large backgrounds felt too heavy */
.topics-strip,
.mission-card,
.telegram-cta,
.sidebar-card-green,
.reporter-card {
  background: var(--sand-100);
  color: var(--text);
  border: 1px solid var(--border);
}

.mission-card .eyebrow,
.sidebar-card-green h3,
.sidebar-card-green p,
.reporter-card .eyebrow,
.reporter-card p,
.telegram-cta p,
.telegram-cta strong {
  color: var(--text);
}

.sidebar-card-green a,
.telegram-cta a,
.reporter-card .btn-primary {
  background: var(--green-700);
  color: white;
}

.home-feed .section-heading h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.home-feature-slider {
  border-radius: 24px;
}

.home-feature-slide .home-story-image {
  border-radius: 0;
}

@media (max-width: 900px) {
  .home-feature-slide .home-story-image {
    border-radius: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER — polished design
   Layout: top-bar │ brand+actions │ rubrics-nav
══════════════════════════════════════════════════════════ */

/* ── Base ────────────────────────────────────────────────── */
.site-header {
  background: rgba(251, 246, 236, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 0;
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

/* ── Top bar ─────────────────────────────────────────────── */
.header-top {
  border-bottom: 1px solid rgba(210, 178, 122, 0.5);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 34px;
  font-size: 12.5px;
}

.header-contact-link {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 12.5px;
}

/* .header-contact-link:hover {
  color: var(--green-700);
} */

.header-socials {
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.header-socials .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--muted);
  background: transparent;
  border-radius: 7px;
  padding: 0;
  min-width: 0;
}

.header-socials svg {
  width: 18px;
  height: 18px;
}

/* ── Main inner (brand left, actions right) ──────────────── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 11px 0 9px;
  position: relative;
  min-width: 0;
}

.header-brand {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header .site-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  letter-spacing: 0;
  flex: 0 0 auto;
}

.site-header .site-logo-image {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.site-header .site-logo-text {
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
}

.site-header .site-logo-text span {
  color: var(--green-700);
}

.site-description {
  margin: 4px 0 0;
  padding-left: 55px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  max-width: 560px;
}

/* ── Language + search ───────────────────────────────────── */
.site-header .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  margin-top: 0;
}

.site-header .language-links {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.site-header .language-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 8px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  min-height: 0;
}

.site-header .language-links a:hover,
.site-header .language-links .gt-current-lang {
  color: var(--text);
  background: rgba(66, 104, 79, 0.09);
}

/* ── Search ──────────────────────────────────────────────── */
.search-with-icon {
  position: relative;
}

.header-search.search-with-icon {
  width: 155px;
  min-width: 120px;
  flex: 0 0 155px;
}

.search-with-icon input {
  width: 100%;
  padding-right: 36px;
}

.header-search.search-with-icon input {
  height: 32px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  outline: none;
}

.header-search.search-with-icon input:focus {
  border-color: rgba(66, 104, 79, 0.5);
  box-shadow: 0 0 0 2.5px rgba(66, 104, 79, 0.1);
}

.search-with-icon button {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.search-with-icon button:hover,
.search-with-icon button:focus-visible {
  color: var(--green-700);
  outline: none;
}

/* Footer & search-page forms use a drawn icon (no SVG) */
.search-page-form.search-with-icon,
.footer-search.search-with-icon {
  display: block;
}

.search-page-form.search-with-icon input,
.footer-search.search-with-icon input {
  min-height: 50px;
  padding-right: 48px;
}

.search-page-form.search-with-icon button,
.footer-search.search-with-icon button {
  right: 8px;
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 0;
}

.search-page-form.search-with-icon button::before,
.footer-search.search-with-icon button::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-page-form.search-with-icon button::after,
.footer-search.search-with-icon button::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(8px, 8px) rotate(45deg);
}

/* ── Rubrics nav ─────────────────────────────────────────── */
.header-rubrics {
  border-top: 1px solid rgba(210, 178, 122, 0.5);
}

.header-rubrics .container {
  padding-top: 0;
  padding-bottom: 0;
}

.header-rubrics .site-nav {
  display: block;
  width: 100%;
  position: static;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.header-rubrics .site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  white-space: normal;
}

.header-rubrics .site-nav a {
  display: block;
  padding: 8px 11px;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 450;
  line-height: 1.2;
  position: relative;
}

.header-rubrics .site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--green-700);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.header-rubrics .site-nav a:hover {
  color: var(--green-700);
  transform: none;
}

.header-rubrics .site-nav a:hover::after {
  transform: scaleX(1);
}

/* ── Mobile menu toggle ──────────────────────────────────── */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

/* ── Sidebar rubrics are shown in header instead ─────────── */
.sidebar-rubrics,
.single-aside .aside-card:first-child {
  display: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1180px) {
  .header-inner {
    min-height: 0;
    padding: 10px 0;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }

  .header-brand {
    flex: 1 1 auto;
  }

  .site-header .header-actions {
    display: flex;
    flex: 0 1 auto;
    margin-top: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .header-rubrics .site-nav {
    display: none;
  }

  .header-rubrics .site-nav.is-open {
    display: block;
  }

  .header-rubrics .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header-rubrics .site-nav a {
    padding: 9px 4px;
  }

  .header-rubrics .site-nav a::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header .header-actions {
    gap: 8px;
  }

  .header-search.search-with-icon {
    width: 130px;
    min-width: 100px;
    flex: 0 0 130px;
  }

  .site-header .language-links a {
    padding: 0 6px;
    font-size: 13px;
  }

  .site-description {
    font-size: 12px;
    padding-left: 49px;
  }
}

@media (max-width: 520px) {
  .site-description {
    display: none;
  }

  .site-header .site-logo-text {
    font-size: 26px;
  }

  .site-header .site-logo-image {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .header-top-inner {
    min-height: 30px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .site-header .site-logo-text {
    font-size: 22px;
  }

  .site-header .site-logo-image {
    width: 34px;
    height: 34px;
  }
}

/* Subtle interaction polish */
a,
button,
input,
select,
textarea,
.btn,
.post-category {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.btn,
.telegram-link,
.facebook-link,
.footer-telegram,
.date-search-form button,
.search-page-form button,
.sidebar-card-green a,
.telegram-cta a,
.reporter-card .btn-primary,
.single-comments input[type="submit"],
#submit {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.btn:hover,
.telegram-link:hover,
.facebook-link:hover,
.footer-telegram:hover,
.date-search-form button:hover,
.search-page-form button:hover,
.sidebar-card-green a:hover,
.telegram-cta a:hover,
.reporter-card .btn-primary:hover,
.single-comments input[type="submit"]:hover,
#submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(118, 62, 18, 0.12);
}

.search-with-icon button,
.search-with-icon button:hover,
.search-with-icon button:focus-visible {
  transform: translateY(-50%);
  box-shadow: none;
}

.search-with-icon button:hover,
.search-with-icon button:focus-visible {
  transform: translateY(-50%) scale(1.06);
}

.site-nav a,
.header-contact-link,
.header-socials a,
.language-links a,
.footer-col a,
.sidebar-list a,
.sidebar-post-list a,
.sidebar-comment-list a,
.aside-card a {
  display: inline-block;
  transition:
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover,
/* .header-contact-link:hover, */
.header-socials a:hover,
.language-links a:hover,
.footer-col a:hover,
.sidebar-list a:hover,
.sidebar-post-list a:hover,
.sidebar-comment-list a:hover,
.aside-card a:hover {
  transform: translateY(-1px);
}

.post-card,
.home-news-item,
.home-feature-slider,
.sidebar-card,
.aside-card,
.focus-card,
.empty-state {
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.home-news-item:hover,
.sidebar-card:hover,
.aside-card:hover,
.empty-state:hover {
  transform: translateY(-3px);
  border-color: rgba(66, 104, 79, 0.32);
  box-shadow: 0 14px 34px rgba(118, 62, 18, 0.09);
}

.home-feature-slider:hover {
  box-shadow: 0 18px 38px rgba(118, 62, 18, 0.14);
}

.home-story-image img,
.home-news-image img,
.single-featured-image img {
  transition:
    transform 360ms ease,
    filter 220ms ease;
}

.home-feature-slide:hover .home-story-image img,
.home-news-item:hover .home-news-image img,
.single-featured-image:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.post-category:hover {
  transform: translateY(-1px);
  opacity: 0.82;
}

input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(66, 104, 79, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Footer YouTube icon — mirrors telegram/facebook */
.footer-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--green-900);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.footer-youtube.social-icon-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  gap: 0;
}

.footer-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(118, 62, 18, 0.12);
}

.site-footer .footer-youtube.social-icon-link {
  box-shadow: 0 2px 0 rgba(118, 62, 18, 0.12);
}

/* Footer search button hover */
.site-footer .footer-search button:hover,
.site-footer .footer-search button:focus-visible {
  color: var(--green-700);
}

/* Logo subtle opacity lift on hover */
.site-logo {
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.site-logo:hover {
  opacity: 0.82;
  transform: scale(1.015);
}

/* Footer logo lift on hover */
.footer-logo {
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.footer-logo:hover {
  opacity: 0.82;
  transform: scale(1.015);
}

/* Header social icons — scale on hover (overrides translateY for crisper feel) */
.header-socials .social-icon-link {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.header-socials .social-icon-link:hover {
  transform: scale(1.18) translateY(-1px);
}

/* Menu toggle hover */
.menu-toggle {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-toggle:hover {
  border-color: var(--green-700);
  transform: scale(1.06);
}

/* Rubrics nav links — slightly stronger lift */
.header-rubrics .site-nav a:hover {
  transform: translateY(-2px);
}

/* Footer column links — already have translateY, adding slight color pop */
.site-footer .footer-col a:hover {
  color: var(--green-900);
}

/* Post card image — already has scale, add slight brightness */
.post-card:hover .post-card-image img {
  filter: saturate(1.06) brightness(1.02);
}

/* ══════════════════════════════════════════════════════════════
   DESIGN CONSISTENCY — full-project pass
   Standardises shadows, typography hierarchy, spacing, components
══════════════════════════════════════════════════════════════ */

/* ── Standardised shadow scale ─────────────────────────────── */
:root {
  --shadow-xs: 0 1px 6px rgba(118, 62, 18, 0.06);
  --shadow-sm: 0 4px 16px rgba(118, 62, 18, 0.08);
  --shadow-md: 0 10px 30px rgba(118, 62, 18, 0.11);
  --shadow-lg: 0 22px 52px rgba(118, 62, 18, 0.15);
}

/* ── FOOTER ────────────────────────────────────────────────── */

/* .UZ in brand red — matches header logo */
.site-footer .footer-logo-text span,
.site-footer .footer-logo span {
  color: var(--green-700);
}

/* logo image border visible on beige background */
.footer-logo-image {
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* column headings: small-caps label */
.site-footer .footer-col h3 {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  line-height: 1;
}

/* column link sizing */
.site-footer .footer-col a {
  font-size: 13.5px;
  font-weight: 500;
}

.site-footer .footer-col li {
  margin-bottom: 9px;
}

/* brand tagline */
.site-footer .footer-brand p {
  font-size: 13.5px;
  line-height: 1.68;
  max-width: 300px;
}

/* bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12.5px;
}

/* ── SIDEBAR & ASIDE ───────────────────────────────────────── */

/* h3 headings: small-caps label consistent with footer */
.sidebar-card h3,
.aside-card h3 {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  line-height: 1;
}

/* standardise shadows */
.sidebar-card {
  box-shadow: var(--shadow-xs);
}

.aside-card {
  box-shadow: var(--shadow-xs);
}

.sidebar-card:hover,
.aside-card:hover {
  box-shadow: var(--shadow-sm);
}

/* aside-card list (recent posts on single page) */
.aside-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-card li {
  border-top: 1px solid var(--border);
  padding: 9px 0;
}

.aside-card li:first-child {
  border-top: 0;
  padding-top: 0;
}

.aside-card li a {
  display: block;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--text);
  line-height: 1.42;
}

.aside-card li a:hover {
  color: var(--green-700);
}

.aside-card li > span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

/* rubric count badge */
.sidebar-rubric-list em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 3px;
}

/* sidebar list link sizing */
.sidebar-list a,
.sidebar-post-list a {
  font-size: 13.5px;
  font-weight: 600;
}

.sidebar-post-list span {
  font-size: 12px;
}

/* date search form: label + select */
.date-search-form {
  display: grid;
  gap: 10px;
}

.date-search-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.date-search-form label > span {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.date-search-form select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 14px;
  background: white;
  color: var(--text);
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
  outline: none;
  width: 100%;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.date-search-form select:focus {
  border-color: rgba(66, 104, 79, 0.4);
  box-shadow: 0 0 0 3px rgba(66, 104, 79, 0.09);
}

.date-search-form button {
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
}

/* ── POST CARDS ────────────────────────────────────────────── */

.post-card {
  box-shadow: var(--shadow-xs);
}

.post-card:hover {
  box-shadow: var(--shadow-md);
}

/* category label uniform */
.post-category {
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

/* card title: slightly tighter */
.post-card h3 {
  font-size: 20px;
  line-height: 1.2;
}

/* ── HOME PAGE ─────────────────────────────────────────────── */

/* section label: consistent small-caps across all section titles */
.section-heading span,
.home-section-title span,
.archive-kicker {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
}

/* hero title: slightly tighter max to breathe on large screens */
.home-section-title h1 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* feature slider: richer shadow */
.home-feature-slider {
  box-shadow: var(--shadow-md);
}

/* prev/next buttons: warmer hover */
.home-feature-prev,
.home-feature-next {
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.home-feature-prev:hover,
.home-feature-next:hover {
  background: var(--caramel-deep);
  transform: scale(1.1);
}

/* news items: consistent shadow */
.home-news-item {
  box-shadow: var(--shadow-xs);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.home-news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(66, 104, 79, 0.28);
}

/* news content: better vertical rhythm */
.home-news-content h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
}

.home-news-content p {
  font-size: 15px;
  line-height: 1.6;
}

.home-news-content .post-meta {
  font-size: 12.5px;
  font-weight: 700;
}

/* ── PAGINATION ────────────────────────────────────────────── */

.pagination .page-numbers {
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.pagination .page-numbers:not(.current):hover {
  transform: translateY(-2px);
}

/* ── ARCHIVE PAGE ──────────────────────────────────────────── */

.archive-hero h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  letter-spacing: -0.06em;
}

.archive-description {
  font-size: 15.5px;
  margin-top: 14px;
}

/* ── SINGLE POST ───────────────────────────────────────────── */

.single-breadcrumbs {
  font-size: 13px;
  margin-bottom: 22px;
}

.single-category {
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

/* meta: date + views on one line */
.single-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* featured image: consistent radius */
.single-featured-image {
  border-radius: 22px;
}

/* content box: consistent radius */
.single-content {
  border-radius: 22px;
  box-shadow: var(--shadow-xs);
}

/* navigation buttons */
.single-navigation-buttons {
  margin: 24px 0 28px;
  gap: 10px;
}

/* telegram CTA: slightly rounder */
.telegram-cta {
  border-radius: 18px;
  margin: 32px 0;
}

.telegram-cta strong {
  font-size: 17px;
}

/* ── FOCUS CARDS ───────────────────────────────────────────── */

.focus-card {
  box-shadow: var(--shadow-xs);
  border-radius: 24px;
}

.focus-card:hover {
  box-shadow: var(--shadow-md);
}

/* ── MISSION & REPORTER CARDS ──────────────────────────────── */

.mission-card {
  border-radius: 24px;
}

.reporter-card {
  border-radius: 24px;
}

/* ── EMPTY STATE ───────────────────────────────────────────── */

.empty-state {
  box-shadow: var(--shadow-xs);
}

/* ── HERO CARD (used in older templates) ───────────────────── */

.hero-card {
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

/* ── RESPONSIVE ADJUSTMENTS ────────────────────────────────── */

@media (max-width: 700px) {
  .home-news-content {
    padding: 16px;
  }

  .home-news-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .archive-hero h1 {
    letter-spacing: -0.05em;
  }
}

/* ══════════════════════════════════════════════════════════════
   POLISH PASS 2 — icons, slider, single-post title
══════════════════════════════════════════════════════════════ */

/* ── HEADER SOCIAL ICONS: bumped up ────────────────────────── */
.header-socials .social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.header-socials svg {
  width: 22px;
  height: 22px;
}

/* ── ALL SOCIAL ICON LINKS: unified 36 × 36 ────────────────── */
.social-icon-link {
  width: 36px;
  height: 36px;
  min-width: 36px;
}

.social-icon-link svg {
  width: 22px;
  height: 22px;
}

.telegram-link.social-icon-link,
.facebook-link.social-icon-link,
.footer-telegram.social-icon-link,
.footer-youtube.social-icon-link {
  width: 36px;
  height: 36px;
  min-width: 36px;
}

.telegram-link.social-icon-link svg,
.facebook-link.social-icon-link svg,
.footer-telegram.social-icon-link svg,
.footer-youtube.social-icon-link svg {
  width: 22px;
  height: 22px;
}

/* ── SINGLE POST TITLE: comfortable reading size ────────────── */
.single-header h1 {
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* ── FEATURE SLIDER: redesigned ─────────────────────────────── */

/* Smooth fade + lift when slide becomes active */
@keyframes featureSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-feature-slide.is-active {
  animation: featureSlideIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Content panel: warm cream, separated from image */
.home-feature-slide .home-story-content {
  background: #fbf6ec;
  border-left: 1px solid rgba(210, 178, 122, 0.4);
  padding: 40px 38px 62px;
}

/* Slide title hover: green accent */
.home-feature-slide .home-story-content h2 a:hover {
  color: var(--green-700);
}

/* Slide excerpt: slightly muted */
.home-feature-slide .home-story-content p {
  color: var(--muted);
  font-size: 15.5px;
}

/* Date badge: pill shape, softer */
.home-story-date {
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  margin-bottom: 10px;
}

/* Image side: gradient blend into content panel on the right edge */
.home-feature-slide .home-story-image {
  position: relative;
  overflow: hidden;
}

.home-feature-slide .home-story-image::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 90px;
  background: linear-gradient(to right, transparent, #fbf6ec);
  pointer-events: none;
  z-index: 1;
}

/* Controls: bottom-right corner of the slider (content panel side) */
.home-feature-controls {
  left: auto;
  right: 28px;
  bottom: 20px;
  top: auto;
  gap: 8px;
}

/* Prev / next: soft tinted pill, fills green on hover */
.home-feature-prev,
.home-feature-next {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 22px;
  line-height: 1;
  background: rgba(66, 104, 79, 0.1);
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-feature-prev:hover,
.home-feature-next:hover {
  background: var(--green-700);
  color: white;
  transform: scale(1.07);
}

/* Dots: minimal pill container */
.home-feature-dots {
  background: rgba(44, 50, 56, 0.07);
  padding: 5px 8px;
  border-radius: 999px;
  gap: 6px;
}

.home-feature-dots button {
  width: 7px;
  height: 7px;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.home-feature-dots button.is-active {
  transform: scale(1.4);
}

/* Mobile slider: stacked layout fixes */
@media (max-width: 900px) {
  .home-feature-controls {
    right: 16px;
    bottom: 14px;
    top: auto;
    left: auto;
  }

  .home-feature-slide .home-story-image::after {
    display: none;
  }

  .home-feature-slide .home-story-content {
    border-left: 0;
    border-top: 1px solid rgba(210, 178, 122, 0.4);
    padding: 24px 24px 52px;
  }
}

@media (max-width: 600px) {
  .home-feature-slide .home-story-content {
    padding: 20px 18px 48px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ICON SYSTEM — canonical single source of truth
   All social icons everywhere: identical size, shape, colour,
   hover. This block is last in the file so it wins every
   previous rule of equal or lower specificity.
══════════════════════════════════════════════════════════════ */

/* 1. Containers: same size, same radius, same neutral tint */
.header-socials .social-icon-link,
.footer-socials .social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  gap: 0;
  border-radius: 10px;
  background: rgba(44, 50, 56, 0.07);
  color: var(--muted);
  box-shadow: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

/* 2. Kill the bottom-shadow that old rules added to footer icons */
.site-footer .footer-socials .social-icon-link {
  box-shadow: none;
}

/* 3. SVG inside the icons: same size whether direct child or in <span> */
.header-socials .social-icon-link svg,
.footer-socials .social-icon-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}

/* 4. Uniform hover: legacy, overridden by polished social icons */
.header-socials .social-icon-link:hover,
.footer-socials .social-icon-link:hover {
  background: rgba(66, 104, 79, 0.1);
  color: var(--green-700);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 5px 14px rgba(66, 104, 79, 0.16);
}

/* 5. Equal spacing between icons in both places */
.header-socials {
  gap: 6px;
}

.footer-socials {
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════════
   DESCRIPTION INLINE + MOBILE HEADER
   Description sits on the same line as SREDA.UZ logo.
   Mobile: hamburger dropdown, height resets, order fixes.
══════════════════════════════════════════════════════════════ */

/* ── Description: inline with logo (same row) ───────────────── */
.site-header .header-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.site-header .site-logo {
  flex-shrink: 0;
}

.site-description {
  margin: 0 0 0 14px;
  padding-left: 16px;
  border-left: 1.5px solid rgba(210, 178, 122, 0.8);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: none;
}

/* ── Hamburger → × animation ─────────────────────────────────── */
.menu-toggle span {
  transition:
    transform 230ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 180ms ease;
}

.menu-toggle.is-active {
  background: rgba(66, 104, 79, 0.07);
  border-color: rgba(66, 104, 79, 0.4);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── ≤ 1180px: logo | language+search | ☰ ───────────────────── */
@media (max-width: 1180px) {
  .header-brand {
    order: 0;
  }
  .site-header .header-actions {
    order: 1;
  }
  .menu-toggle {
    order: 2;
  }

  .site-description {
    display: none;
  }

  .site-header .header-inner {
    min-height: 0;
    height: auto;
  }

  .header-rubrics .site-nav a {
    background: transparent;
    padding: 11px 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    transition:
      background-color 160ms ease,
      color 160ms ease;
  }

  .header-rubrics .site-nav a:hover {
    background: rgba(66, 104, 79, 0.07);
    color: var(--green-700);
  }

  .header-rubrics .site-nav ul {
    gap: 2px;
    padding: 4px 0 10px;
  }
}

/* ── ≤ 760px: hide search from main header row ───────────────── */
@media (max-width: 760px) {
  .site-header .header-actions .header-search {
    display: none;
  }
}

/* ── ≤ 520px: phone — logo | language | ☰ ───────────────────── */
@media (max-width: 520px) {
  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
    padding: 9px 0;
    gap: 6px;
    min-height: 0;
    height: auto;
  }

  /* Logo: fills available space on the left */
  .header-brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }

  /* Language links: always visible, right of logo */
  .site-header .header-actions {
    display: flex;
    order: 2;
    flex: 0 0 auto;
    width: auto;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    border-top: none;
    padding: 0;
    margin-top: 0;
    min-height: 0;
  }

  /* Search stays hidden on phones — too narrow */
  .site-header .header-actions .header-search {
    display: none;
  }

  /* Hamburger: always far right */
  .menu-toggle {
    order: 3;
    flex-shrink: 0;
    align-self: center;
  }
}

/* ── ≤ 440px: hide top-bar socials ───────────────────────────── */
@media (max-width: 440px) {
  .header-socials {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   TELEGRAM CTA — redesigned
   Blue-accented card matching Telegram branding
══════════════════════════════════════════════════════════════ */

.telegram-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 36px 0;
  padding: 26px 28px;
  border-radius: 20px;
  background: rgba(34, 158, 217, 0.06);
  border: 1px solid rgba(34, 158, 217, 0.2);
  border-left: 4px solid #229ed9;
  color: var(--text);
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.08);
  transition:
    box-shadow 200ms ease,
    transform 200ms ease;
}

.telegram-cta:hover {
  box-shadow: 0 8px 28px rgba(34, 158, 217, 0.14);
  transform: translateY(-2px);
}

.telegram-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #229ed9;
  color: white;
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.35);
}

.telegram-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.telegram-cta strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}

.telegram-cta p {
  margin: 5px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.telegram-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #229ed9;
  color: white;
  border-radius: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
  box-shadow: 0 3px 10px rgba(34, 158, 217, 0.3);
}

.telegram-cta a:hover {
  background: #1a8fc0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 158, 217, 0.38);
}

.telegram-cta a::after {
  content: "→";
  font-style: normal;
}

@media (max-width: 640px) {
  .telegram-cta {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
  }

  .telegram-cta a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   SLIDER — prev/next flanking the image, dots at bottom centre
══════════════════════════════════════════════════════════════ */

/* Slide: grid equalises both column heights; 460px is the floor */
.home-feature-slide {
  min-height: 460px;
}

/* Image column: stretches to fill the grid row (align-self: stretch is
   the default), so no white gap when the text column is taller */
.home-feature-slide .home-story-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

/* Ambient layer: a blurred copy of the photo fills any empty space.
   --slide-bg is injected by JS; sand colour is the fallback. */
.home-feature-slide .home-story-image::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: var(--slide-bg, var(--sand-200)) center / cover no-repeat;
  filter: blur(32px) brightness(0.68) saturate(1.3);
  transform: scale(1.1);
  z-index: 0;
}

/* Actual photo: fills the container, stays above the blur layer */
.home-feature-slide .home-story-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  z-index: 1;
}

/* Controls: overlay the full slider; its children position
   themselves with position:absolute inside it */
.home-feature-controls {
  inset: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  display: block;
  gap: 0;
}

/* Prev + Next: circles at left / right edges, vertically centred */
.home-feature-prev,
.home-feature-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: all;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.home-feature-prev {
  left: 20px;
  right: auto;
}
.home-feature-next {
  right: 20px;
  left: auto;
}

.home-feature-prev:hover,
.home-feature-next:hover {
  background: var(--green-700);
  color: white;
  transform: translateY(-50%) scale(1.09);
  box-shadow: 0 6px 22px rgba(66, 104, 79, 0.3);
}

/* Dots: at the bottom centre of the slider */
.home-feature-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  pointer-events: all;
  background: rgba(255, 255, 255, 0.88);
  padding: 7px 11px;
  border-radius: 999px;
  gap: 7px;
  display: inline-flex;
}

.home-feature-dots button {
  width: 8px;
  height: 8px;
  background: rgba(7, 17, 41, 0.28);
}

.home-feature-dots button.is-active {
  background: var(--green-700);
  transform: scale(1.4);
}

/* Remove the edge-blend gradient (buttons are now over the image) */
.home-feature-slide .home-story-image::after {
  display: none;
}

/* ── ≤ 900px: stacked single-column, fixed image row height ──── */
@media (max-width: 900px) {
  .home-feature-slide {
    min-height: 0;
  }

  .home-feature-slide .home-story-image {
    height: 300px;
    min-height: unset;
  }

  .home-feature-controls {
    height: 300px;
    bottom: auto;
    top: 0;
  }

  .home-feature-prev {
    left: 14px;
  }
  .home-feature-next {
    right: 14px;
  }

  .home-feature-dots {
    bottom: 18px;
  }

  .home-feature-slide .home-story-content {
    border-left: 0;
    border-top: 1px solid rgba(210, 178, 122, 0.4);
    padding: 24px 24px 36px;
  }
}

/* ── ≤ 600px: small phone ───────────────────────────────────── */
@media (max-width: 600px) {
  .home-feature-slide .home-story-image {
    height: 240px;
    min-height: unset;
  }

  .home-feature-controls {
    height: 240px;
  }

  .home-feature-prev,
  .home-feature-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .home-feature-slide .home-story-content {
    padding: 18px 16px 28px;
  }
}

/* ══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER — cap height so GT widget can't bloat header
══════════════════════════════════════════════════════════════ */

/* The Google Translate widget can inject an iframe / large block
   into .language-links. Clip it to button height everywhere. */
.site-header .language-links {
  max-height: 38px;
  overflow: hidden;
  align-self: center;
}

/* ── Phone: language links compact, no full-width stretching ──── */
@media (max-width: 520px) {
  /* Override the ≤1180px flex: 1 1 220px and ≤640px width: 100% rules */
  .site-header .header-actions .language-links {
    flex: 0 0 auto;
    width: auto;
    max-height: 36px;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
    justify-content: center;
  }

  /* Language link buttons: slightly smaller tap area on phones */
  .site-header .header-actions .language-links a {
    padding: 0 6px;
    font-size: 12.5px;
    height: 28px;
  }
}

/* ══════════════════════════════════════════════════════════════
   CLIENT REVIEW — logo dominance, heading hierarchy, rubrics air
══════════════════════════════════════════════════════════════ */

/* 1. SREDA.UZ — impactful display font, clearly the biggest element */
.site-logo-text {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Scale down proportionally on tablet where rubrics still fit */
@media (max-width: 1180px) {
  .site-logo-text {
    font-size: 50px;
  }
}

@media (max-width: 760px) {
  .site-logo-text {
    font-size: 42px;
  }
}

/* 2. Cap ALL headings so nothing exceeds the site name
   Max kept comfortably below 62px Playfair at desktop */
.home-section-title h1,
.home-section-title h2 {
  font-size: clamp(22px, 2.6vw, 40px);
}

.section-heading h2 {
  font-size: clamp(20px, 2.4vw, 38px);
}

.home-feature-slide .home-story-content h2 {
  font-size: clamp(20px, 2.4vw, 36px);
}

.home-news-content h3 {
  font-size: 19px;
}

.single-header h1 {
  font-size: clamp(24px, 3.2vw, 46px);
}

/* 3. Rubrics bar — subtle top tint + stronger border to lift it
   away from the logo row */
.header-rubrics {
  background: linear-gradient(
    to bottom,
    rgba(210, 178, 122, 0.13) 0%,
    transparent 60%
  );
  border-top: 2px solid rgba(210, 178, 122, 0.55);
}

/* 4. Air between rubrics bottom and the first content section */
.home-top-news {
  padding-top: 68px;
}

.home-feed-section {
  padding-top: 16px;
}

/* Also add breathing room on inner pages */
/* .single-main {
  padding-top: 48px;
} */

/* Client revision: SREDA.UZ logo color and title hierarchy */
.site-header .site-logo-text,
.site-logo-text {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--green-700);
}

.site-header .site-logo-text span,
.site-logo-text span {
  color: var(--caramel-deep);
}

.site-header .site-logo-image {
  width: clamp(50px, 5vw, 66px);
  height: clamp(50px, 5vw, 66px);
}

.home-feature-slide .home-story-content h2 {
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.08;
}

.home-news-content h3,
.post-card h3,
.archive-card h2,
.search-result-card h2 {
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.14;
}

.single-header h1,
.page-header h1,
.archive-header h1,
.search-header h1 {
  font-size: clamp(23px, 2.6vw, 33px);
  line-height: 1.08;
}

@media (max-width: 760px) {
  .site-header .site-logo-text,
  .site-logo-text {
    font-size: clamp(30px, 9vw, 38px);
  }

  .home-feature-slide .home-story-content h2,
  .single-header h1,
  .page-header h1,
  .archive-header h1,
  .search-header h1 {
    font-size: clamp(20px, 5.9vw, 26px);
  }

  .home-news-content h3,
  .post-card h3,
  .archive-card h2,
  .search-result-card h2 {
    font-size: clamp(17px, 4.7vw, 21px);
  }
}

/* Client revision: remove orange background so header stays dominant */
.site-footer,
.topics-strip,
.mission-card,
.telegram-cta,
.sidebar-card-green,
.reporter-card,
.hero-card-image,
.post-card-image,
.home-story-image,
.archive-card-image,
.search-result-image {
  background: var(--white);
}

/* Client revision: balanced two-line rubrics bar on desktop */
@media (min-width: 1181px) {
  .header-rubrics .site-nav ul {
    display: grid;
    grid-template-columns: repeat(11, minmax(0, 1fr));
    column-gap: clamp(12px, 1.35vw, 26px);
    row-gap: 5px;
    align-items: center;
    padding: 13px 0 14px;
  }

  .header-rubrics .site-nav li {
    min-width: 0;
  }

  .header-rubrics .site-nav a {
    width: 100%;
    padding: 3px 0 5px;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(14px, 0.92vw, 16px);
  }

  .header-rubrics .site-nav a::after {
    left: 0;
    right: 0;
  }
}

/* Client revision: quieter and higher homepage latest heading */
.home-top-news {
  padding-top: 44px;
}

.home-top-news .home-section-title {
  margin-bottom: 18px;
}

.home-top-news .home-section-title h1 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.04;
}

@media (max-width: 760px) {
  .home-top-news {
    padding-top: 30px;
  }

  .home-top-news .home-section-title h1 {
    font-size: clamp(26px, 8vw, 34px);
  }
}

/* Client revision: dark green footer background */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.86);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.site-footer .footer-logo,
.site-footer .footer-logo-text,
.site-footer .footer-brand p,
.site-footer .footer-col h3,
.site-footer .footer-col a,
.site-footer .footer-contact a[href^="mailto:"],
.site-footer .footer-bottom,
.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .footer-logo-text span,
.site-footer .footer-logo span,
.site-footer .footer-col a:hover,
.site-footer .footer-contact a[href^="mailto:"]:hover {
  color: var(--caramel-soft);
}

.site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.site-footer .footer-search input {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--green-900);
}

.site-footer .footer-search input::placeholder {
  color: rgba(34, 57, 45, 0.62);
}

.site-footer .footer-search button {
  color: var(--green-900);
}

/* Client revision: polished social icons, no red hover */
.header-socials,
.footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-socials .social-icon-link,
.footer-socials .social-icon-link,
.telegram-link.social-icon-link,
.facebook-link.social-icon-link,
.footer-telegram.social-icon-link,
.footer-youtube.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  border: 1px solid rgba(66, 104, 79, 0.22);
  border-radius: 12px;
  background: rgba(66, 104, 79, 0.1);
  color: var(--green-900);
  box-shadow: none;
  transform: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-footer .footer-socials .social-icon-link {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.header-socials .social-icon-link span,
.footer-socials .social-icon-link span,
.telegram-link-icon,
.facebook-link-icon,
.youtube-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header-socials .social-icon-link svg,
.footer-socials .social-icon-link svg,
.telegram-link.social-icon-link svg,
.facebook-link.social-icon-link svg,
.footer-telegram.social-icon-link svg,
.footer-youtube.social-icon-link svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.header-socials .social-icon-link:hover,
.footer-socials .social-icon-link:hover,
.telegram-link.social-icon-link:hover,
.facebook-link.social-icon-link:hover,
.footer-telegram.social-icon-link:hover,
.footer-youtube.social-icon-link:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(34, 57, 45, 0.18);
}

.site-footer .footer-socials .social-icon-link:hover {
  background: var(--caramel-soft);
  border-color: var(--caramel-soft);
  color: var(--green-900);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
/* About page direct clone styling */
.about-page .page-article {
  background:
    radial-gradient(circle at 92% 2%, rgba(66, 104, 79, 0.11), transparent 26%),
    var(--white);
}

.about-container {
  max-width: 1080px;
}

.about-header {
  margin-bottom: 22px;
}

.about-page .page-content {
  border-radius: 28px;
  border-color: rgba(177, 128, 61, 0.46);
  box-shadow: 0 16px 40px rgba(88, 58, 28, 0.07);
}

.about-intro-panel {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin: 0 0 32px;
  padding: 0 0 30px;
  border-bottom: 1px solid var(--border);
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--sand-100);
  box-shadow: 0 12px 26px rgba(88, 58, 28, 0.08);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-lead-text p {
  color: var(--green-900);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
}

.about-quote {
  margin: 32px 0;
  padding: 18px 22px;
  border-left: 5px solid var(--green-700);
  border-radius: 0 18px 18px 0;
  background: rgba(66, 104, 79, 0.08);
  color: var(--green-900);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.about-note {
  display: grid;
  gap: 6px;
  margin: 30px 0;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--sand-100);
}

.about-note strong {
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.2;
}

.about-note span {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-published-date {
  color: var(--green-700);
  font-weight: 800;
}

.about-telegram-cta {
  margin-top: 36px;
  margin-bottom: 24px;
}

.about-buttons {
  margin-bottom: 0;
}

.about-comments {
  display: none;
  margin-top: 34px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

@media (max-width: 680px) {
  .about-intro-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-photo {
    max-width: 240px;
  }

  .about-lead-text p {
    font-size: 18px;
  }

  .about-comments {
    padding: 22px;
    border-radius: 22px;
  }
}
/* Mobile header collision guard */
.site-header .site-logo {
  min-width: 0;
}

.site-header .site-logo-text {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  letter-spacing: 0;
}

.site-header .header-actions {
  min-width: max-content;
}

@media (max-width: 640px) {
  .site-header .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
  }

  .site-header .header-brand {
    overflow: hidden;
  }

  .site-header .site-logo {
    max-width: 100%;
    gap: 8px;
  }

  .site-header .site-logo-image {
    width: clamp(40px, 9vw, 50px);
    height: clamp(40px, 9vw, 50px);
  }

  .site-header .site-logo-text,
  .site-logo-text {
    font-size: clamp(30px, 7.2vw, 38px);
    line-height: 0.98;
  }

  .site-header .header-actions {
    justify-self: end;
  }

  .site-header .header-actions .language-links {
    display: inline-flex;
    gap: 0;
  }

  .site-header .header-actions .language-links a {
    height: 28px;
    padding: 0 5px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    justify-self: end;
  }
}

@media (max-width: 390px) {
  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 6px;
  }

  .site-header .header-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header .header-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
}



