/* =========================================================
   banner.css
   ========================================================= */

.banner {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  isolation: isolate;
}

.banner .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 13, 10, 0.7) 0%,
    rgba(16, 13, 10, 0.55) 50%,
    rgba(16, 13, 10, 0.75) 100%
  );
  z-index: 1;
}

.banner__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner__inner .kicker {
  color: var(--think);
}

.banner__title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 2rem;
  line-height: 1.15;
}
