@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("./design-system/fonts/Roboto-Variable-Latin.woff2") format("woff2");
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.hex-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 83.138' width='72' height='83.138'%3E%3Cg fill='none' stroke='%23000000' stroke-opacity='0.07' stroke-width='1'%3E%3Cpolygon points='36,0 60,13.856 60,41.569 36,55.426 12,41.569 12,13.856'/%3E%3Cpolygon points='0,41.569 12,48.497 12,76.21 0,83.138'/%3E%3Cpolygon points='72,41.569 60,48.497 60,76.21 72,83.138'/%3E%3Cpolygon points='36,55.426 60,69.282 36,83.138 12,69.282'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 83.138px;
}

.hex-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 83.138' width='72' height='83.138'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='1'%3E%3Cpolygon points='36,0 60,13.856 60,41.569 36,55.426 12,41.569 12,13.856'/%3E%3Cpolygon points='0,41.569 12,48.497 12,76.21 0,83.138'/%3E%3Cpolygon points='72,41.569 60,48.497 60,76.21 72,83.138'/%3E%3Cpolygon points='36,55.426 60,69.282 36,83.138 12,69.282'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 72px 83.138px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(.2,.7,.2,1), transform 720ms cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#lif-post-grid {
  transition: opacity .2s ease;
}

#lif-post-grid.is-loading {
  opacity: .4;
  pointer-events: none;
}

.lif-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #E5E5E5;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: #0B0B0B;
  transition: background .15s, color .15s, border-color .15s;
}

.lif-page-btn:hover {
  border-color: #540F0E;
  color: #540F0E;
}

.lif-page-btn.is-active {
  background: #540F0E;
  border-color: #540F0E;
  color: #fff;
}

.lif-page-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.practice-card .practice-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(.62) contrast(1.08);
  transform: scale(1.04);
  transition: filter 500ms ease, transform 600ms ease;
}

.practice-card:hover .practice-img {
  filter: grayscale(0%) brightness(.68) contrast(1.08);
  transform: scale(1);
}

.practice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.82));
}

.video-slide {
  left: 50%;
  width: 78%;
  opacity: 0;
  transform: translateX(-50%) scale(.9);
  transition: opacity 520ms ease, transform 520ms ease, filter 520ms ease;
  z-index: 1;
  pointer-events: none;
}

.video-slide.is-active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  pointer-events: auto;
}

.video-slide.is-prev {
  opacity: .34;
  transform: translateX(-92%) scale(.84);
  z-index: 2;
}

.video-slide.is-next {
  opacity: .34;
  transform: translateX(-8%) scale(.84);
  z-index: 2;
}

.lif-media-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #000;
}

.lif-media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .4s ease, opacity .4s ease;
}

.lif-media-card:hover img {
  transform: scale(1.04);
  opacity: .7;
}

.lif-media-card .lif-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.28) 0%, transparent 50%);
}

.lif-media-card .lif-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #540F0E;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.45);
}

.lif-media-card:hover .lif-play-icon {
  background: #5D1817;
  transform: translate(-50%, -60%) scale(1.1);
}

.lif-play-icon svg {
  transform: translateX(2px);
}

.lif-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lif-lightbox.is-open {
  display: flex;
}

.lif-lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.lif-lightbox-video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.lif-lightbox-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.lif-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: .7;
  transition: opacity .15s;
}

.lif-lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .video-slide {
    width: 88%;
  }

  .video-slide.is-prev {
    transform: translateX(-104%) scale(.82);
  }

  .video-slide.is-next {
    transform: translateX(4%) scale(.82);
  }
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#case-review {
  scroll-margin-top: 140px;
}

#case-review .relative > * {
  min-width: 0;
}

.lif-announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #000;
  color: #fff;
  padding: 12px 32px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lif-announcement-bar strong {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 2px 8px;
  letter-spacing: .18em;
}

.lif-announcement-bar a {
  display: inline-flex;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.3);
  color: #fff;
  margin-left: 6px;
  padding-left: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.lif-announcement-shield {
  position: relative;
  width: 14px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 7px 7px 3px 3px;
  flex: 0 0 auto;
}

.lif-announcement-shield::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
  background: #000;
}

