/* =============================================================
   dgt_featuredbanner — front-end styles
   Layout: content left | image right (split banner)
   Compatible: Hummingbird (Bootstrap 5) + Classic
   ============================================================= */

.fbn-section {
  width: 100%;
  overflow: hidden;
}

.fbn-banner {
  display: flex;
  flex-direction: row;
  min-height: 22rem;
}

.fbn-banner__content {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 2rem;
}

.fbn-banner__brand-logo {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
}

.fbn-banner__title {
  margin: 0 0 0.75rem;
  font-weight: 400;
  line-height: 1.2;
}

.fbn-banner__desc {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.fbn-banner__cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  white-space: nowrap;
}

.fbn-banner__img-wrap {
  flex: 1 1 55%;
  position: relative;
  overflow: hidden;
  min-height: 18rem;
}

.fbn-banner__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}