/* ═══════════════════════════════════════════════════════════════
   NAVIGATION.CSS — MergerDomo
═══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--md-yellow);
  height: var(--ann-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--md-navy);
  padding: 0 12px;
  overflow: hidden;
}

.announcement-bar p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-bar .divider {
  margin: 0 10px;
  color: rgba(13, 27, 76, .35);
}

.announcement-bar .cta-link {
  font-weight: 700;
  color: var(--md-navy);
  text-decoration: none !important;
  border-bottom: 1.5px solid rgba(13, 27, 76, .3);
  transition: border-color .18s ease;
}

.announcement-bar .cta-link:hover {
  border-color: var(--md-navy);
}

.md-nav {
  background: var(--md-navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
}

.md-nav__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  position: relative;
}

.md-nav__logo {
  flex-shrink: 0;
  margin-right: 32px;
}

.md-nav__logo img {
  height: 28px;
  display: block;
}

.md-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center !important;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.md-nav__item {
  position: relative;
}

.md-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  height: var(--nav-h);
  padding: 0 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s ease;
  position: relative;
  text-decoration: none !important;
  background: none;
  border: none;
  font-family: 'Roboto', sans-serif;
}

.md-nav__link:hover {
  color: #fff;
}

.md-nav__chevron {
  font-size: 11px;
  transition: transform .2s ease;
}

.md-nav__item:hover .md-nav__chevron {
  transform: rotate(180deg);
}

.md-nav__link-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--md-yellow);
  color: var(--md-navy);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 8px;
  transition: background .18s ease;
}

.md-nav__link-pill:hover {
  background: var(--md-yellow-dark);
}

.md-nav__item--mkt .md-nav__link {
  padding: 0 8px;
}

.md-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.md-nav__btn {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  transition: .18s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.md-nav__btn--login {
  color: rgba(255, 255, 255, .8);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .18);
}

.md-nav__btn--login:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

.md-nav__btn--register {
  background: var(--md-yellow);
  color: var(--md-navy);
  border: none;
}

.md-nav__btn--register:hover {
  background: var(--md-yellow-dark);
}

.md-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}

.md-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, .8);
  border-radius: 2px;
  transition: .25s ease;
}

.md-nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.md-nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.md-nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media(max-width:1100px) {

  .md-nav__list,
  .md-nav__actions {
    display: none !important;
  }

  .md-nav__toggle {
    display: flex !important;
  }
}

/* MEGA MENU */
.md-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
  border: 1px solid rgba(0, 0, 0, .07);
  z-index: 200;
  min-width: 480px;
}

.md-nav__item:hover .md-mega {
  display: block;
}

.md-mega__inner {
  display: flex;
  gap: 0;
  padding: 20px;
}

.md-mega__col {
  flex: 1;
  padding: 0 14px;
}

.md-mega__col+.md-mega__col {
  border-left: 1px solid #f1f5f9;
}

.md-mega__heading {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--md-blue);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.md-mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.md-mega__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none !important;
  color: var(--md-navy);
  transition: .15s ease;
}

.md-mega__link:hover {
  background: var(--md-blue-light);
}

.md-mega__icon {
  font-size: 16px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.md-mega__link-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.md-mega__link-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--md-navy);
}

.md-mega__link-sub {
  font-size: 11.5px;
  color: var(--md-gray-600);
}

.md-mega__tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
  letter-spacing: .3px;
}

.md-mega__tag--free {
  background: #d1fae5;
  color: #065f46;
}

.md-mega__tag--new {
  background: #fef3c7;
  color: #92400e;
}

.md-mega__button {
  display: flex;
  padding: 12px 10px 4px;
  border-top: 1px solid #f1f5f9;
  margin-top: 8px;
}

.md-dropdown {
  min-width: 200px;
  padding: 8px;
}

.md-dropdown__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--md-navy);
  text-decoration: none !important;
  transition: .15s ease;
}

.md-dropdown__link:hover {
  background: var(--md-blue-light);
}

