
/* LCBP — Practice / pricing helpers / direct navigation, 2026-08-14 */

/* Keep every top-level desktop navigation item on exactly the same baseline. */
.lcbp-header .nav-area ul.lcbp-nav-root > li.lcbp-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.lcbp-header .nav-area ul.lcbp-nav-root > li.lcbp-nav-item > a {
  display: inline-flex;
  align-items: center;
  line-height: 1.25;
  white-space: nowrap;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .lcbp-header .nav-area ul.lcbp-nav-root {
    gap: 11px;
  }
}

/* Accessible price tooltip: hover on desktop, focus/tap on mobile. */
.lcbp-price-value-with-help,
.lcbp-price-table-help-wrap {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.lcbp-price-help {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(28, 37, 57, 0.22);
  border-radius: 50%;
  background: #fff;
  color: #1c2539;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  outline: none;
}

.lcbp-price-help:focus-visible {
  box-shadow: 0 0 0 3px rgba(46, 97, 255, 0.18);
  border-color: var(--color-primary);
}

.lcbp-price-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 1800;
  width: min(390px, calc(100vw - 40px));
  padding: 16px 18px;
  border-radius: 14px;
  background: #1c2539;
  color: #fff;
  box-shadow: 0 18px 45px rgba(28, 37, 57, 0.25);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.lcbp-price-tooltip strong,
.lcbp-price-tooltip span {
  display: block;
}

.lcbp-price-tooltip strong {
  margin-bottom: 8px;
  font-size: 15px;
}

.lcbp-price-tooltip span + span {
  margin-top: 5px;
}

.lcbp-price-help:hover .lcbp-price-tooltip,
.lcbp-price-help:focus .lcbp-price-tooltip,
.lcbp-price-help:focus-within .lcbp-price-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.lcbp-price-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #1c2539;
  transform: translateX(-50%);
}

/* The tooltip inside the right-hand price column must open inward.
   The table wrapper intentionally clips its rounded corners, so a centered
   tooltip is cut off on the right on desktop. */
.lcbp-price-tooltip--table {
  left: auto;
  right: -10px;
  transform: translate(0, 6px);
}

.lcbp-price-help:hover .lcbp-price-tooltip--table,
.lcbp-price-help:focus .lcbp-price-tooltip--table,
.lcbp-price-help:focus-within .lcbp-price-tooltip--table {
  transform: translate(0, 0);
}

.lcbp-price-tooltip--table::after {
  left: auto;
  right: 14px;
  transform: none;
}

.lcbp-pricing-footnotes {
  display: grid;
  gap: 6px;
  max-width: 820px;
}

/* Both pricing footnotes intentionally use the same typography. */
.lcbp-pricing-footnotes .disc + .disc {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* Home practice preview */
.lcbp-practice-preview__lead {
  max-width: 760px;
  margin-top: 12px;
  margin-bottom: 0;
}

.lcbp-practice-slide .left-thumbnail {
  display: block;
}

.lcbp-practice-slide__content h3 {
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.24;
}

.lcbp-practice-slide__content h3 a {
  color: inherit;
}

.lcbp-practice-slide__content h3 a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.lcbp-practice-slide__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.lcbp-practice-slide__meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
}

.lcbp-practice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 700;
}

.lcbp-practice-slide__link {
  margin-top: 4px;
  color: #fff;
}

.lcbp-practice-slide__link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lcbp-practice-preview__all {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

/* /practice */
.lcbp-practice-index {
  background: #f7f9fc;
}

.lcbp-practice-index__lead {
  max-width: 820px;
  margin: 14px auto 0;
}

.lcbp-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lcbp-practice-card {
  overflow: hidden;
  border: 1px solid #e3e8f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(28, 37, 57, .07);
}

.lcbp-practice-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9edf4;
}

.lcbp-practice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.lcbp-practice-card:hover .lcbp-practice-card__image img {
  transform: scale(1.025);
}

.lcbp-practice-card__body {
  padding: 24px;
}

.lcbp-practice-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #7b8490;
  font-size: 13px;
}

.lcbp-practice-card__meta span {
  color: var(--color-primary);
  font-weight: 700;
}

.lcbp-practice-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.3;
}

.lcbp-practice-card h3 a {
  color: #1c2539;
}

.lcbp-practice-card h3 a:hover {
  color: var(--color-primary);
}

.lcbp-practice-card p {
  margin-bottom: 18px;
  color: #66707c;
  font-size: 15px;
  line-height: 1.65;
}


/* Article */
.lcbp-article {
  background: #fff;
}

.lcbp-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 54px;
  align-items: start;
}

.lcbp-article__content {
  max-width: 880px;
}

.lcbp-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 22px;
  color: #7b8490;
  font-size: 14px;
}

