.page-hero-strip {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.6) 50%, rgba(2, 6, 23, 0.88) 100%),
    url('/images/decorative/decor_8.webp') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.page-hero-strip h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text);
  text-align: center;
  max-width: 700px;
}

.article-columns {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.article-main h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin: 28px 0 12px;
}

.article-main h2:first-of-type {
  margin-top: 0;
}

.article-main p {
  color: var(--secondary);
  margin-bottom: 14px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.article-sidebar {
  align-self: start;
}

.sidebar-gauge {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(20, 184, 166, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.15);
}

.sidebar-gauge span {
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  color: var(--primary);
}

.sidebar-gauge p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

.sidebar-facts {
  padding: 20px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.sidebar-facts h3 {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-facts ul {
  list-style: none;
}

.sidebar-facts li {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .article-columns {
    grid-template-columns: 1fr;
  }

  .page-hero-strip {
    overflow: hidden;
  }
}

@media (max-width: 375px) {
  .page-hero-strip {
    max-width: 100%;
    overflow: hidden;
  }
}
