:root {
  --brand: #697078;
  --text: #697078;
  --font: "museo-sans", sans-serif;
  --max: 1024px;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: #fafafa;
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

main {
  flex: 1 0 auto;
}

.page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 56px;
  height: 56px;
}

.brand__title {
  margin: 0;
  color: var(--text);
  line-height: 1.15;
  font-weight: 600;
}

.site-header__right img {
  display: block;
  max-width: 84px;
  height: auto;
}

.hero {
  padding: 0;
}

.hero__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.hero__headline {
  margin: 0 0 10px;
  font-size: 20px;
}

.news {
  margin: 0;
  padding-left: 18px;
}

.news li {
  margin: 6px 0;
}

.hero__media {
  background: #111;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 320px;
}

.lang-section {
  padding: 8px 0 20px;
}

.lang-section__title {
  margin: 18px 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.lng-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}

.lng-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.lng-item:hover,
.lng-item:focus {
  background: #f5f5f5;
  outline: none;
}

.lng-item img {
  width: 40px;
  height: 40px;
  margin: 0;
  flex: 0 0 auto;
}

.lng-item span {
  font-weight: 500;
}

.site-footer {
  background: #001489;
  color: #fff;
  margin-top: auto;
}

.site-footer a {
  color: inherit;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-footer__inner a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer__logo {
  display: block;

  filter: brightness(0) invert(1);
}

.site-footer__copyright {
  margin: 0;
  font-size: 13px;
  opacity: 1;
  text-align: right;
}

@media (max-width: 520px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__copyright {
    text-align: left;
  }
}
