/* Block style */
html {
  scroll-behavior: smooth;
}

#primary :target::before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

.anchor-block-container {
  padding: 1.5rem 2rem;
  background-color: #e6f1c5;
  margin: 1rem 0;
}
.anchor-block-container .anchor-block-title {
  margin: 0;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #333;
}
.anchor-block-container .anchor-block-links {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.anchor-block-container .anchor-block-links li:not(:last-of-type) {
  border-bottom: 1px solid #d7e7a7;
}
.anchor-block-container .anchor-block-links li {
  margin: 0;
  padding: 0.6em 0;
  display: flex;
}
.anchor-block-container .anchor-block-links li a {
  text-decoration: none;
  cursor: pointer;
  color: #333;
  font-style: normal;
  font-size: 1rem;
}
.anchor-block-container .anchor-block-links li:hover a {
  color: #45722C;
}
.anchor-block-container .anchor-block-links li:hover::before {
  margin-top: 3px;
}
.anchor-block-container .anchor-block-links li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' viewBox='0 0 16 16'%3E%3Cpath fill='%234c7f31' d='m14 8-1.1-1.1-4.2 4.2V2H7.2v9.1L3.1 6.9 2 8l6 6 6-6z'/%3E%3C/svg%3E");
  margin-left: 0;
  margin-right: 10px;
  max-height: 16px;
  transition: all 0.2s ease-in-out;
}
