/* Shared post-demo decision bridge for LFM Radio Imaging format pages. */
.lfm-format-brief-bridge {
  padding: 28px 0;
  color: #17121f;
  background: #fff;
  border-bottom: 1px solid rgba(23, 18, 31, .08);
}

.lfm-format-brief-bridge__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 34px;
  border: 1px solid rgba(118, 30, 232, .12);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(118, 30, 232, .055), #fff 58%, rgba(0, 202, 227, .06));
}

.lfm-format-brief-bridge__copy > span {
  display: block;
  margin-bottom: 6px;
  color: #761ee8;
  font-family: Inter, Gilroy, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lfm-format-brief-bridge__copy strong {
  display: block;
  margin-bottom: 7px;
  color: #17121f;
  font-family: Inter, "Gilroy Bold", Gilroy, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
}

.lfm-format-brief-bridge__copy p {
  max-width: 720px;
  margin: 0;
  color: #615a6b;
  font-size: 16px;
  line-height: 1.52;
}

.lfm-format-brief-bridge__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

.lfm-format-brief-bridge__actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-family: Inter, "Gilroy Bold", Gilroy, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.lfm-format-brief-bridge__primary {
  color: #fff !important;
  background: linear-gradient(135deg, #761ee8, #9c22ff) !important;
  border: 1px solid transparent !important;
  box-shadow: 0 11px 26px rgba(118, 30, 232, .22);
}

.lfm-format-brief-bridge__secondary {
  color: #17121f !important;
  background: #fff !important;
  border: 1px solid rgba(23, 18, 31, .14) !important;
  box-shadow: none !important;
}

.lfm-format-brief-bridge__actions a:hover,
.lfm-format-brief-bridge__actions a:focus-visible {
  transform: translateY(-1px);
}

.lfm-format-brief-bridge__actions a:focus-visible {
  outline: 3px solid rgba(118, 30, 232, .28);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .lfm-format-brief-bridge__actions a {
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
  }
}

@media (max-width: 860px) {
  .lfm-format-brief-bridge__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .lfm-format-brief-bridge {
    padding: 20px 0;
  }

  .lfm-format-brief-bridge__inner {
    width: min(100% - 28px, 1160px);
    padding: 22px 20px;
  }

  .lfm-format-brief-bridge__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .lfm-format-brief-bridge__actions a {
    width: 100%;
  }
}