.lcbp-article__meta span:first-child {
  color: var(--color-primary);
  font-weight: 700;
}

.lcbp-article__lead {
  margin-bottom: 28px;
  color: #293443;
  font-size: 21px;
  line-height: 1.65;
}

.lcbp-article__content section {
  scroll-margin-top: 120px;
  margin-top: 46px;
}

.lcbp-article__content h2 {
  margin-bottom: 18px;
  color: #1c2539;
  font-size: clamp(27px, 2.4vw, 36px);
  line-height: 1.3;
}

.lcbp-article__content h3 {
  margin: 28px 0 12px;
  color: #1c2539;
  font-size: 22px;
}

.lcbp-article__content p,
.lcbp-article__content li {
  color: #4d5865;
  font-size: 17px;
  line-height: 1.8;
}

.lcbp-article__content ul,
.lcbp-article__content ol {
  padding-left: 24px;
}

.lcbp-article__content li + li {
  margin-top: 8px;
}

.lcbp-article__toc {
  padding: 24px 28px;
  border: 1px solid #e3e8f1;
  border-radius: 18px;
  background: #f7f9fc;
}

.lcbp-article__toc strong {
  display: block;
  margin-bottom: 12px;
  color: #1c2539;
  font-size: 18px;
}

.lcbp-article__toc ol {
  margin-bottom: 0;
}

.lcbp-article__toc a {
  color: #33445f;
}

.lcbp-article__toc a:hover {
  color: var(--color-primary);
}

.lcbp-article__note,
.lcbp-article__warning,
.lcbp-article__disclaimer {
  margin: 24px 0;
  padding: 20px 22px;
  border-radius: 15px;
  font-size: 16px;
  line-height: 1.65;
}

.lcbp-article__note {
  border-left: 4px solid var(--color-primary);
  background: #f1f5ff;
  color: #33445f;
}

.lcbp-article__warning {
  border-left: 4px solid #b78332;
  background: #fff8e9;
  color: #594621;
}

.lcbp-article__steps {
  counter-reset: none;
}

.lcbp-article__checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.lcbp-article__checklist > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  background: #fbfcfe;
}

.lcbp-article__checklist span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #1c2539;
  color: #fff;
  font-weight: 700;
}

.lcbp-article__checklist p {
  margin: 4px 0 0;
}

.lcbp-article__source {
  padding-top: 28px;
  border-top: 1px solid #e3e8f1;
}

.lcbp-article__source a {
  font-weight: 700;
}

.lcbp-article__disclaimer {
  margin-top: 36px;
  background: #f5f6f8;
  color: #66707c;
  font-size: 14px;
}

.lcbp-article__aside {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 18px;
}

.lcbp-article__aside-card {
  padding: 24px;
  border-radius: 20px;
  background: #1c2539;
  color: #fff;
  box-shadow: 0 16px 40px rgba(28,37,57,.12);
}

.lcbp-article__aside-card > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.lcbp-article__aside-card h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
}

.lcbp-article__aside-card p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.6;
}

.lcbp-article__aside-card--light {
  border: 1px solid #e3e8f1;
  background: #fff;
  color: #1c2539;
  box-shadow: none;
}

.lcbp-article__aside-card--light > span {
  color: #7b8490;
}

.lcbp-article__aside-card--light h2 {
  color: #1c2539;
}

.lcbp-article__aside-card--light p {
  color: #66707c;
}

@media (max-width: 1199px) {
  .lcbp-practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lcbp-article__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 34px;
  }
}

@media (max-width: 991px) {
  .lcbp-practice-grid,
  .lcbp-article__layout {
    grid-template-columns: 1fr;
  }

  .lcbp-article__aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lcbp-practice-preview__all {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .lcbp-price-tooltip {
    left: auto;
    right: -10px;
    width: min(330px, calc(100vw - 32px));
    transform: translate(0, 6px);
  }

  .lcbp-price-help:hover .lcbp-price-tooltip,
  .lcbp-price-help:focus .lcbp-price-tooltip,
  .lcbp-price-help:focus-within .lcbp-price-tooltip {
    transform: translate(0, 0);
  }

  .lcbp-price-tooltip::after {
    left: auto;
    right: 14px;
    transform: none;
  }

  .lcbp-practice-card__body,
  .lcbp-article__toc,
  .lcbp-article__aside-card {
    padding: 20px;
  }

  .lcbp-practice-card__meta,
  .lcbp-article__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .lcbp-article__lead {
    font-size: 19px;
  }

  .lcbp-article__content p,
  .lcbp-article__content li {
    font-size: 16px;
  }

  .lcbp-article__aside {
    grid-template-columns: 1fr;
  }
}
