/* =========================================================
   Facts Not Fear — Sitefinity page stylesheet (v2)
   Written against the actual page markup:
   .container-fluid > [image div] + .fnf-nav-box + .sf_cols
   No markup changes required except the fnf-nav-box class
   already on the navigation widget.
   ========================================================= */

:root {
  --fnf-teal: #0d9488;
  --fnf-ink: #0f172a;
  --fnf-muted: #64748b;
  --fnf-line: #e2e8f0;
  --fnf-card: #ffffff;
  --fnf-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.12);
  --fnf-radius: 16px;
}

/* ---------- Page shell / two column layout ---------- */
body > .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 56px;
  color: var(--fnf-ink);
  line-height: 1.55;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

@media (min-width: 992px) {
  body > .container-fluid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    column-gap: 48px;
    align-items: start;
  }

  /* header graphic spans full width, edge to edge */
  body > .container-fluid > div:first-of-type {
    grid-column: 1 / -1;
  }

  body > .container-fluid > .fnf-nav-box {
    grid-column: 1;
  }

  body > .container-fluid > .sf_cols {
    grid-column: 2;
  }
}

/* ---------- Header graphic: full bleed, no site frame ---------- */
body > .container-fluid > div:first-of-type {
  margin: 0 calc(50% - 50vw) 32px;
  width: 100vw;
  max-width: 100vw;
}

body > .container-fluid > div:first-of-type img {
  display: block;
  width: 100%;
  max-width: 100% !important;
  height: auto !important;
}

/* ---------- Floating left navigation box ---------- */
.fnf-nav-box {
  position: relative;
  border: 1px solid var(--fnf-line);
  border-radius: var(--fnf-radius);
  background: var(--fnf-card);
  box-shadow: var(--fnf-shadow);
  padding: 16px;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .fnf-nav-box {
    position: sticky;
    top: 24px;
  }
}

.fnf-nav-box::before {
  content: "Facts Not Fear";
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fnf-muted);
  margin: 0 0 12px 8px;
}

/* neutralise the horizontal Kendo/Sitefinity nav styling */
.fnf-nav-box .sfNavList,
.fnf-nav-box .sfNavHorizontalDropDown {
  display: block !important;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  float: none;
}

.fnf-nav-box .sfNavList > li,
.fnf-nav-box .nav-item {
  display: block !important;
  float: none !important;
  border: 0 !important;
  background: none !important;
  margin: 0 0 4px;
  padding: 0;
}

.fnf-nav-box .sfNavList a,
.fnf-nav-box .nav-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: var(--fnf-ink);
  text-decoration: none;
  background: none;
  border: 0;
  transition: background 0.15s ease, color 0.15s ease;
}

.fnf-nav-box .sfNavList a:hover,
.fnf-nav-box .sfNavList a:focus {
  background: #f1f5f9;
  color: var(--fnf-ink);
  text-decoration: none;
}

/* current page — Sitefinity adds sfSel / k-state-selected / active */
.fnf-nav-box .sfSel > a,
.fnf-nav-box li.active > a,
.fnf-nav-box .k-state-selected > a,
.fnf-nav-box a[aria-current="page"] {
  background: var(--fnf-teal);
  color: #ffffff;
  font-weight: 600;
}

/* mobile menu button */
.fnf-nav-box .sf-nav-toggle {
  display: none;
}

@media (max-width: 991.98px) {
  .fnf-nav-box::before {
    display: none;
  }

  .fnf-nav-box .sf-nav-toggle {
    display: block;
    width: 100%;
    background: var(--fnf-teal);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
  }

  .fnf-nav-box .sfNavList {
    display: none !important;
    margin-top: 10px;
  }

  .fnf-nav-box .sfNavList.is-open {
    display: block !important;
  }
}

/* ---------- Content column ---------- */
.sf_cols .container.content,
.sf_cols .box-content {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* =========================================================
   Reusable content-widget styles
   Drop these classes inside the middle content area.
   ========================================================= */

/* Info you can trust strip */
.fnf-trust {
  border: 1px solid var(--fnf-line);
  border-radius: var(--fnf-radius);
  background: var(--fnf-card);
  box-shadow: var(--fnf-shadow);
  padding: 20px;
}

.fnf-trust-grid {
  display: grid;
  gap: 16px;
}

.fnf-trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fnf-teal);
  margin: 0 0 4px;
}

.fnf-trust-body {
  font-size: 12px;
  color: var(--fnf-muted);
  margin: 0;
  line-height: 1.4;
}

/* Heading and intro */
.fnf-hero {
  margin-top: 40px;
}

.fnf-hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--fnf-ink);
}

.fnf-hero p {
  margin-top: 20px;
  max-width: 672px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fnf-muted);
}

/* Quick link buttons */
.fnf-buttons {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fnf-btn {
  display: inline-block;
  border-radius: 999px;
  background: var(--fnf-teal);
  color: #ffffff;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.fnf-btn:hover {
  opacity: 0.9;
  color: #ffffff;
  text-decoration: none;
}

/* Expand / collapse FAQ */
.fnf-faq {
  margin-top: 48px;
}

.fnf-faq h2,
.fnf-videos h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--fnf-ink);
}

.fnf-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--fnf-line);
  border-radius: var(--fnf-radius);
  overflow: hidden;
  background: var(--fnf-card);
  box-shadow: var(--fnf-shadow);
}

.fnf-faq-item + .fnf-faq-item {
  border-top: 1px solid var(--fnf-line);
}

.fnf-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--fnf-ink);
  font-family: inherit;
}

.fnf-faq-q:hover {
  background: #f8fafc;
}

.fnf-faq-icon {
  color: var(--fnf-teal);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.fnf-faq-q[aria-expanded="true"] .fnf-faq-icon {
  transform: rotate(45deg);
}

.fnf-faq-a {
  padding: 0 20px 18px;
  color: var(--fnf-muted);
  line-height: 1.6;
  margin: 0;
}

/* Two-minute video rail */
.fnf-videos {
  margin-top: 56px;
}

.fnf-videos-intro {
  font-size: 14px;
  color: var(--fnf-muted);
  margin: -12px 0 20px;
}

.fnf-videos-rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.fnf-video-card {
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  margin: 0;
}

.fnf-video-wrap {
  aspect-ratio: 16 / 9;
  border-radius: var(--fnf-radius);
  overflow: hidden;
  border: 1px solid var(--fnf-line);
  box-shadow: var(--fnf-shadow);
}

.fnf-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.fnf-video-caption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fnf-ink);
}

/* Responsive */
@media (min-width: 640px) {
  .fnf-trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fnf-video-card {
    width: 320px;
  }
}

@media (min-width: 992px) {
  .fnf-trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}




/* page fixes */
.animated-list li h3 span {width: 100% !important;}