﻿:root {
  --olive-dark: #6f7f2f;
  --olive: #8fa44b;
  --olive-soft: #d8e2b8;
  --sand: #f6f1e4;
  --text: #2f2f2f;
  --link: #6b8126;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(#e4d9c0, #efe7d4 200px, #f6f1e4);
  color: var(--text);
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.site {
  width: 762px;
  margin: 0 auto;
  background: #fff;
  border-left: 1px solid #c9c0a7;
  border-right: 1px solid #c9c0a7;
  min-height: 100vh;
}

.topbar {
  min-height: 83px;
  background: linear-gradient(90deg, #7b8f35 0%, #8ea64b 55%, #9fb866 100%);
  border-bottom: 4px solid #d8c79b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
}

.brand {
  font-size: 28px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 1px;
}

.tagline {
  font-size: 13px;
  max-width: 380px;
  text-align: right;
}

.layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

.sidebar {
  background: #f0ead9;
  border-right: 1px solid #ddd3bb;
  padding: 16px 0;
}

.menu-title {
  margin: 0 14px 12px;
  font-size: 12px;
  color: #6c6c6c;
  text-transform: uppercase;
}

.menu a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #8ea54a, #7e933f);
  border-top: 1px solid #9eb560;
  border-bottom: 1px solid #6f812f;
  font-size: 13px;
}

.menu a + a {
  margin-top: 1px;
}

.menu a.active {
  background: linear-gradient(180deg, #64752b, #5b6927);
}

.content {
  padding: 22px 22px 30px;
  background: #fff;
}

h1 {
  margin: 0 0 14px;
  color: #5b6e21;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  color: #5b6e21;
  font-size: 19px;
  margin: 22px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: var(--link);
}

p {
  margin: 0 0 12px;
}

.notice {
  margin: 16px 0;
  padding: 10px 12px;
  background: var(--sand);
  border-left: 4px solid var(--olive);
}

.news-item {
  padding: 12px 0;
  border-bottom: 1px solid #e5dcc8;
}

.news-date {
  color: #245593;
  font-weight: 700;
}

.footer {
  border-top: 1px solid #ddd3bb;
  background: #f4eedf;
  padding: 14px 18px;
  font-size: 12px;
  color: #6d6d6d;
}

@media (max-width: 820px) {
  .site {
    width: 100%;
    border: none;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid #ddd3bb;
  }

  .tagline {
    display: none;
  }
}
