/*
 * The handful of rules WordPress needs on top of the site stylesheet:
 * the honeypot field, the form result notice, pagination and the classes
 * the editor puts on images and captions.
 */

.plant-hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form__note {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.form__note--ok {
  background: rgba(58, 122, 62, 0.12);
  color: #2f5f33;
}

.form__note--bad {
  background: rgba(196, 88, 32, 0.12);
  color: #9c4418;
}

.navigation.pagination {
  margin-top: 48px;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
  opacity: 1;
}

.navigation.pagination .page-numbers.dots {
  border-color: transparent;
}

/* Images and captions inserted through the editor. */
.prose figure {
  margin: 32px 0;
}

.prose figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.prose figcaption {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

.prose .alignleft {
  float: left;
  margin: 6px 28px 20px 0;
  max-width: 50%;
}

.prose .alignright {
  float: right;
  margin: 6px 0 20px 28px;
  max-width: 50%;
}

.prose .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.prose .wp-caption {
  max-width: 100%;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.admin-bar .nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .nav {
    top: 46px;
  }
}
