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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  background: #f6f7f9;
  line-height: 1.5;
}

a {
  color: #0b5fff;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: #0f2d1f;
  color: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
}

.lang-switch__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.lang-switch__link.is-active,
.lang-switch__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-main {
  flex: 1;
  padding: 2rem 0;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1.25rem 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.page-content h1,
.object-list-page__search-title {
  margin-top: 0;
}

.page-lead {
  font-size: 1.1rem;
  color: #4b5563;
}
