/* Bulma config */
:root {
  --bulma-primary-h: 358deg;
  --bulma-primary-s: 85%;
  --bulma-primary-l: 52%;
  --bulma-link-h: 358deg;
  --bulma-link-s: 85%;
  --bulma-link-l: 40%;
  --bulma-link-on-scheme-l: 40%;
  --bulma-info-h: 217deg;
  --bulma-info-s: 71%;
}

/* primary accent line for headings */
section .title,
.content h2,
.hero-body .is-fluid-1 {
  position: relative;
  padding-bottom: 1rem;
}

section .title::after,
.content h2::after,
.hero-body .is-fluid-1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 4px;
  background: var(--bulma-primary);
  border-radius: 2px;
}

.has-text-centered .title::after,
.has-text-centered .content h2::after,
.has-text-centered .hero-body .is-fluid-1::after {
  left: 50%;
  transform: translateX(-50%);
}

.columns > .column.is-full {
  padding-left: 0;
  padding-right: 0;
}

/* home page HERO banner */
.hero-img,
.hero-gradient {
  background: linear-gradient(to right, rgb(0 0 0 / 0.8), rgb(0 0 0 / 0.3));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
