/**
 *	MIXIN: RANGE
 *
 *	@version 1.1
 *	@date    2026-03-11
 *	@author  michael@mdg.agency
 *
 *	This SASS mixin creates a media query for one or more predefined ranges of
 *	screen widths. It requires a map of named ranges with min and/or max values (in
 *	pixels). Example:
 *
 *		$ranges: (
 *			small:   (max: 500),
 *			medium:  (min: 501, max: 768),
 *			large:   (min: 769)
 *		);
 *
 *	Bootstrap ranges are created by default, but may be overwritten in your
 *	stylesheet after this file is included. It was designed to be used on documents
 *	with at least one finite range (with both min and max), but should work equally
 *	well with a mobile-first design.
 *
 *	Use examples:
 *
 *		@include range.query(small) { ... }
 *
 *		@include range.query(small, medium) { ... }
 *
 *		@include range.query(medium, large) { ... }
 *
 *		@include range.query(alpha, bravo, charlie) { ... }
 *
 *	Argument order does not matter. The ranges are merged inclusively, meaning each
 *	included range can only expand the total scope of the final media query, not
 *	contract it. This means that if ANY included range has a "null" max or min, the
 *	final media query will not have a max-width or min-width constraint,
 *	respectively. It also means that if there are gaps between the included ranges,
 *	they will be ignored, since both min and max will have been provided.
 *
 *	A more sophisticated version of this mixin would detect gaps in the included
 *	ranges and output multiple media queries.

*/
:root :where(.wp-block-button .wp-block-button__link) {
  border-radius: 999px;
  background-color: var(--wp--context--button-base-color);
  color: var(--wp--context--button-text-color);
}
:root :hover:where(.wp-block-button .wp-block-button__link) {
  background-color: var(--wp--context--button-hover-color);
  color: var(--wp--context--button-text-color);
}
:root :where(.wp-block-button .wp-block-button__link) {
  font-family: inherit;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  padding-block: 0.75em;
  padding-inline: 2em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  :root :where(.wp-block-button .wp-block-button__link) {
    transform: scale(1);
  }
  :root :hover:where(.wp-block-button .wp-block-button__link) {
    transform: scale(1.05);
  }
  :root :where(.wp-block-button .wp-block-button__link) {
    transition: transform 0.2s;
  }
}
:root .is-style-outline :where(.wp-block-button .wp-block-button__link) {
  border: 2px solid currentColor;
  background-color: transparent;
  --wp--context--button-text-color: var(--wp--context--foreground-color);
  --wp--context--button-hover-color: var(--wp--context--foreground-color);
  --wp--context--button-base-color: var(--wp--context--foreground-color);
}

body.block-editor-iframe__body .main-inner {
  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;
  padding-block: calc(2 * var(--wp--context--gap));
  padding-inline: var(--wp--context--gap);
  container-type: inline-size;
}

.editor-styles-wrapper .mdg-block-editor-placeholder {
  border: 2px dashed var(--wp--custom--color--neutral);
  padding: 1rem;
  position: relative;
}
.is-style-neutral .editor-styles-wrapper .mdg-block-editor-placeholder, .editor-styles-wrapper .is-style-neutral .mdg-block-editor-placeholder {
  border-color: color-mix(in srgb, var(--wp--custom--color--neutral), var(--wp--custom--color--black) 50%);
}

.editor-styles-wrapper .mdg-block-editor-placeholder-text {
  text-transform: uppercase;
  font-weight: bold;
  font-family: monospace;
}

.editor-styles-wrapper .mdg-block-editor-label {
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  padding: 0.5em;
  font-size: 0.75rem;
  line-height: 1;
  background-color: #888;
  color: white;
  font-weight: normal;
  text-transform: uppercase;
}