.lif-page-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.lif-header-grid {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.lif-logo-area {
  background: #fff;
}

.lif-logo-area .lif-header-grid {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.lif-logo-link {
  display: inline-flex;
  align-items: center;
  height: 65px;
}

.lif-logo-link img {
  display: block;
  height: 65px;
  width: auto;
}

.lif-header-widgets {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #000;
}

.lif-open-widget {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lif-open-widget strong {
  display: block;
  color: #000;
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.lif-open-widget span:not(.lif-clock-icon) {
  display: block;
  margin-top: 5px;
  color: #000;
  font-size: 13px;
  line-height: 1.2;
}

.lif-clock-icon {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid #540f0e;
  border-radius: 999px;
}

.lif-clock-icon::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 5px;
  width: 2px;
  height: 8px;
  background: #540f0e;
  transform-origin: bottom center;
}

.lif-clock-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 12px;
  width: 7px;
  height: 2px;
  background: #540f0e;
  transform-origin: left center;
}

.lif-header-separator {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,.1);
}

.lif-phone-widget {
  margin: 0;
  text-align: right;
  line-height: 1.15;
}

.lif-phone-widget a {
  color: #000;
  text-decoration: none;
  font-size: 26px;
  font-weight: 500;
  white-space: nowrap;
}

.lif-phone-widget span {
  display: block;
  margin-top: 3px;
  color: #000;
  font-size: 13px;
}

.lif-menu-area {
  background: #540f0e;
  min-height: 50px;
}

.lif-menu-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.lif-main-menu > ul {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lif-main-menu li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lif-main-menu > ul > li > a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 13px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lif-main-menu > ul > li:hover > a,
.lif-main-menu > ul > li:focus-within > a {
  background: rgba(0,0,0,.14);
  color: #fff;
}

.lif-sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 100;
  min-width: 275px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lif-main-menu li:hover > .lif-sub-menu,
.lif-main-menu li:focus-within > .lif-sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.lif-sub-menu ul {
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #fff;
  border-top: 3px solid #540f0e;
  box-shadow: 0 7px 18px rgba(0,0,0,.16);
}

.lif-sub-menu a {
  display: block;
  padding: 10px 20px;
  color: #1d1d1d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}

.lif-sub-menu a:hover,
.lif-sub-menu a:focus {
  color: #540f0e;
  background: #f7f7f7;
}

.lif-consult-link {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 18px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lif-consult-link:hover,
.lif-consult-link:focus {
  color: #fff;
  background: #000;
}

.lif-sticky-clone {
  display: none;
  background: #540f0e;
}

.lif-sticky-grid {
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.lif-sticky-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.lif-mobile-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}

.lif-mobile-bar {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.lif-mobile-logo img {
  display: block;
  height: 52px;
  width: auto;
}

.lif-mobile-toggle {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  border: 1px solid #e5e5e5;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.lif-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #540f0e;
}

.lif-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.lif-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lif-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: 80vw;
  max-width: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}

.lif-mobile-drawer.is-open {
  transform: translateX(0);
}

.lif-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 70px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.lif-mobile-drawer-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #540f0e;
}

.lif-mobile-close {
  background: transparent;
  border: 1px solid #e5e5e5;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #555;
}

.lif-mobile-close:hover {
  color: #540f0e;
  border-color: #540f0e;
}

.lif-mobile-drawer-logo {
  display: block;
  height: 44px;
  width: auto;
}

.lif-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  flex: 1;
}

.lif-mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.lif-mobile-nav-row {
  display: flex;
  align-items: center;
}

.lif-mobile-nav-row > a {
  flex: 1;
  display: block;
  padding: 14px 20px;
  color: #1d1d1d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.lif-mobile-nav-row > a:hover {
  color: #540f0e;
}

.lif-mobile-expand {
  background: transparent;
  border: 0;
  border-left: 1px solid #f0f0f0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #540f0e;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.lif-mobile-expand[aria-expanded="true"] {
  transform: rotate(180deg);
}

.lif-mobile-subnav {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  display: none;
}

.lif-mobile-subnav.is-open {
  display: block;
}

.lif-mobile-subnav li {
  border-bottom: 1px solid #f0f0f0;
}

.lif-mobile-subnav li:last-child {
  border-bottom: 0;
}

.lif-mobile-subnav a {
  display: block;
  padding: 12px 20px 12px 32px;
  color: #444;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  position: relative;
}

.lif-mobile-subnav a::before {
  content: "—";
  position: absolute;
  left: 20px;
  color: #540f0e;
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lif-mobile-subnav a:hover {
  color: #540f0e;
  background: #f3f3f3;
}

.lif-mobile-drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #eee;
  display: grid;
  gap: 10px;
  flex-shrink: 0;
}

.lif-mobile-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: #540f0e;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lif-mobile-cta--outline {
  background: transparent;
  border: 2px solid #540f0e;
  color: #540f0e;
}

.lif-mobile-cta:hover {
  background: #5d1817;
  color: #fff;
}

.lif-mobile-cta--outline:hover {
  background: #540f0e;
  color: #fff;
}

.lif-cf7-card {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #0b0b0b;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}

.lif-cf7-card--plain {
  border: 0;
  padding: 36px 36px 32px;
}

.lif-cf7-card .wpcf7,
.lif-cf7-card .wpcf7 form,
.lif-cf7-card .wpcf7-form,
.lif-cf7-card .wpcf7-form p {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lif-cf7-head {
  background: #000;
  color: #fff;
  padding: 20px 28px;
}

.lif-cf7-head p {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.lif-cf7-head h2 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.lif-cf7-card--plain .lif-cf7-head {
  background: transparent;
  color: #0b0b0b;
  padding: 0 0 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid #E5E5E5;
}

.lif-cf7-card--plain .lif-cf7-head p {
  color: #540f0e;
  font-size: 11px;
  letter-spacing: .24em;
  font-weight: 900;
}

.lif-cf7-card--plain .lif-cf7-head h2 {
  color: #0b0b0b;
  font-size: 30px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.05;
}

.lif-cf7-body {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.lif-cf7-body > p {
  margin: 0;
}

.lif-cf7-card--plain .lif-cf7-body {
  padding: 0;
}

.lif-cf7-grid {
  display: grid;
  gap: 16px;
}

.lif-cf7-card .wpcf7-form-control-wrap {
  display: block;
}

.lif-cf7-card input[type="text"],
.lif-cf7-card input[type="tel"],
.lif-cf7-card input[type="email"],
.lif-cf7-card select,
.lif-cf7-card textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  background: #fff;
  padding: 14px 16px;
  color: #0b0b0b;
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.lif-cf7-card select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23540F0E' stroke-width='1.6' stroke-linecap='square' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.lif-cf7-card textarea {
  min-height: 64px;
  resize: vertical;
}

.lif-cf7-card input:focus,
.lif-cf7-card select:focus,
.lif-cf7-card textarea:focus {
  outline: 0;
  border-color: #540f0e;
  box-shadow: 0 0 0 3px rgba(84,15,14,.18);
}

.lif-cf7-card input::placeholder,
.lif-cf7-card textarea::placeholder {
  color: #8a8a8a;
}

.lif-cf7-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #555;
  font-size: 12px;
  line-height: 1.55;
  margin-top: 4px;
}

.lif-cf7-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #540f0e;
  flex: 0 0 auto;
}

.lif-cf7-card .wpcf7-submit {
  width: 100%;
  border: 0;
  background: #540f0e;
  color: #fff;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background .15s ease, transform .12s ease;
}

.lif-cf7-card .wpcf7-submit:hover {
  background: #5d1817;
}

.lif-cf7-card .wpcf7-submit:active {
  transform: translateY(1px);
}

.lif-cf7-card .wpcf7-spinner {
  margin: 10px auto 0;
  display: block;
}

.lif-cf7-card .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #540f0e;
}

.lif-cf7-card .wpcf7-response-output {
  margin: 8px 28px 28px !important;
  border-color: #540f0e !important;
  font-size: 13px;
}

.lif-cf7-card--plain .wpcf7-response-output {
  margin: 16px 0 0 !important;
}

.lif-trust-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 360px;
}

