/*
 * 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-banner {
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
}
.block-banner .container {
  position: relative;
  z-index: 9;
}
.block-banner .content > * {
  margin-bottom: clamp(0.9375rem, 0.4694835681vw + 0.8274647887rem, 1.25rem);
}
.block-banner .content > p:has(+ .block-rating), .block-banner .content > ul:has(+ .block-rating) {
  margin-bottom: 35px;
}
.block-banner .video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%; /* todo ... 0 or 100? */
  /*padding-bottom: 56.25%;*/
  /*overflow:hidden;*/
}
.block-banner .video video {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  object-position: center center;
  /*background-size: auto 100%;*/
}

.banner-small {
  min-height: clamp(12.5rem, 12.20657277vw + 9.639084507rem, 20.625rem);
}
.banner-small .wp-block-heading {
  margin-bottom: 15px;
}

.banner-medium {
  min-height: clamp(12.5rem, 19.2488262911vw + 7.988556338rem, 25.3125rem);
}
.banner-medium .wp-block-heading {
  margin-bottom: 15px;
}

.banner-big {
  min-height: clamp(19.6875rem, 19.2488262911vw + 15.176056338rem, 32.5rem);
}