/* MOBILE DRAWER */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.mob-overlay.is-visible {
  display: block;
}

.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100vw);
  height: 100%;
  background: var(--md-navy);
  z-index: 999;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.mob-panel {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.mob-panel--sub {
  transform: translateX(100%);
}

.mob-panel--sub.is-visible {
  transform: translateX(0);
}

.mob-panel--root.is-hidden {
  transform: translateX(-30%);
}

.mob-root-list {
  list-style: none;
  padding: 60px 0 16px;
  margin: 0;
}

.mob-root-btn {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.mob-root-btn:hover {
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.mob-root-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  text-decoration: none !important;
}

.mob-actions {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 8px;
}

.mob-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: .18s ease;
}

.mob-btn--login {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .18);
}

.mob-btn--register {
  background: var(--md-yellow);
  color: var(--md-navy);
}

.mob-sub-header {
  position: sticky;
  top: 0;
  background: var(--md-navy);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  z-index: 1;
}

.mob-back-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
}

.mob-back-btn:hover {
  color: #fff;
}

.mob-sub-body {
  padding: 8px 0 24px;
}

.mob-sub-body .md-mega__inner {
  flex-direction: column;
  padding: 12px 16px 20px !important;
}

.mob-sub-body .md-mega__col {
  border: none !important;
  padding: 0 !important;
}

.mob-sub-body .md-mega__col+.md-mega__col {
  border-top: 1px solid rgba(255, 255, 255, .07) !important;
  margin-top: 8px;
  padding-top: 8px !important;
}

.mob-sub-body .md-mega__heading {
  color: var(--md-yellow);
  font-size: 9.5px;
  border-bottom-color: rgba(255, 255, 255, .08);
}

.mob-sub-body .md-mega__link {
  color: rgba(255, 255, 255, .82);
}

.mob-sub-body .md-mega__link:hover {
  background: rgba(255, 255, 255, .07);
}

.mob-sub-body .md-mega__link-title {
  color: #fff;
}

.mob-sub-body .md-mega__link-sub {
  color: rgba(255, 255, 255, .5);
}

.mob-sub-body .md-mega__tag--free {
  background: #d1fae5;
  color: #065f46;
}

.mob-sub-body .md-mega__tag--new {
  background: #fef3c7;
  color: #92400e;
}

.mob-sub-body .md-mega__feature {
  display: none;
}

.mob-sub-body .md-mega__button {
  display: flex !important;
  justify-content: center !important;
  padding: 14px 0 4px !important;
  margin-top: 4px !important;
  border-top: 1px solid rgba(255, 255, 255, .1) !important;
}

.mob-sub-body .md-mega__button .btn-cta-primary {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 11px 16px !important;
  font-size: 13px !important;
  border-radius: 8px !important;
}

.mob-sub-body .md-dropdown {
  padding: 8px 16px 16px;
}

.mob-sub-body .md-dropdown__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 6px;
  border-radius: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: background .15s ease;
}

.mob-sub-body .md-dropdown__link:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.mob-sub-body .md-dropdown__divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 4px 0;
}

@media(max-width:768px) {
  .announcement-bar {
    font-size: 12px;
    padding: 0 10px;
  }

  .md-nav__inner {
    padding: 0 14px;
  }

  .md-nav__logo img {
    height: 24px;
  }
}