.lif-trust-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: .04em;
}

.lif-trust-list li strong {
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lif-trust-list .lif-trust-stars {
  color: #f5c518;
  font-size: 16px;
  letter-spacing: .12em;
}

.lif-trust-list .lif-trust-check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  flex: 0 0 auto;
}

.lif-statute-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lif-statute-pill::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-top-width: 4px;
  border-radius: 2px;
  flex: 0 0 auto;
}

.lif-play-button {
  color: transparent !important;
  font-size: 0 !important;
  border: 0;
}

.lif-play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #fff;
  transform: translateX(3px);
}

.lif-play-button:focus {
  outline: 3px solid rgba(84,15,14,.35);
  outline-offset: 4px;
}

.prose {
  color: #2A2A2A;
  font-size: 17px;
  line-height: 1.75;
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose p {
  margin: 0 0 1.1em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: #0B0B0B;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.005em;
}

.prose h2 {
  font-size: 32px;
  margin-top: 1.8em;
  margin-bottom: .55em;
  text-transform: uppercase;
}

.prose h3 {
  font-size: 24px;
  margin-top: 1.6em;
  margin-bottom: .5em;
}

.prose h4 {
  font-size: 19px;
  margin-top: 1.4em;
  margin-bottom: .4em;
}

.prose > h1:first-child,
.prose > h2:first-child,
.prose > h3:first-child,
.prose > h4:first-child {
  margin-top: 0;
}

.prose h2 + p,
.prose h3 + p,
.prose h4 + p {
  margin-top: 0;
}

.prose h2 span:empty,
.prose h3 span:empty,
.prose h4 span:empty {
  display: none;
}

.prose ul,
.prose ol {
  margin: 0 0 1.4em;
  padding-left: 1.6em;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose ul ul,
.prose ol ol,
.prose ul ol,
.prose ol ul {
  margin: .4em 0;
}

.prose li {
  margin: .35em 0;
  line-height: 1.7;
}

.prose li > p {
  margin: 0;
}

.prose li::marker {
  color: #540F0E;
}

.prose a {
  color: #540F0E;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: #5D1817;
  text-decoration-thickness: 2px;
}

.prose b,
.prose strong {
  font-weight: 800;
  color: #0B0B0B;
}

.prose blockquote {
  margin: 1.6em 0;
  padding: 1em 1.4em;
  border-left: 4px solid #540F0E;
  background: #F9F9F9;
  color: #2A2A2A;
  font-style: italic;
}

.prose blockquote p:last-child {
  margin-bottom: 0;
}

.prose hr {
  border: 0;
  border-top: 1px solid #E5E5E5;
  margin: 2.2em 0;
}

.prose img {
  max-width: 100%;
  height: auto;
  margin: 1.6em 0;
  display: block;
  border-radius: 2px;
}

.prose .not-prose img {
  margin: 0;
  max-width: none;
}

.prose .not-prose .lif-reviewed-by__seal {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
}

.prose .not-prose .lif-reviewed-by__trust-icon {
  width: auto;
  height: 1.75rem;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.prose figure img {
  margin: 0;
}

.prose .alignnone {
  margin-left: 0;
  margin-right: 0;
}

.prose .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.prose img.aligncenter,
.prose figure.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}

.prose .alignleft {
  float: left;
  margin: .4em 1.4em 1em 0;
}

.prose .alignright {
  float: right;
  margin: .4em 0 1em 1.4em;
}

.prose img.invert-image {
  margin-left: 0;
}

.prose figure {
  margin: 1.6em 0;
}

.prose figure figcaption {
  margin-top: .6em;
  color: #555;
  font-size: 14px;
  text-align: center;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 16px;
}

.prose th,
.prose td {
  padding: .7em 1em;
  border: 1px solid #E5E5E5;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: #F9F9F9;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: #0B0B0B;
}

.prose code {
  padding: .15em .4em;
  background: #F4F4F4;
  border-radius: 2px;
  font-size: .92em;
}

.prose pre {
  padding: 1em 1.2em;
  background: #0B0B0B;
  color: #F4F4F4;
  overflow-x: auto;
  border-radius: 2px;
}

.prose pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

@media (max-width: 1080px) {
  #case-review {
    scroll-margin-top: 90px;
  }

  .lif-announcement-bar {
    gap: 10px;
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: .08em;
    text-align: center;
  }

  .lif-announcement-bar a {
    margin-left: 0;
    padding-left: 10px;
  }

  .lif-announcement-shield {
    display: none;
  }

  .lif-page-header {
    display: none;
  }

  .lif-mobile-header {
    display: block;
  }
}

@media (max-width: 520px) {
  .lif-announcement-bar {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .lif-announcement-bar a {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  #case-review {
    padding-left: 20px;
    padding-right: 20px;
  }

  .lif-cf7-card--plain {
    padding: 28px 20px 24px;
  }

  .lif-cf7-card--plain .lif-cf7-head h2 {
    font-size: 26px;
  }

  .lif-cf7-consent {
    overflow-wrap: anywhere;
  }
}

@media (min-width: 640px) {
  .lif-cf7-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prose .not-prose .lif-reviewed-by__seal {
    width: 6rem;
    height: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.img-panel {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 12px;
}

@media (max-width: 640px) {
	.img-panel {
		align-items: start;
		flex-direction: column;
	}
}

@media (min-width: 1024px) {
	.sticky-sidebar {
		position: sticky;
		top: 170px;
		align-self: start;
        max-height: 100%;
		overflow-y: visible;
	}
}

.bg-primary {
	background-color: #540f0e;
}

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

.about-expertise img {
	height: 260px !important;
    text-align: left;
    margin: 0px;
	max-width: 160px;
}

.about-expertise {
	flex-direction: row;
}
@media (min-width: 1024px) {
   .about-grid-small {
        grid-template-columns: 1fr 3fr;
    }
}

@media (max-width: 640px) {
	.about-expertise {
		flex-direction: column;
	}
	
	.about-expertise > div:last-child {
		padding: 20px 0px;
	}

}

.lif-toc {
	margin-bottom: 40px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, .18);    
	border: 0 solid #e5e7eb;
}

.lif-toc__list,
.lif-toc__sublist {
	list-style: disc;
	padding: 20px 20px 20px 40px;
}

.lif-toc__item {
    display: list-item;
	color: #540f0e;
}

.lif-toc__title {
	background-color: #540f0e;
	padding: 20px 28px;
	color: #fff;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 900;
}

.lif-toc__list li:not(:last-child) {
	margin-bottom: 10px;
}

.lif-toc__list li a {
	color: #540F0E;
    text-decoration: none;
}

.lif-toc__list li a:hover {	
    text-decoration: underline;
}


.prose iframe {
	width: 100%;
}