/*
 * Alf Theme — Manufacturing Bottom CTA Banner
 *
 * Full-width red gradient section: "Partner with ALF"
 * padding: 160px vertical, 120px horizontal (desktop)
 *
 * Loaded only on the Manufacturing page template.
 */

/* ═══════════════════════════════════════════════════════════════════
   SECTION
   ═══════════════════════════════════════════════════════════════════ */
.mfg-cta-bottom {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 160px var(--section-pad-desktop);
}

.mfg-cta-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: var(--header-max-width);
  /* 896px */
  margin-inline: auto;
  text-align: center;
}

/* ── Text block ───────────────────────────────────────────────────── */
.mfg-cta-bottom__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.mfg-cta-bottom__title {
  font-size: var(--font-size-h2);
  /* 36px */
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  color: var(--color-bg);
  /* #F8FAF0 */
  margin: 0;
}

.mfg-cta-bottom__subtitle {
  font-size: var(--font-size-h3, 24px);
  font-weight: var(--font-weight-regular);
  line-height: 1;
  color: var(--color-bg);
  margin: 0;
}

/* ── Button ───────────────────────────────────────────────────────── */
.mfg-cta-bottom__actions {
  display: flex;
  justify-content: center;
}

.mfg-cta-bottom__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--color-bg);
  /* #F8FAF0 */
  color: var(--color-dark);
  /* #252525 */
  font-size: var(--font-size-body-md);
  /* 16px */
  font-weight: var(--font-weight-regular);
  line-height: 1;
  border-radius: var(--radius-md, 8px);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.mfg-cta-bottom__btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.mfg-cta-bottom__btn img {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mfg-cta-bottom {
    padding: 80px var(--section-pad-mobile, 24px);
  }

  .mfg-cta-bottom__title {
    font-size: var(--font-size-h3, 24px);
  }

  .mfg-cta-bottom__subtitle {
    font-size: var(--font-size-body-lg, 18px);
  }

  .mfg-cta-bottom__inner {
    gap: 24px;
  }

  .mfg-cta-bottom__text {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .mfg-cta-bottom {
    padding: 60px var(--section-pad-mobile, 20px);
  }

  .mfg-cta-bottom__title {
    font-size: var(--font-size-h4, 20px);
  }

  .mfg-cta-bottom__subtitle {
    font-size: var(--font-size-body-md, 16px);
  }

  .mfg-cta-bottom__btn {
    padding: 12px 14px;
    font-size: var(--font-size-body-sm, 14px);
  }

  .mfg-cta-bottom__btn img {
    width: 18px;
    height: 18px;
  }
}