/* =============================================================
   dgt_featuredboxes — front-end styles
   Layout: hero left (full height) | 2 stacked right
   ============================================================= */

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

.fb-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.fb-item__content {
  padding: 1rem;
}

.fb-item {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 20rem;
}

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

.fb-item__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fb-item__img-wrap {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.fb-item__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  width: 115%;
  transition: transform 0.5s ease;
}

.fb-item__brand-logo {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.6rem;
  display: block;
}

.fb-item__title {
  margin: 0 0 0.6rem;
  line-height: 1.15;
  font-weight: 400;
}

.fb-item__desc {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

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