html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  color: #333;
}

#container {
  width: min(980px, 100%);
  overflow: hidden;
}

#logo {
  box-sizing: border-box;
}

#logo a {
  display: inline-block;
}

#logo a:focus-visible {
  outline: 3px solid #5c8526;
  outline-offset: 3px;
}

#introduction {
  min-height: 58px;
  box-sizing: border-box;
  line-height: 1.45;
}

#main {
  clear: both;
}

#main #categories h1 {
  font-size: 24px;
  line-height: 1.25;
}

#main #categories ul {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(5, 152px);
  justify-content: space-between;
  gap: 0;
  height: auto;
  min-height: 220px;
}

#main #categories ul li.post {
  float: none;
  margin: 10px 0;
}

#main #categories ul li.post .text_cover {
  cursor: default;
}

#main #categories ul li.post img {
  display: block;
  width: 150px;
  height: 200px;
  object-fit: cover;
}

#footer #pages div.page {
  line-height: 1.55;
}

@media (max-width: 980px) {
  #container {
    box-shadow: none;
  }

  #main #categories ul {
    grid-template-columns: repeat(auto-fit, 152px);
    justify-content: center;
    gap: 20px 30px;
    padding: 10px 20px;
  }
}