body {
  --wp--context--background-color: var(--wp--custom--context--default--background-color);
  --wp--context--foreground-color: var(--wp--custom--context--default--foreground-color);
  --wp--context--muted-color: color-mix( in srgb, var(--wp--context--foreground-color), var(--wp--context--background-color) 33% );
  --wp--context--faint-color: color-mix( in srgb, var(--wp--context--foreground-color), var(--wp--context--background-color) 80% );
  --wp--context--heading-text-color: var(--wp--custom--context--default--heading-text-color);
  --wp--context--link-text-color: var(--wp--custom--context--default--link-text-color);
  --wp--context--link-hover-color: var(--wp--custom--context--default--link-hover-color);
  --wp--context--link-text-decoration: var(--wp--custom--context--default--link-text-decoration);
  --wp--context--button-base-color: var(--wp--custom--context--default--button-base-color);
  --wp--context--button-hover-color: var(--wp--custom--context--default--button-hover-color);
  --wp--context--button-text-color: var(--wp--custom--context--default--button-text-color);
  --wp--context--button-hover-text-color: var(--wp--custom--context--default--button-hover-text-color);
  --wp--context--input-background-color: var(--wp--custom--context--default--input-background-color);
  --wp--context--input-foreground-color: var(--wp--custom--context--default--input-foreground-color);
  --wp--context--input-border-color: var(--wp--custom--context--default--input-border-color);
  background-color: var(--wp--context--background-color);
  color: var(--wp--context--foreground-color);
}
@media screen and (min-width: 768px) {
  body {
    --wp--context--gap: var(--wp--custom--spacing--gap--normal);
  }
}
@media screen and (max-width: 767px) {
  body {
    --wp--context--gap: var(--wp--custom--spacing--gap--mobile);
  }
}
body {
  --wp-admin-bar-height: 0px;
}
@media screen and (min-width: 768px) {
  body.admin-bar {
    --wp-admin-bar-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  body.admin-bar {
    --wp-admin-bar-height: 46px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body:not(.editor-styles-wrapper) {
  background-color: var(--wp--custom--color--black);
}

@media screen and (max-width: 767px) {
  body .is-layout-flow > .alignleft,
  body .is-layout-flow > .alignright {
    float: none;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
}

a {
  transition: color 0.2s;
}

.hide {
  display: none !important;
  opacity: 0.33;
}
.editor-styles-wrapper .hide {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.main {
  margin: 0;
  padding: 0;
  --wp--context--background-color: var(--wp--custom--context--default--background-color);
  --wp--context--foreground-color: var(--wp--custom--context--default--foreground-color);
  --wp--context--muted-color: color-mix( in srgb, var(--wp--context--foreground-color), var(--wp--context--background-color) 33% );
  --wp--context--faint-color: color-mix( in srgb, var(--wp--context--foreground-color), var(--wp--context--background-color) 80% );
  --wp--context--heading-text-color: var(--wp--custom--context--default--heading-text-color);
  --wp--context--link-text-color: var(--wp--custom--context--default--link-text-color);
  --wp--context--link-hover-color: var(--wp--custom--context--default--link-hover-color);
  --wp--context--link-text-decoration: var(--wp--custom--context--default--link-text-decoration);
  --wp--context--button-base-color: var(--wp--custom--context--default--button-base-color);
  --wp--context--button-hover-color: var(--wp--custom--context--default--button-hover-color);
  --wp--context--button-text-color: var(--wp--custom--context--default--button-text-color);
  --wp--context--button-hover-text-color: var(--wp--custom--context--default--button-hover-text-color);
  --wp--context--input-background-color: var(--wp--custom--context--default--input-background-color);
  --wp--context--input-foreground-color: var(--wp--custom--context--default--input-foreground-color);
  --wp--context--input-border-color: var(--wp--custom--context--default--input-border-color);
  background-color: var(--wp--context--background-color);
  color: var(--wp--context--foreground-color);
}
@media screen and (min-width: 768px) {
  .main {
    flex: 1;
  }
}
.editor-styles-wrapper .main {
  margin-top: 0;
}

.wp-block-image .wp-element-caption {
  font-size: var(--wp--preset--font-size--30);
  color: var(--wp--context--muted-color);
}

@media screen and (max-width: 767px) {
  .wp-block-column[style*="--wp--preset--spacing"] {
    padding-left: var(--wp--context--gap) !important;
    padding-right: var(--wp--context--gap) !important;
  }
}

p.is-style-subtitle {
  margin-block-start: max(0.5rem, var(--wp--context--gap) / 2);
  font-weight: 700;
}

p.is-style-supertitle {
  color: var(--wp--context--heading-text-color);
  font-size: smaller;
}
p.is-style-supertitle + h1,
p.is-style-supertitle + h2,
p.is-style-supertitle + h3,
p.is-style-supertitle + h4,
p.is-style-supertitle + h5,
p.is-style-supertitle + h6 {
  margin-block-start: max(0.5rem, var(--wp--context--gap) / 2);
}

p.is-style-flush {
  margin-block-start: 0;
}

p.is-style-narrow {
  margin-inline: auto;
  max-width: 60ch;
}

ul.is-style-no-bullets,
ol.is-style-no-bullets {
  list-style-type: none;
}

ul.is-style-wide li + li,
ol.is-style-wide li + li {
  margin-block-start: var(--wp--context--gap);
}

ul.is-style-columns,
ol.is-style-columns {
  -moz-columns: auto 12em;
       columns: auto 12em;
  -moz-column-gap: var(--wp--context--gap);
       column-gap: var(--wp--context--gap);
}

@media screen and (max-width: 767px) {
  .wp-block-columns.is-style-mobile-reverse {
    flex-direction: column-reverse;
  }
}

.wp-block-image.is-style-rounded-corners img {
  border-radius: 8px;
}

.wp-block-image.is-style-full-width {
  display: block;
  width: 100%;
}
.wp-block-image.is-style-full-width img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-image.is-style-full-width img[style*="object-fit:contain"] {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.wp-block-columns.is-style-space-around {
  justify-content: space-around;
}

.wp-block-columns.is-style-center {
  justify-content: center;
}

.wp-block-column.is-style-full-cover-image {
  position: relative;
}
@media screen and (min-width: 768px) {
  .wp-block-column.is-style-full-cover-image {
    --column-spacing-top: calc( -1 * var(--section-content-spacing-top) );
    --column-spacing-bottom: calc( -1 * var(--section-content-spacing-bottom) );
  }
}
@media screen and (max-width: 767px) {
  .wp-block-column.is-style-full-cover-image {
    min-height: clamp(0px, 50vw, 50vh);
    --column-spacing-top: calc( -1 * var(--section-content-spacing-top) );
    --column-spacing-bottom: var(--wp--context--gap);
    /*&:first-child {
    	--column-spacing-top: calc( -1 * var(--section-content-spacing-top) );
    	--column-spacing-bottom: 0;
    }
    &:last-child {
    	--column-spacing-top: 0;
    	--column-spacing-bottom: calc( -1 * var(--section-content-spacing-bottom) );
    }*/
  }
}
.wp-block-column.is-style-full-cover-image .components-resizable-box__container,
.wp-block-column.is-style-full-cover-image .wp-block-image {
  position: absolute;
  width: 100%;
  margin: 0;
  top: var(--column-spacing-top);
  bottom: var(--column-spacing-bottom);
}
.wp-block-column.is-style-full-cover-image .components-resizable-box__container img,
.wp-block-column.is-style-full-cover-image .wp-block-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-block-column.is-style-full-cover-image .components-resizable-box__container {
  width: 100% !important;
  height: 100% !important;
}

.wp-block-column.is-style-stretch-contents {
  display: flex;
  align-items: stretch;
}
.wp-block-column.is-style-stretch-contents > * {
  flex: 1;
}

.wp-block-quote.is-style-full-width {
  padding: 0;
  margin-inline: 0;
}

.wp-block-accordion-item {
  padding: var(--wp--context--gap);
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .wp-block-table > table {
    font-size: smaller;
    overflow-x: auto;
  }
}
.wp-block-table > table th, .wp-block-table > table td {
  padding: var(--wp--context--gap);
}
.wp-block-table > table thead {
  background-color: var(--wp--custom--color--blue);
  border-bottom: none;
}
.wp-block-table > table thead th {
  border-color: var(--wp--custom--color--blue);
  color: var(--wp--custom--color--white);
  text-transform: uppercase;
  font-weight: 400;
}
.wp-block-table > table thead th:not(:first-child) {
  text-align: center;
}
.wp-block-table > table td {
  border-color: var(--wp--custom--color--gray-border);
}
.wp-block-table > table td:first-child {
  color: #6B6B6B;
}
.wp-block-table > table td:not(:first-child) {
  text-align: center;
}
.wp-block-table > table tbody tr:nth-child(even) {
  background-color: var(--wp--custom--color--gray);
}
.wp-block-table > table .pricing-subhead {
  display: block;
  font-size: smaller;
}
.wp-block-table > table td:has(.fa-check) {
  font-size: 1.5rem;
  color: var(--wp--custom--color--green);
}
.wp-block-table > table td:has(.fa-times) {
  font-size: 1.5rem;
  color: var(--wp--custom--color--red);
}

.offset-left {
  position: relative;
  left: -2rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--wp--context--gap);
}
.board-grid img {
  display: block;
  margin-inline: auto;
}
.board-grid .board-item {
  text-align: center;
  font-size: smaller;
}
.board-grid .board-name {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-block: 1em 0.5em;
  color: var(--wp--context--heading-text-color);
}
.board-grid .board-title {
  display: block;
  font-style: italic;
}
.board-grid .board-org {
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes growIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shrinkIn {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shiftInLeft {
  0% {
    opacity: 0;
    transform: translateX(-0.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shiftInRight {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shiftInUp {
  0% {
    opacity: 0;
    transform: translateY(0.5em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shiftInDown {
  0% {
    opacity: 0;
    transform: translateY(-0.5em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.components-popover.block-editor-block-popover {
  z-index: var(--wp--custom--z--wp-interface);
}

#gform_wrapper_1 {
  padding: 1em;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
}
#gform_wrapper_1 .gform-field-label:not(.gform-field-label--type-inline) {
  font-weight: bold !important;
}
#gform_wrapper_1 .gform_button {
  font-weight: bold !important;
  border-radius: 999px !important;
  text-transform: uppercase !important;
}
#gform_wrapper_1 .gform_button:hover {
  background-color: var(--wp--context--button-hover-color);
}

.attachment-preview {
  padding: var(--wp--context--gap);
}