@media(max-width:480px) {
  .announcement-bar {
    font-size: 11px;
  }

  .md-nav__inner {
    padding: 0 12px;
  }

  .md-nav__logo img {
    height: 22px;
  }

  .md-nav__toggle {
    padding: 6px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER.CSS — MergerDomo
═══════════════════════════════════════════════════════════════ */
:root {
  --ann-h: 38px;
  --nav-h: 64px;
}

.md-footer {
  background: var(--md-navy);
  font-family: 'Roboto', sans-serif;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.md-footer__body {
  padding: 44px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.md-footer__grid {
  display: grid;
  grid-template-columns: 220px repeat(5, 1fr);
  gap: 0 28px;
  align-items: start;
}

.md-footer__brand {
  display: flex;
  flex-direction: column;
}

.md-footer__logo {
  display: block;
  margin-bottom: 22px;
}

.md-footer__logo img {
  height: 28px;
  width: auto;
}

.md-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.md-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .52);
  line-height: 1.5;
}

.md-footer__contact-row i {
  font-size: 13px;
  color: var(--md-yellow);
  flex-shrink: 0;
  margin-top: 2px;
  width: 14px;
  text-align: center;
}

.md-footer__contact-row a {
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
  transition: color .18s ease;
  word-break: break-word;
}

.md-footer__contact-row a:hover {
  color: #fff;
}

.md-footer__addr {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.5;
}

.md-footer__addr strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1px;
}

.md-footer__addresses {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.md-footer__social-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 8px;
}

.md-footer__social-icons {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.md-footer__social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  flex-shrink: 0;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.md-footer__social-icon:hover {
  background: var(--md-blue);
  border-color: var(--md-blue);
  color: #fff;
}

.md-footer__nav-col {
  min-width: 0;
}

.md-footer__nav-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--md-yellow);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  white-space: nowrap;
}

.md-footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.md-footer__nav-list a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  padding: 4px 0;
  transition: color .18s ease, padding-left .18s ease;
  word-break: break-word;
}

.md-footer__nav-list a:hover {
  color: #fff;
  padding-left: 5px;
}

.md-footer__badge {
  font-size: 9px;
  font-weight: 700;
  background: rgba(45, 108, 223, .3);
  color: #7eb5ff;
  border-radius: 3px;
  padding: 1px 4px;
  flex-shrink: 0;
  margin-left: auto;
  white-space: nowrap;
}

.md-footer__bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.md-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.5;
}

.md-footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.md-footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  padding: 2px 11px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: color .18s ease;
  line-height: 1;
  white-space: nowrap;
}

.md-footer__legal a:last-child {
  border-right: none;
  padding-right: 0;
}

.md-footer__legal a:first-child {
  padding-left: 0;
}

.md-footer__legal a:hover {
  color: #fff;
}

@media(max-width:900px) {
  .md-footer__body {
    padding: 36px 0 28px;
  }

  .md-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }

  .md-footer__brand {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    align-items: start;
  }

  .md-footer__logo {
    grid-column: 1/-1;
    margin-bottom: 0;
  }

  .md-footer__contact {
    margin-bottom: 0;
  }
}

@media(max-width:640px) {
  .md-footer__body {
    padding: 28px 0 24px;
  }

  .md-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  .md-footer__brand {
    grid-column: 1/-1;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media(max-width:480px) {
  .md-footer__body {
    padding: 24px 0 20px;
  }

  .md-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
  }
}

@media(max-width:360px) {
  .md-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }

  .md-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .md-footer__legal a {
    border-right: none;
    padding: 2px 0;
  }
}

/* breadcrumb + body-margin */
.body-margin {
  margin-top: 102px;
}

.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid rgba(13, 27, 76, .06);
  height: 64px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.breadcrumb-bar .container,
.breadcrumb-bar .container-lg {
  display: flex;
  align-items: center;
  height: 100%;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  font-family: 'Roboto', sans-serif;
  font-size: 14px !important;
  font-weight: 500;
  line-height: normal;
}

.breadcrumb a {
  color: #7f8aa3;
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: var(--md-blue);
}

.bc-sep {
  color: #c5cede;
  font-size: 11px;
  display: flex;
  align-items: center;
}

.bc-current {
  color: var(--md-blue);
  font-weight: 700;
}

@media (max-width:768px) {
  .breadcrumb-bar {
    height: 54px;
  }

  .breadcrumb {
    font-size: 12.5px;
    gap: 7px;
  }
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--md-yellow);
  color: var(--md-navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  text-decoration: none !important;
  transition: background .18s ease;
}

.btn-cta-primary:hover {
  background: var(--md-yellow-dark);
  color: var(--md-navy);
}

