/*!***************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/scss/child-blocks.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************/
/* 
From: https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
Note - link at bottom of article describing how fluid typography using clamp and vw units messes up the user's ability to zoom in on text. 
This would make the make the site fail WCAG 1.4.4 Resize Text. So only use this for big headings and not for body text. 
*/
:root {
  --min-breakpoint: rem(760px);
  --max-breakpoint: rem(1920px);
}
/* 
Example using function: font-size: fluid(16px, 31px);  -- uses set min and max breakpoints above
font-size: fluid(16px, 31px, 320px, 960px); -- uses custom min and max breakpoints
*/
.header-logo-link a {
  color: inherit !important;
  text-decoration: none;
}
.header-logo-link a:hover, .header-logo-link a:focus {
  color: var(--wp--preset--color--white) !important;
}
/*** Change columns Breakpoint from 781 to 1100 ***/
@media (min-width: 68.75rem) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-grow: 1 !important;
  }
}
@media (max-width: 68.75rem) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) {
    flex-wrap: wrap !important;
  }
}
/*** END: Change columns Breakpoint from 781 to 1100 ***/

/*# sourceMappingURL=child-blocks.css.map*/