/* --- Page heading --- */
.fb-heading {
  max-width: 1120px;
  margin: 30px 0px 30px 70px;
  font-size: 2.1rem;
  font-weight: 700;
}

/* --- Main 2-column layout --- */
.fb-home-layout {
  max-width: 1120px;
  margin: 0 auto 50px auto;
  display: flex;
  gap: 36px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .fb-home-layout {
    flex-direction: column;
  }
}

/* --- Card base --- */
.fb-home-card {
  background-color: #fff;
  border-radius: 26px;
  padding: 32px 34px 28px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
  font-size: 0.95rem;
}

/* --- Left card width --- */
.fb-home-card--left {
  flex: 1.05;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  min-height: 360px;
  padding-top: 28px;
}

/* --- Right card styling --- */
.fb-home-card--right {
  flex: 0.95;
  background-color: #fff;
}

/* --- Text styles --- */
.fb-home-text {
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 6px;
  line-height: 1.4;
  grid-row: 1;
  align-self: start;
  padding-top: 32px;
}

/* You can + list */
.fb-home-youcan-row {
  margin-top: 10px;
}

.fb-home-cta-inline {
  display: flex;
  gap: 20px;
  margin-top: 0;
  justify-content: center;
  max-width: 360px;
}

.fb-home-cta--centered { justify-content: center; }
.fb-home-terms {
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
.fb-home-cta-wrap {
  grid-row: 3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.fb-home-cta-wrap.fb-home-cta--bottom {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  height: 100%;
}

.fb-card-spacer { display: none; }
.fb-terms-note { margin-bottom: 0; margin-top: 6px; text-align: center; }
.fb-home-cta--lowered { margin-top: 1px; }


.fb-home-youcan-label {
  font-size: 1.05rem;
  margin: 0 0 6px 0;
  font-weight: 500;
}

.fb-home-list {
  margin: 0 0 18px 20px;
}

.fb-home-list li {
  font-size: 1.1rem;
  margin-bottom: 4px;
  line-height: 1.5;
}

/* Warning box */
.fb-home-warning {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 18px;
  background-color: #fff7e5;
  border-left: 4px solid #f2b321;
  border-radius: 14px;
}


.fb-home-warning-icon {
  font-size: 1.25rem;
  margin-top: 2px;
}

.fb-home-warning-body p {
  margin: 0 0 6px 0;
  font-size: 1rem;
}

/* --- Slider title --- */
.fb-home-right-title {
  margin: 0 0 18px 0;
  font-size: 1.25rem;
  font-weight: 700;
}

/* --- Slider frame --- */
.fb-home-slider-frame {
  position: relative;
  border: 3px solid #003865;
  border-radius: 16px;
  background: #fff;
  padding: 24px 56px 88px;
  min-height: 420px;
  overflow: hidden;
}

/* --- Slider footer (button bar) --- */
.fb-home-slider-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  background: #f3f3f3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 54px;
}


/* --- Slider area --- */
.fb-slider {
  position: relative;
  width: 100%;
  min-height: 300px;
}

/* Slide */
.fb-slide {
  position: absolute;
  inset: 0;
  display: none;
  padding: 0;
  text-align: center;
}

/* Slide visible */
.fb-slide.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Slide image */
.fb-slide-image {
  display: block;
  width: 100%;
  max-width: 260px;
  height: 180px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 18px;
}

/* Caption */
.fb-slide-caption {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.fb-slide-caption h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.fb-slide-caption p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
  color: #333;
}

/* Arrows */
.fb-slider-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  background: rgba(0,56,101,0.92);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.fb-slider-arrow--prev { left: 12px; }
.fb-slider-arrow--next { right: 12px; }

.fb-slider-arrow:hover {
  background: #002a4c;
}

/* Dots */
.fb-home-dots {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.fb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c0c0c0;
}

.fb-dot--active { background: #003865; }

/* --- About section --- */
.fb-divider {
  border: none;
  height: 1px;
  background-color: #e4e4e4;
  margin: 40px auto 25px;
}

.fb-subheading {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 20px 0 10px;
  text-align: left;
  color: #1a1a1a;
}

.fb-about {
  max-width: 1000px;
  margin: 10px auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.fb-about__text {
  flex: 2;
  font-size: 0.95rem;
  line-height: 1.6;
}

.fb-about__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.fb-about__image img {
  width: 260px;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .fb-home-slider-frame {
    padding: 20px 44px 84px;
    min-height: 390px;
  }

  .fb-slider {
    min-height: 280px;
  }

  .fb-slide-image {
    max-width: 220px;
    height: 160px;
  }
}

@media (max-width: 640px) {
  .fb-home-slider-frame {
    padding: 18px 36px 78px;
    min-height: 360px;
  }

  .fb-slider {
    min-height: 250px;
  }

  .fb-slide-image {
    max-width: 190px;
    height: 140px;
    margin-bottom: 14px;
  }

  .fb-slide-caption {
    max-width: 260px;
  }

  .fb-slide-caption h3 {
    font-size: 1rem;
  }

  .fb-slide-caption p {
    font-size: 0.92rem;
  }

  .fb-slider-arrow {
    width: 28px;
    height: 28px;
  }

  .fb-slider-arrow--prev { left: 8px; }
  .fb-slider-arrow--next { right: 8px; }
}