:root {
  --md-blue: #2d6cdf;
  --md-blue-dark: #1a4fad;
  --md-blue-light: #eef4ff;
  --md-blue-mid: #b8d0f8;
  --md-navy: #0d1b4c;
  --md-yellow: #ffc107;
  --md-yellow-dark: #e6ac00;
  --md-gray-50: #f8fafc;
  --md-gray-100: #f1f5f9;
  --md-gray-200: #e2e8f0;
  --md-gray-400: #94a3b8;
  --md-gray-600: #6b7280;
  --md-gray-800: #1e293b;
  --md-text: #111827;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, .07);
  --shadow-card-lg: 0 8px 28px rgba(0, 0, 0, .09);
  --shadow-blue: 0 4px 20px rgba(45, 108, 223, .18);
  --t: 0.18s ease;
}

* {
  font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none !important;
  color: inherit;
}

body {
  color: var(--md-text);
  overflow-x: hidden;
  background: #fff;
}

.announcement-bar {
  height: 38px;
  background: var(--md-yellow);
  color: var(--md-navy);
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement-bar .sep {
  color: rgba(13, 27, 76, .35);
}

.announcement-bar a {
  font-weight: 700;
  border-bottom: 1.5px solid var(--md-navy);
  color: var(--md-navy);
}

.md-nav {
  height: 64px;
  background: var(--md-navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.md-nav .cf {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LAYOUT */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.full-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ARTICLE HEADER */
.article-header {
  padding: 56px 0 0;
  background: #fff;
}

.article-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--md-blue-light);
  color: var(--md-yellow-dark);
  margin-bottom: 20px;
}

.article-h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--md-navy);
  line-height: 1.1;
  margin-bottom: 18px;
}

.article-h1 span {
  color: var(--md-blue);
}

.article-lede {
  font-size: 16px;
  color: var(--md-gray-600);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 680px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--md-gray-200);
  border-bottom: 1px solid var(--md-gray-200);
  margin-bottom: 40px;
}

.meta-item {
  font-size: 12.5px;
  color: var(--md-gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-item i {
  color: var(--md-blue);
}

/* SECTION LABELS */
.section-label-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--md-blue-light);
  color: var(--md-yellow-dark);
  margin-bottom: 12px;
}

/* HEADINGS */
h2.guide-h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--md-navy);
  line-height: 1.18;
  margin-bottom: 16px;
}

h3.guide-h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--md-navy);
  margin: 28px 0 10px;
}

/* BODY TEXT */
p.guide-p {
  font-size: 15px;
  color: var(--md-gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}

p.guide-p strong {
  color: var(--md-navy);
  font-weight: 700;
}

p.guide-p a,
.inline-guide-link {
  color: var(--md-blue);
  font-weight: 600;
  border-bottom: 1px solid var(--md-blue-mid);
  transition: var(--t);
  padding-bottom: 1px;
}

p.guide-p a:hover,
.inline-guide-link:hover {
  color: var(--md-blue-dark);
  border-bottom-color: var(--md-blue);
}

.inline-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.inline-guide-link i {
  font-size: 12px;
}

/* PULL QUOTE */
.pull-quote {
  border-left: 3px solid var(--md-yellow);
  padding: 18px 24px;
  margin: 32px 0;
  background: var(--md-gray-50);
}

.pull-quote p {
  font-size: 16px;
  font-weight: 500;
  font-style: italic;
  color: var(--md-navy);
  line-height: 1.65;
  margin: 0;
}

/* SECTION DIVIDER */
.article-section {
  padding: 40px 0;
  border-top: 1px solid var(--md-gray-200);
}

.article-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* FINANCING SOURCE CARDS */
.source-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.source-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--md-gray-200);
}

.source-item:last-child {
  border-bottom: none;
}

.source-num-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.source-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--md-navy);
  color: var(--md-yellow);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.source-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--md-navy);
}

.source-body {
  font-size: 14.5px;
  color: var(--md-gray-600);
  line-height: 1.75;
}

