/*
 * This controls theme colors
 * Bootstrap will generate classes like btn-color-1, btn-black, text-color-1, bg-color-1, etc.
 * The classes can then be used across the site without repeating code
 */
/*
 * Do a sitewide search (CTRL + SHIFT + F if you're using Sublime Text or whatever your coding GUI has for a search in all files)
 * to see where these variables are used in the SASS code. They're all Bootstrap variables that control certain aspects of elements
 */
/**
 * Bootstrap removes the margin-left/right over the sm breakpoint and if we set it customly afterwards, it breaks the centered modal since it's no longer margin: auto.
 * We also can't remove this one because the value is used in a min-height calculation and removing causes the modal to go haywire on mobile
 * So set it at 15px and then after the sm breakpoint when it gets set to auto, add extra padding as need on .modal-dialog
 *
 * LE: messing with custom margins / paddings and modal-dialog is too much fuss. Simply ignore
 */
.block-blog-header {
  padding-top: clamp(1.875rem, 4.6948356808vw + 0.7746478873rem, 5rem);
  padding-bottom: clamp(1.875rem, 4.6948356808vw + 0.7746478873rem, 5rem);
}
@media (max-width: 575.98px) {
  .block-blog-header .col-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .block-blog-header .col-media {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.block-blog-header .theme-box {
  background: var(--bs-color-1);
  opacity: 0.75;
}
.block-blog-header .wp-block-heading {
  padding-bottom: 0;
  border-bottom: 0;
}
.block-blog-header .post-title {
  margin-bottom: clamp(0.625rem, 1.4084507042vw + 0.2948943662rem, 1.5625rem);
  line-height: 1;
  font-size: clamp(1.25rem, 1.25rem + (1vw - 0.36rem) * 0.694, 1.625rem); /* 20px - 26px */
}
.block-blog-header .post-meta {
  line-height: 1.6;
}