@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  min-height: 100vh;
}

body {
  font-family: "Graphik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1f2a36;
  background-color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Graphik", inherit;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: rgb(75, 85, 99);
  transition: color 0.2s ease-in-out;
}

h1 {
  width: 75%;
  font-size: 2rem;
  font-weight: 400;
}
h1.smaller {
  font-size: 81.25%;
  font-weight: 500;
}

h2 {
  font-size: var(--wp--preset--font-size--xlarge);
  line-height: 1.4285;
  font-weight: 500;
}
h2.smaller {
  font-size: 85.714%;
  font-weight: 500;
}

h3 {
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 500;
}

h4 {
  font-size: var(--wp--preset--font-size--base);
  font-weight: 400;
}

h5 {
  font-size: var(--wp--preset--font-size--base);
  font-weight: 500;
}

h6 {
  font-size: var(--wp--preset--font-size--small);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #2563eb;
  text-decoration: none;
  text-underline-offset: 0.1rem;
}
a:hover {
  opacity: 90%;
}

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

strong {
  font-weight: 500;
}

.container {
  max-width: 1280px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.container > h2, .container > h3, .container > h4, .container > h5, .container > h6 {
  width: 80%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.container > h4 {
  margin-bottom: 2rem;
}
.container > p {
  max-width: 1000px;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
}
.container ul:not(.menu) {
  padding-left: 1rem;
  list-style-type: disc;
}
.container ul:not(.menu) li {
  margin-bottom: 0.5rem;
}

.single-post article {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.single-post article header + p > em {
  margin: 0 0 2rem;
  font-size: 14px;
}
.single-post article header + p + p > strong,
.single-post article header + p > strong {
  display: block;
  max-width: 90%;
  margin: 4rem 0;
  font-weight: 500;
}
.single-post article a {
  color: #00a86a;
}
.single-post article a:hover {
  text-decoration: underline;
}
.single-post article h1 a {
  color: #1f2a36;
}
.single-post article h1 a:hover {
  color: rgb(49.6, 67.2, 86.4);
  text-decoration: none;
}
.single-post article h2 {
  font-size: 20px;
}
.single-post article sup.fn {
  font-family: monospace;
  font-size: 0.75rem;
  background-color: #00a86a;
  padding: 1px 2px;
  margin-left: 2px;
  border-radius: 2px;
}
.single-post article sup.fn a {
  color: white;
}
.single-post .post-navigation a:hover {
  color: rgb(49.6, 67.2, 86.4);
  text-decoration: none;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.btn:hover {
  background-color: rgb(20.5714285714, 84.3428571429, 224.2285714286);
  text-decoration: none;
}
.btn--secondary {
  background-color: #00a86a;
}
.btn--secondary:hover {
  background-color: rgb(0, 151.2, 95.4);
}
.btn--outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.btn--outline:hover {
  background-color: #2563eb;
  color: white;
}

.card {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.card__body {
  padding: 1.5rem;
}
.card__footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.nav-menu li {
  margin: 0;
}
.nav-menu a {
  color: #1f2a36;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
}
.nav-menu a:hover {
  color: #2563eb;
  text-decoration: none;
}

.secondary-menu li a {
  color: black;
}
.secondary-menu li a:hover {
  text-decoration: none;
}

.secondary-menu li::after {
  content: "|";
  margin: 0 8px; /* Adjust spacing as needed */
}

.secondary-menu li:last-child::after {
  content: ""; /* Remove separator for the last item */
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio – adjust as needed */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site-header {
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
.site-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}
.site-header .site-title a {
  color: #1f2a36;
  text-decoration: none;
}
.site-header .site-title a:hover {
  color: #2563eb;
  text-decoration: none;
}
.site-header .main-navigation {
  display: none;
}
@media (min-width: 768px) {
  .site-header .main-navigation {
    display: block;
  }
}

.site-main {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.site-footer {
  background-color: #00a86a;
  color: white;
  padding: 3rem 0;
}
.site-footer a {
  color: white;
}
.site-footer a:hover {
  color: rgb(80.6, 130.2, 239);
}
.site-footer .footer-content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.post-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.single-post {
  margin: 0 auto;
}
.single-post .post-header {
  margin-bottom: 2rem;
}
.single-post .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.single-post .post-content {
  line-height: 1.8;
}
.single-post .post-content img {
  margin: 1.5rem 0;
}

/**
 * WordPress Block Styling
 */
/* 2-column Block Styling */
.wp-block-columns {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}
.wp-block-columns h2,
.wp-block-columns h3,
.wp-block-columns h4 {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.wp-block-columns.is-layout-flex {
  gap: 0;
}
.wp-block-columns .wp-block-column {
  padding: 0 4rem;
  border-right: 1px solid #707070;
}
.wp-block-columns .wp-block-column:first-child {
  flex-basis: calc(50% + 2rem) !important;
  padding-left: 2rem;
  margin-left: -2rem;
  border-left: 1px solid #707070;
}
.wp-block-columns .wp-block-column:last-child {
  flex-basis: calc(50% + 2rem) !important;
  padding-right: 2rem;
  margin-right: -2rem;
}

/* Embed Block Styling (for YouTube, Vimeo, etc.) */
.wp-block-embed {
  width: 100%;
  max-width: 800px;
  padding: 5rem 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.wp-block-embed .wp-block-embed__wrapper {
  width: 800px;
  max-width: 100%;
  position: relative;
}
.wp-block-embed .wp-block-embed__wrapper iframe {
  width: 100%;
  height: auto;
  max-width: 800px;
  aspect-ratio: 16/9;
}
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  aspect-ratio: 16/9;
  width: 800px;
  max-width: 100%;
}
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe {
  aspect-ratio: 4/3;
  width: 800px;
  max-width: 100%;
}
.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe {
  aspect-ratio: 1/1;
  width: 800px;
  max-width: 100%;
}
.wp-block-embed figcaption {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f2a36;
}

ol.wp-block-footnotes {
  font-size: 14px;
  list-style: number;
  padding-left: 2ch;
}
ol.wp-block-footnotes li {
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

h2.wp-block-heading {
  margin: 4rem auto 1rem;
}

.wp-block-image {
  max-width: 800px;
  margin: 4rem auto;
  display: table;
}
.wp-block-image img {
  display: table-row;
  width: 100%;
  height: auto;
  max-width: 800px;
  max-height: 640px;
  object-fit: contain;
}
.wp-block-image figcaption {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0.5rem 0 0;
  display: table-caption;
  caption-side: bottom;
}

.wp-block-list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  list-style: number;
  padding-left: 2ch;
}
.wp-block-list li {
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.wp-block-media-text {
  margin: 10rem 0;
  overflow: hidden;
  max-height: 536px;
  gap: 8rem;
  grid-template-columns: 1fr 1fr;
}
.wp-block-media-text.has-media-on-the-right {
  grid-template-columns: 1fr 1fr;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  margin-left: auto;
}
.wp-block-media-text .wp-block-media-text__media {
  max-width: 536px;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-block-media-text .wp-block-media-text__media img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}
.wp-block-media-text .wp-block-media-text__content {
  width: 100%;
  max-width: 536px;
  padding: 12% 6%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.wp-block-media-text .wp-block-media-text__content p {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pull Quote Block Styling */
.wp-block-pullquote {
  width: 100%;
  max-width: 42rem;
  padding: 5rem 0;
  margin-left: auto;
  margin-right: auto;
  border: none;
  color: #00a86a;
  background: transparent;
}
.wp-block-pullquote .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.wp-block-pullquote > * {
  margin: 0 auto;
  text-align: center;
}
.wp-block-pullquote p,
.wp-block-pullquote blockquote p {
  margin-bottom: 0.25rem;
  font-size: 1.875rem;
  line-height: 1.375;
  color: inherit;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote .wp-block-quote__citation {
  color: inherit;
  font-size: 20px;
  font-style: normal;
  margin-top: 0.25rem;
  display: block;
}
.wp-block-pullquote:before, .wp-block-pullquote:after {
  display: none;
}

/* Video Block Styling */
.wp-block-video {
  padding: 5rem 0;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.wp-block-video video,
.wp-block-video iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  height: auto;
}
.wp-block-video > * {
  width: 800px;
  max-width: 100%;
}

.technical-features-block .accordion details {
  max-height: 3.8rem; /* Set a max-height value just enough to show the summary */
  overflow: hidden;
  transition: max-height 500ms ease;
}
.technical-features-block .accordion details[open] {
  max-height: 100vh; /* Set a max-height value enough to show all the content */
}
.technical-features-block .accordion .details-content p {
  margin-bottom: 0.5rem;
}
.technical-features-block .accordion .details-content table th,
.technical-features-block .accordion .details-content table td {
  vertical-align: top;
}

body.page-id-327 .vm-custom-block,
body.page-id-338 .vm-custom-block {
  position: relative; /* allow absolutely-positioned badge */
}

body.page-id-327 .vm-custom-block::before,
body.page-id-338 .vm-custom-block::before {
  content: attr(data-block-name);
  position: absolute;
  top: -2.5em;
  left: 0.5em;
  background: rgba(0, 155, 0, 0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.2em 0.5em;
  border-radius: 0.25em;
  pointer-events: none; /* so it doesn’t block clicks */
  z-index: 10;
}

/*# sourceMappingURL=main.css.map */