.source-body strong {
  color: var(--md-navy);
}

/* CALLOUT BOX */
.callout-box {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
}

.callout-box--blue {
  background: var(--md-blue-light);
  border: 1.5px solid var(--md-blue-mid);
}

.callout-box--yellow {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
}

.callout-box--red {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}

.callout-box--navy {
  background: var(--md-navy);
  border: none;
}

.callout-head {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: 10px;
}

.callout-box--blue .callout-head {
  color: var(--md-blue);
}

.callout-box--yellow .callout-head {
  color: #92400e;
}

.callout-box--red .callout-head {
  color: #b91c1c;
}

.callout-box--navy .callout-head {
  color: var(--md-yellow);
}

.callout-body {
  font-size: 14px;
  line-height: 1.75;
}

.callout-box--blue .callout-body,
.callout-box--yellow .callout-body {
  color: var(--md-gray-800);
}

.callout-box--red .callout-body {
  color: #7f1d1d;
}

.callout-box--navy .callout-body {
  color: rgba(255, 255, 255, .82);
}

.callout-body strong {
  color: var(--md-navy);
}

.callout-box--navy .callout-body strong {
  color: #fff;
}

/* COMBINATION TABLE */
.combo-table-wrap {
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
  box-shadow: var(--shadow-card);
}

.combo-table {
  width: 100%;
  border-collapse: collapse;
}

.combo-table thead tr {
  background: var(--md-navy);
}

.combo-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255, 255, 255, .8);
}

.combo-table td {
  padding: 13px 16px;
  font-size: 13.5px;
  color: var(--md-gray-600);
  border-bottom: 1px solid var(--md-gray-200);
}

.combo-table tr:last-child td {
  border-bottom: none;
}

.combo-table tr:hover td {
  background: var(--md-blue-light);
}

.combo-table td:first-child {
  font-weight: 700;
  color: var(--md-navy);
}

@media(max-width:640px) {
  .combo-table-wrap {
    overflow-x: auto;
  }

  .combo-table {
    min-width: 500px;
  }
}

/* MISTAKE LIST */
.mistake-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mistake-list li {
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--md-gray-200);
  font-size: 15px;
  color: var(--md-gray-600);
  line-height: 1.75;
  position: relative;
}

.mistake-list li:last-child {
  border-bottom: none;
}

.mistake-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e84b4b;
}

.mistake-list li strong {
  color: var(--md-navy);
  display: block;
  margin-bottom: 4px;
  font-size: 14.5px;
}

/* LENDER QUESTIONS */
.lender-q-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.lender-q-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--md-gray-200);
  align-items: flex-start;
}

.lender-q-item:last-child {
  border-bottom: none;
}

.lender-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--md-blue-light);
  color: var(--md-blue);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.lender-q-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 4px;
}

.lender-q-body {
  font-size: 14px;
  color: var(--md-gray-600);
  line-height: 1.7;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--md-gray-200);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--md-navy);
  transition: var(--t);
}

.faq-q:hover {
  color: var(--md-blue);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--md-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  color: var(--md-navy);
  transition: .3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--md-blue-dark);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: 13.5px;
  color: var(--md-gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 16px;
}

/* RELATED */
.related-link {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--md-gray-200);
  align-items: center;
  color: inherit;
  transition: var(--t);
}

.related-link:last-of-type {
  border-bottom: none;
}

.related-link:hover .related-link-title {
  color: var(--md-blue);
}

.related-link-tag {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--md-blue);
  margin-bottom: 3px;
}

.related-link-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--md-navy);
  transition: var(--t);
}

.related-link-arrow {
  color: var(--md-gray-400);
  margin-left: auto;
  flex-shrink: 0;
}

