html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.wp-site-blocks {
  min-height: 100vh;
}

/* Header */

.ml-site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4ded4;
}

.ml-sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.admin-bar .ml-sticky-header {
  top: 32px;
}

.ml-header-inner {
  gap: 1.5rem;
}

.ml-header-brand {
  gap: 0.85rem;
}

.ml-site-header .wp-block-site-title {
  margin: 0;
  font-weight: 600;
}

.ml-site-header .wp-block-site-title a {
  text-decoration: none;
}

.ml-site-header .wp-block-navigation {
  gap: 1.2rem;
}

.ml-site-header .wp-block-navigation a {
  text-decoration: none;
}

.ml-site-header .wp-block-navigation__submenu-container {
  border: 1px solid #e4ded4;
}

/* Footer */

.ml-site-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: #f6f4ef;
  border-top: 1px solid #e4ded4;
}

/* Content */

.ml-article-section {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.ml-intro {
  font-size: 1.16rem;
  line-height: 1.75;
}

.ml-box {
  padding: 1.5rem;
  background: #f6f4ef;
  border: 1px solid #e4ded4;
}

.ml-center-image {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ml-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Mobile */

@media (max-width: 782px) {
  .admin-bar .ml-sticky-header {
    top: 46px;
  }

  .ml-article-section {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}