/* BUTTONS */
.btn-primary-md {
  background: var(--md-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .25s ease;
  box-shadow: 0 4px 12px rgba(45, 108, 223, .14);
}

.btn-primary-md:hover {
  background: var(--md-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-cta-primary {
  background: var(--md-yellow);
  color: var(--md-navy);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: .25s ease;
  box-shadow: 0 4px 14px rgba(255, 193, 7, .3);
}

.btn-cta-primary:hover {
  background: var(--md-yellow-dark);
  color: var(--md-navy);
  transform: translateY(-1px);
}

/* FOOTER */
.md-footer {
  background: var(--md-navy);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 60px 0 0;
  color: #fff;
}

/* ANIMATIONS */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] {
  transition-delay: .1s;
}

[data-delay="200"] {
  transition-delay: .2s;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .full-wrap {
    padding: 0 16px;
  }

  .btn-cta-primary,
  .btn-primary-md {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width:520px) {
  .article-h1 {
    font-size: 26px;
  }

  h2.guide-h2 {
    font-size: 20px;
  }
}

/* PAGE LAYOUT */
.page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.article-col {
  min-width: 0;
  max-width: 820px;
}

.toc-col {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.toc-col::-webkit-scrollbar {
  width: 3px;
}

.toc-col::-webkit-scrollbar-thumb {
  background: var(--md-blue-mid);
  border-radius: 999px;
}

@media(max-width:1024px) {
  .page-layout {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .toc-col {
    display: none;
  }
}

/* STICKY TOC */
.sticky-toc {
  background: #fff;
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.toc-head {
  background: var(--md-navy);
  color: var(--md-yellow);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 16px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
}

.toc-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--md-gray-600);
  padding: 9px 16px;
  border-bottom: 1px solid var(--md-gray-200);
  transition: var(--t);
  display: block;
  line-height: 1.4;
}

.toc-link:last-child {
  border-bottom: none;
}

.toc-link:hover,
.toc-link.active {
  background: var(--md-blue-light);
  color: var(--md-blue);
  padding-left: 20px;
  font-weight: 600;
}

.toc-link.active {
  border-left: 3px solid var(--md-blue);
}

/* CTA+FAQ BAND */
.cta-faq-band {
  background: var(--md-blue-dark);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-faq-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 100% 0%, rgba(255, 193, 7, .07) 0%, transparent 60%), radial-gradient(ellipse 400px 300px at 0% 100%, rgba(45, 108, 223, .18) 0%, transparent 60%);
  pointer-events: none;
}

.cfb-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.cfb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cfb-cta-block {
  color: #fff;
}

.cfb-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--md-yellow);
  background: rgba(255, 193, 7, .12);
  border: 1px solid rgba(255, 193, 7, .3);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.cfb-h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.cfb-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  margin-bottom: 26px;
}

.cfb-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.cfb-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
  padding: 6px 0;
}

.cfb-step-num {
  width: 26px;
  height: 26px;
  background: var(--md-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, .25);
}

.cfb-step-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  line-height: 1;
  padding: 2px 0 2px 38px;
}

.cfb-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cfb-btn-primary {
  background: var(--md-yellow);
  color: var(--md-navy);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: .25s ease;
  box-shadow: 0 4px 16px rgba(255, 193, 7, .35);
  white-space: nowrap;
  border: none;
  width: 100%;
  cursor: pointer;
}

.cfb-btn-primary:hover {
  background: var(--md-yellow-dark);
  color: var(--md-navy);
  transform: translateY(-1px);
}

.cfb-btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: .25s ease;
  width: 100%;
  cursor: pointer;
}

.cfb-btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.cfb-faq-block {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
}

.cfb-faq-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 16px;
  line-height: 1.35;
}

.cfb-faq-block .faq-item {
  border-bottom: 1px solid var(--md-gray-200);
}

.cfb-faq-block .faq-item:first-of-type {
  border-top: 1px solid var(--md-gray-200);
}

.cfb-faq-block .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--md-navy);
  transition: color var(--t);
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.cfb-faq-block .faq-q:hover {
  color: var(--md-blue);
}

.cfb-faq-block .faq-icon {
  font-size: 17px;
  color: var(--md-gray-600);
  transition: transform .3s ease, background .3s ease, color .3s ease;
}

.cfb-faq-block .faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--md-blue-dark);
  color: #fff;
}

.cfb-faq-block .faq-item.open .faq-q {
  color: var(--md-blue-dark);
}

.cfb-faq-block .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  font-size: 13px;
  color: var(--md-gray-600);
  line-height: 1.7;
}

.cfb-faq-block .faq-item.open .faq-a {
  max-height: 260px;
  padding-bottom: 14px;
}

@media(max-width:900px) {
  .cfb-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media(max-width:768px) {
  .cta-faq-band {
    padding: 48px 0;
  }

  .cfb-inner {
    padding: 0 16px;
  }

  .cfb-btns {
    max-width: 100%;
  }
}

/* DISCLAIMER */
.disclaimer {
  font-size: 12px;
  color: var(--md-gray-400);
  line-height: 1.65;
  font-style: italic;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--md-gray-200);
}

/* EXAMPLE CARDS — illustrative deal structures */
.example-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

@media(max-width:900px) {
  .example-cards {
    grid-template-columns: 1fr;
  }
}

.example-card {
  background: #fff;
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--t);
}

.example-card:hover {
  border-color: var(--md-blue-mid);
  box-shadow: var(--shadow-card-lg);
}

.example-card-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--md-navy);
  margin-bottom: 4px;
}

.example-card-type {
  font-size: 11.5px;
  color: var(--md-gray-400);
  margin-bottom: 14px;
  font-style: italic;
}

.example-card-body {
  font-size: 13.5px;
  color: var(--md-gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.example-card-body strong {
  color: var(--md-navy);
}

.example-card-split {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.example-split-item {
  flex: 1;
  min-width: 56px;
  background: var(--md-blue-light);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
}

.example-split-pct {
  font-size: 16px;
  font-weight: 800;
  color: var(--md-blue);
  line-height: 1;
}

.example-split-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--md-gray-600);
  margin-top: 3px;
  line-height: 1.3;
}

/* COST GRID — beyond purchase price */
.cost-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0;
}

.cost-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--md-gray-200);
  align-items: flex-start;
}

.cost-item:last-child {
  border-bottom: none;
}

.cost-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--md-blue-light);
  color: var(--md-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cost-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--md-navy);
  margin-bottom: 6px;
}

.cost-body {
  font-size: 14px;
  color: var(--md-gray-600);
  line-height: 1.75;
}

.cost-body strong {
  color: var(--md-navy);
}

/* DOC CHECKLIST */
.doc-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.doc-group {
  background: var(--md-gray-50);
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.doc-group-head {
  background: var(--md-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doc-group-head i {
  color: var(--md-yellow);
}

.doc-items {
  list-style: none;
  padding: 12px 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.doc-items li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--md-gray-600);
  padding: 8px 0;
  border-bottom: 1px solid var(--md-gray-200);
  line-height: 1.5;
}

.doc-items li:last-child {
  border-bottom: none;
}

.doc-items li i {
  color: var(--md-blue);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
/* ── FAQ ADVISOR CTA ── */
.faq-advisor-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--md-gray-200);
}

.faq-advisor-cta span {
  font-size: 13px;
  color: var(--md-gray-600);
}

@media (max-width: 768px) {
  .faq-advisor-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .faq-advisor-cta .btn,
  .faq-advisor-cta .btn-primary {
    width: 100%;
  }
}
/* show more / collapsible group */
.cfb-faq-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cfb-faq-more.expanded {
  max-height: 2000px;
}

/* ── FAQ SHOW MORE BUTTON ── */
.faq-show-more-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 0;
  margin: 12px 0 8px;
  background: none;
  border: 1.5px solid var(--md-gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--md-gray-600);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.faq-show-more-btn:hover {
  border-color: var(--md-blue);
  color: var(--md-blue);
  background: var(--md-blue-light);
}

@media(max-width:900px){.cfb-grid{grid-template-columns:1fr;gap:36px;}}
@media(max-width:768px){.cta-faq-band{padding:48px 0;}.cfb-inner{padding:0 16px;}}