:root {
  --navy: #0a2540;
  --navy-soft: #123a5c;
  --gold: #2f7fd1;
  --gold-light: #a9d6f5;
  --ink: #16232e;
  --muted: #56707f;
  --line: #d7e6f0;
  --surface: #f2f8fc;
  --warm: #eaf3fa;
  --white: #fff;
  --shadow: 0 22px 55px rgba(11, 29, 45, .13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 15px;
  color: #000;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.topbar {
  color: rgba(255,255,255,.8);
  background: var(--navy);
  font-size: .84rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
}

.topbar a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(11,29,45,.09);
  backdrop-filter: blur(14px);
}

.navigation-row {
  display: flex;
  align-items: center;
  min-height: 88px;
  gap: 30px;
}

.brand {
  flex: 0 0 190px;
}

.brand img {
  width: 190px;
  max-height: 68px;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 28px;
}

.primary-navigation a {
  color: var(--navy);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

.header-button,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 9px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.header-button,
.button-primary {
  color: #fff;
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(31,110,183,.24);
}

.button-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(11,29,45,.2);
}

.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-button > span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%,
      rgba(167,25,48,.18), transparent 30%),
    linear-gradient(130deg,
      #081624 0%, #102a40 67%, #193b52 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 680px;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.hero-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 35px;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
}

.trust-points span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold-light);
}

.hero-image {
  position: relative;
}

.hero-image > img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 4px 70px 4px 4px;
  box-shadow: 0 35px 80px rgba(0,0,0,.32);
}

.hero-image-card {
  position: absolute;
  left: -38px;
  bottom: 30px;
  display: grid;
  max-width: 290px;
  gap: 6px;
  padding: 23px 25px;
  color: var(--navy);
  background: #fff;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero-image-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.hero-image-card span {
  color: var(--muted);
  font-size: .87rem;
}

.practice-section {
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.practice-card {
  min-height: 285px;
  padding: 34px 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.practice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.card-number {
  color: var(--gold);
  font-weight: 900;
}

.practice-card h3 {
  margin: 44px 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.practice-card p {
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 75px;
}

.attorney-image {
  position: relative;
}

.attorney-image::before {
  content: "";
  position: absolute;
  inset: 25px -25px -25px 25px;
  z-index: -1;
  background: var(--warm);
}

.attorney-image img {
  width: 100%;
  max-height: 610px;
  object-fit: cover;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.approach-section {
  color: #fff;
  background: var(--navy);
}

.section-heading-light h2 {
  color: #fff;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.approach-grid article {
  padding: 31px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
}

.approach-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 50%;
  font-weight: 900;
}

.approach-grid h3 {
  margin: 27px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.approach-grid p {
  color: rgba(255,255,255,.72);
}

.contact-section {
  background: var(--warm);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.contact-copy p {
  color: var(--muted);
}

.contact-phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  padding: 35px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: .87rem;
  font-weight: 800;
}

.full-field {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd7de;
  border-radius: 8px;
  outline: none;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(31,110,183,.16);
}

.contact-form button {
  width: 100%;
  margin-top: 20px;
  padding: 15px 20px;
  color: #fff;
  background: var(--gold);
  border: 0;
  border-radius: 9px;
  font-weight: 900;
  cursor: pointer;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .7;
}

.form-status {
  min-height: 25px;
  margin: 14px 0 0;
  font-weight: 800;
  text-align: center;
}

.form-status.success {
  color: #137333;
}

.form-status.error {
  color: #b3261e;
}

.form-disclaimer {
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  color: rgba(255,255,255,.74);
  background: #07121d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 55px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-grid h2 {
  color: #fff;
  font-size: .94rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
}

@media (max-width: 950px) {
  .header-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .navigation-row {
    justify-content: space-between;
  }

  .primary-navigation {
    position: absolute;
    top: 88px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .primary-navigation.open {
    display: grid;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 65px 0;
  }

  .topbar {
    display: none;
  }

  .brand,
  .brand img {
    width: 165px;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-image > img {
    min-height: 360px;
  }

  .hero-image-card {
    position: relative;
    left: 0;
    bottom: 0;
    max-width: none;
  }

  .practice-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }
}

/* STEINBERG HERO BG OVERRIDE */
.hero {
  width: 100%;
  background:
    linear-gradient(rgba(8,22,36,.74), rgba(8,22,36,.64)),
    url("/assets/images/steinberg_law_llc.webp") center center / cover no-repeat !important;
}

.hero .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(28px, 6vw, 120px);
  padding-right: clamp(28px, 6vw, 120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 660px;
  gap: 0;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(3.05rem, 5.4vw, 5.9rem);
}

.hero-copy > p {
  max-width: 900px;
  margin: 28px auto 0;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero-actions,
.trust-points {
  justify-content: center;
}

.hero-image,
.hero-image-card {
  display: none !important;
}

@media (max-width: 700px) {
  .hero-grid {
    min-height: 560px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  .hero .container {
    padding-left: 22px;
    padding-right: 22px;
  }
}


/* STEINBERG HOMEPAGE IMAGE CARDS */
.practice-grid-images {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.practice-image-card {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
}

.practice-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
}

.practice-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(8, 22, 36, .28),
      transparent 55%
    );
}

.practice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.practice-image-card:hover .practice-image img {
  transform: scale(1.045);
}

.practice-card-body {
  padding: 27px 26px 30px;
}

.practice-image-card .card-number {
  display: block;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.practice-image-card h3 {
  margin: 15px 0 11px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.18;
}

.practice-image-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.practice-link {
  display: inline-block;
  margin-top: 21px;
  color: var(--gold);
  font-size: .88rem;
  font-weight: 900;
}

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

@media (max-width: 640px) {
  .practice-grid-images {
    grid-template-columns: 1fr;
  }

  .practice-image {
    aspect-ratio: 16 / 10;
  }
}

/* STEINBERG RED WHITE BLUE BRAND PALETTE */
:root {
  --navy: #0b2344;
  --navy-soft: #163e6c;
  --brand-blue: #1f6eb7;
  --brand-blue-dark: #174f86;
  --accent-red: #A71930;
  --accent-red-soft: #A71930;
  --ink: #16243a;
  --muted: #58677a;
  --line: #d7e1ed;
  --surface: #f3f7fb;
  --warm: #eef4fa;
  --white: #ffffff;

  /* Replace the old gold variables everywhere */
  --gold: #1f6eb7;
  --gold-light: #A71930;
}

body {
  color: var(--ink);
  background: #ffffff;
}

.topbar {
  background: var(--navy);
}

.site-header {
  background: rgba(255,255,255,.98);
  border-bottom: 3px solid var(--brand-blue);
}

.primary-navigation a {
  color: var(--navy);
}

.primary-navigation a:hover {
  color: var(--accent-red);
}

.header-button,
.button-primary {
  color: #ffffff;
  background: var(--brand-blue);
  box-shadow: 0 12px 28px rgba(31,110,183,.22);
}

.header-button:hover,
.button-primary:hover {
  background: var(--brand-blue-dark);
}

.button-secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: rgba(31,110,183,.45);
}

.eyebrow,
.card-number,
.practice-link,
.text-link {
  color: var(--accent-red);
}

.trust-points span::before {
  color: var(--accent-red-soft);
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 27px auto 0;
  background: var(--accent-red);
  border-radius: 20px;
}

.practice-section {
  background: var(--surface);
}

.practice-card,
.practice-image-card {
  border-color: var(--line);
}

.practice-card:hover,
.practice-image-card:hover {
  border-color: var(--accent-red-soft);
  box-shadow: 0 20px 48px rgba(11,35,68,.13);
}

.about-image::before,
.attorney-image::before {
  background: var(--surface);
  border-left: 5px solid var(--accent-red);
}

.approach-section,
.process-section {
  background: var(--navy);
}

.approach-grid article,
.process-grid > div {
  border-color: rgba(255,255,255,.16);
}

.approach-grid article > span,
.process-grid span {
  color: #ffffff;
  background: var(--accent-red);
}

.contact-section,
.contact-band {
  background: var(--surface);
}

.contact-form,
.consultation-form {
  color: #ffffff;
  background: var(--brand-blue);
  border: 0;
  border-top: 5px solid var(--accent-red);
  box-shadow: 0 22px 55px rgba(11,35,68,.18);
}

.contact-form label,
.consultation-form label {
  color: #ffffff;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(11,35,68,.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(167,25,48,.18);
}

.contact-form button,
.consultation-form button {
  color: #ffffff;
  background: var(--navy);
  border-bottom: 3px solid var(--accent-red);
}

.contact-form button:hover,
.consultation-form button:hover {
  background: var(--navy-soft);
}

.form-disclaimer,
.form-note {
  color: rgba(255,255,255,.82);
}

.form-status.success {
  color: #ffffff;
}

.form-status.error {
  color: #ffe4e8;
}

.contact-phone,
.phone-link {
  color: var(--brand-blue);
}

.site-footer {
  background: #07172c;
  border-top: 5px solid var(--accent-red);
}

.footer-grid a:hover {
  color: var(--accent-red-soft);
}


/* STEINBERG STATIC PILLAR PAGES */
.steinberg-pillar-wrap {
  width: min(1500px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.steinberg-pillar-hero {
  position: relative;
  display: flex;
  min-height: 500px;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(
      90deg,
      rgba(7,23,44,.97) 0%,
      rgba(11,35,68,.90) 48%,
      rgba(11,35,68,.55) 100%
    ),
    var(--pillar-image);
  background-position: center;
  background-size: cover;
}

.steinberg-pillar-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(167,25,48,.20),
      transparent 30%
    );
  pointer-events: none;
}

.steinberg-pillar-hero .steinberg-pillar-wrap {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 75px;
}

.steinberg-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.76);
  font-size: .86rem;
}

.steinberg-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.steinberg-pillar-hero h1 {
  max-width: 950px;
  margin: 14px 0 20px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
}

.steinberg-pillar-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  line-height: 1.75;
}

.steinberg-pillar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.steinberg-pillar-main {
  padding: 78px 0 88px;
  background: #fff;
}

.steinberg-pillar-grid {
  display: grid;
  grid-template-columns:
    minmax(0,1fr)
    minmax(310px,370px);
  gap: clamp(45px,6vw,90px);
  align-items: start;
}

.steinberg-pillar-content {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.82;
}

.steinberg-pillar-content > :first-child {
  margin-top: 0;
}

.steinberg-pillar-content h2 {
  margin: 50px 0 17px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem,3vw,2.65rem);
  font-weight: 500;
  line-height: 1.2;
}

.steinberg-pillar-content h3 {
  margin: 36px 0 13px;
  color: var(--navy-soft);
  font-size: 1.4rem;
  line-height: 1.3;
}

.steinberg-pillar-content h4 {
  margin: 28px 0 12px;
  color: var(--navy);
}

.steinberg-pillar-content p {
  margin: 0 0 22px;
}

.steinberg-pillar-content ul,
.steinberg-pillar-content ol {
  margin: 0 0 26px;
  padding-left: 26px;
}

.steinberg-pillar-content li {
  margin-bottom: 10px;
}

.steinberg-pillar-content a {
  color: var(--brand-blue);
  text-underline-offset: 3px;
}

.steinberg-pillar-content blockquote {
  margin: 36px 0;
  padding: 25px 29px;
  color: var(--navy);
  background: var(--surface);
  border-left: 5px solid var(--accent-red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.65;
}

.steinberg-pillar-content table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}

.steinberg-pillar-content th,
.steinberg-pillar-content td {
  padding: 14px;
  text-align: left;
  border: 1px solid var(--line);
}

.steinberg-pillar-content th {
  color: #fff;
  background: var(--navy);
}

.steinberg-pillar-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 23px;
}

.steinberg-sidebar-card {
  padding: 29px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent-red);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11,35,68,.08);
}

.steinberg-sidebar-card h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.steinberg-sidebar-card p {
  color: var(--muted);
  line-height: 1.65;
}

.steinberg-sidebar-button {
  display: block;
  margin-top: 20px;
  text-align: center;
}

.steinberg-practice-links {
  display: grid;
}

.steinberg-practice-links a {
  padding: 13px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-decoration: none;
}

.steinberg-practice-links a:last-child {
  border-bottom: 0;
}

.steinberg-practice-links a:hover {
  color: var(--accent-red);
}

.steinberg-pillar-cta {
  padding: 54px 0;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--navy-soft)
    );
  border-bottom: 5px solid var(--accent-red);
}

.steinberg-pillar-cta-inner {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
}

.steinberg-pillar-cta h2 {
  margin: 7px 0 9px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem,4vw,3.1rem);
  font-weight: 500;
}

.steinberg-pillar-cta p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

@media (max-width: 980px) {
  .steinberg-pillar-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-pillar-sidebar {
    position: static;
  }

  .steinberg-pillar-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .steinberg-pillar-wrap {
    width: min(100% - 28px,1500px);
  }

  .steinberg-pillar-hero {
    min-height: 460px;
  }

  .steinberg-pillar-hero .steinberg-pillar-wrap {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .steinberg-pillar-main {
    padding-top: 54px;
  }

  .steinberg-pillar-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .steinberg-pillar-actions a {
    text-align: center;
  }
}


/* STEINBERG PILLAR WIDE BODY FIX */
.steinberg-pillar-main .steinberg-pillar-wrap {
  width: min(92vw, 1800px);
  max-width: none;
}

.steinberg-pillar-grid {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(290px, 340px);
  gap: clamp(28px, 3vw, 55px);
}

.steinberg-pillar-content {
  width: 100%;
  max-width: none;
}

@media (max-width: 1100px) {
  .steinberg-pillar-main .steinberg-pillar-wrap {
    width: min(94vw, 1800px);
  }
}

@media (max-width: 980px) {
  .steinberg-pillar-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .steinberg-pillar-main .steinberg-pillar-wrap {
    width: calc(100% - 28px);
  }
}


/* STEINBERG PILLAR BUTTON FIX */
.steinberg-pillar-actions a,
.steinberg-sidebar-button,
.steinberg-pillar-cta .button-primary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.steinberg-pillar-actions .button-primary,
.steinberg-sidebar-button,
.steinberg-pillar-cta .button-primary {
  color: #ffffff !important;
  background: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
  box-shadow: 0 12px 28px rgba(31,110,183,.24);
}

.steinberg-pillar-actions .button-primary:hover,
.steinberg-sidebar-button:hover,
.steinberg-pillar-cta .button-primary:hover {
  color: #ffffff !important;
  background: var(--brand-blue-dark) !important;
  border-color: var(--brand-blue-dark) !important;
  transform: translateY(-1px);
}

.steinberg-pillar-actions .button-secondary {
  color: var(--navy) !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(7,23,44,.18);
}

.steinberg-pillar-actions .button-secondary:hover {
  color: #ffffff !important;
  background: var(--accent-red) !important;
  border-color: var(--accent-red) !important;
  transform: translateY(-1px);
}

.steinberg-sidebar-button {
  display: flex;
  width: 100%;
}

@media (max-width: 680px) {
  .steinberg-pillar-actions a {
    width: 100%;
  }
}


/* STEINBERG SIDEBAR PRACTICE CARDS */
.steinberg-practice-links {
  display: grid;
  gap: 12px;
}

.steinberg-practice-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  color: var(--navy);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(11,35,68,.08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.steinberg-practice-card:hover {
  transform: translateY(-1px);
  border-color: var(--accent-red);
  box-shadow: 0 14px 32px rgba(11,35,68,.12);
}

.steinberg-practice-card-image-wrap {
  display: block;
  width: 88px;
  height: 68px;
  overflow: hidden;
  border-radius: 10px;
  background: #eaf1f8;
}

.steinberg-practice-card-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}

.steinberg-practice-card:hover .steinberg-practice-card-image-wrap img {
  transform: scale(1.03);
}

.steinberg-practice-card-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.steinberg-practice-card-label {
  display: block;
  color: var(--navy);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.25;
}

.steinberg-practice-card-view {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .steinberg-practice-card {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .steinberg-practice-card-image-wrap {
    width: 80px;
    height: 62px;
  }
}


/* STEINBERG SIDEBAR CONTACT FORM */
.steinberg-contact-form-card {
  padding: 30px 28px;
  color: #ffffff;
  background:
    linear-gradient(
      150deg,
      var(--brand-blue) 0%,
      var(--navy-soft) 100%
    );
  border: 0;
  border-top: 5px solid var(--accent-red);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(11,35,68,.18);
}

.steinberg-contact-form-heading {
  margin-bottom: 24px;
}

.steinberg-contact-form-heading .eyebrow {
  margin-bottom: 7px;
  color: #ffffff;
}

.steinberg-contact-form-heading h2 {
  margin: 0 0 11px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}

.steinberg-contact-form-heading p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.55;
}

.steinberg-contact-form-heading a {
  color: #ffffff;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.steinberg-sidebar-form {
  display: grid;
  gap: 19px;
}

.steinberg-form-field {
  display: grid;
  gap: 5px;
}

.steinberg-form-field label {
  color: #ffffff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.steinberg-form-field input,
.steinberg-form-field select,
.steinberg-form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 8px 0 10px;
  color: #ffffff;
  background: transparent !important;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.66);
  border-radius: 0;
  box-shadow: none;
  font: inherit;
  line-height: 1.4;
  outline: none;
}

.steinberg-form-field input {
  min-height: 39px;
}

.steinberg-form-field select {
  min-height: 42px;
  cursor: pointer;
}

.steinberg-form-field select option {
  color: var(--ink);
  background: #ffffff;
}

.steinberg-form-field textarea {
  min-height: 95px;
  resize: vertical;
}

.steinberg-form-field input:focus,
.steinberg-form-field select:focus,
.steinberg-form-field textarea:focus {
  border-bottom-color: var(--accent-red-soft);
  box-shadow: 0 2px 0 var(--accent-red-soft);
}

.steinberg-form-field input:-webkit-autofill,
.steinberg-form-field input:-webkit-autofill:hover,
.steinberg-form-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  transition: background-color 9999s ease-out;
  box-shadow:
    0 0 0 1000px transparent inset,
    0 2px 0 var(--accent-red-soft);
}

.steinberg-form-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 3px;
  padding: 14px 18px;
  color: #ffffff;
  background: var(--navy);
  border: 0;
  border-bottom: 4px solid var(--accent-red);
  border-radius: 0;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .025em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color .2s ease,
    transform .2s ease;
}

.steinberg-form-submit:hover {
  background: #07172c;
  transform: translateY(-1px);
}

.steinberg-form-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.steinberg-form-status {
  min-height: 21px;
  margin: 0;
  color: #ffffff;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.45;
}

.steinberg-form-status.is-success {
  color: #ffffff;
}

.steinberg-form-status.is-error {
  color: #ffe1e6;
}

.steinberg-form-honeypot {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .steinberg-contact-form-card {
    max-width: 620px;
  }
}


/* STEINBERG COMPACT SIDEBAR FORM */
.steinberg-contact-form-card {
  padding-top: 22px;
  padding-bottom: 22px;
}

.steinberg-contact-form-heading {
  margin-bottom: 16px;
}

.steinberg-contact-form-heading .eyebrow {
  margin-bottom: 4px;
}

.steinberg-contact-form-heading h2 {
  margin-bottom: 7px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.steinberg-contact-form-heading p {
  font-size: .86rem;
  line-height: 1.4;
}

.steinberg-sidebar-form {
  gap: 12px;
}

.steinberg-form-field {
  gap: 2px;
}

.steinberg-form-field label {
  font-size: .73rem;
}

.steinberg-form-field input,
.steinberg-form-field select,
.steinberg-form-field textarea {
  padding-top: 5px;
  padding-bottom: 6px;
}

.steinberg-form-field input {
  min-height: 31px;
}

.steinberg-form-field select {
  min-height: 34px;
}

.steinberg-form-field textarea {
  min-height: 70px;
  height: 70px;
}

.steinberg-form-submit {
  min-height: 44px;
  margin-top: 1px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.steinberg-form-status {
  min-height: 17px;
  font-size: .8rem;
}


/* STEINBERG FINAL COMPACT FORM */
.steinberg-contact-form-card {
  padding: 18px 24px 20px !important;
}

.steinberg-contact-form-heading {
  margin-bottom: 13px !important;
}

.steinberg-contact-form-heading .eyebrow {
  margin: 0 0 3px !important;
}

.steinberg-contact-form-heading h2 {
  margin: 0 0 6px !important;
  font-size: 1.42rem !important;
  line-height: 1.12 !important;
}

.steinberg-contact-form-heading p {
  margin: 0 !important;
  line-height: 1.35 !important;
}

.steinberg-sidebar-form {
  gap: 8px !important;
}

.steinberg-form-field {
  gap: 1px !important;
  margin: 0 !important;
}

.steinberg-form-field label {
  margin: 0 !important;
  line-height: 1.15 !important;
}

.steinberg-form-field input,
.steinberg-form-field select,
.steinberg-form-field textarea {
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 5px 2px 6px !important;
  line-height: 1.25 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.steinberg-form-field input {
  height: 29px !important;
}

.steinberg-form-field select {
  height: 32px !important;
}

.steinberg-form-field textarea {
  height: 58px !important;
  min-height: 58px !important;
  max-height: 110px !important;
}

.steinberg-form-submit {
  min-height: 42px !important;
  margin-top: 2px !important;
  padding: 10px 14px !important;
}

.steinberg-form-status {
  min-height: 0 !important;
  margin: 0 !important;
}


/* STEINBERG RELATED BLOGS AND FAQS */
.steinberg-related-blog-card {
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(
      150deg,
      var(--brand-blue) 0%,
      var(--navy-soft) 100%
    );
  border-top: 5px solid var(--accent-red);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(11,35,68,.16);
}

.steinberg-related-blog-card .eyebrow {
  margin: 0 0 6px;
  color: #ffffff;
}

.steinberg-related-blog-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 500;
  line-height: 1.18;
}

.steinberg-related-blog-intro {
  margin: 0 0 17px;
  color: rgba(255,255,255,.84);
  font-size: .86rem;
  line-height: 1.5;
}

.steinberg-related-blog-links {
  display: grid;
  gap: 8px;
}

.steinberg-related-blog-link {
  display: grid;
  grid-template-columns: 30px minmax(0,1fr);
  gap: 10px;
  align-items: start;
  padding: 11px 10px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(7,23,44,.28);
  border-left: 3px solid rgba(255,255,255,.28);
  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.steinberg-related-blog-link:hover {
  color: #ffffff;
  background: rgba(7,23,44,.48);
  border-left-color: var(--accent-red-soft);
  transform: translateX(2px);
}

.steinberg-related-blog-number {
  color: var(--accent-red-soft);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.4;
}

.steinberg-related-blog-copy {
  display: grid;
  gap: 4px;
}

.steinberg-related-blog-copy strong {
  color: #ffffff;
  font-size: .85rem;
  line-height: 1.32;
}

.steinberg-related-blog-copy small {
  color: rgba(255,255,255,.68);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.steinberg-faq-section {
  margin-top: 64px;
  padding: 38px 40px 40px;
  background: var(--surface);
  border-top: 5px solid var(--accent-red);
  border-radius: 0;
}

.steinberg-faq-heading {
  max-width: 850px;
  margin-bottom: 27px;
}

.steinberg-faq-heading .eyebrow {
  margin: 0 0 7px;
}

.steinberg-faq-heading h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem,3vw,2.75rem);
  font-weight: 500;
  line-height: 1.18;
}

.steinberg-faq-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.steinberg-faq-list {
  background: #ffffff;
  border: 1px solid var(--line);
}

.steinberg-faq-item {
  border-bottom: 1px solid var(--line);
}

.steinberg-faq-item:last-child {
  border-bottom: 0;
}

.steinberg-faq-item summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 17px 58px 17px 21px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

.steinberg-faq-item summary::-webkit-details-marker {
  display: none;
}

.steinberg-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 24px;
  height: 24px;
  content: "+";
  color: #ffffff;
  background: var(--brand-blue);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.steinberg-faq-item[open] summary {
  color: var(--brand-blue-dark);
  background: #f7fafd;
}

.steinberg-faq-item[open] summary::after {
  content: "−";
  background: var(--accent-red);
}

.steinberg-faq-answer {
  padding: 0 21px 20px;
}

.steinberg-faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 680px) {
  .steinberg-related-blog-card {
    padding-right: 19px;
    padding-left: 19px;
  }

  .steinberg-faq-section {
    margin-top: 48px;
    padding: 28px 20px 30px;
  }

  .steinberg-faq-item summary {
    padding-right: 52px;
    padding-left: 16px;
  }

  .steinberg-faq-answer {
    padding-right: 16px;
    padding-left: 16px;
  }
}


/* STEINBERG LOGO BODY ALIGNMENT */
.site-header .container,
.site-header .header-inner,
.site-header-inner,
header.site-header > .container,
header.site-header > .header-inner {
  width: min(92vw, 1800px) !important;
  max-width: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.site-header .site-brand,
.site-header .brand,
.site-header .logo,
.site-header .site-logo,
.site-header .npj-logo {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

@media (max-width: 1100px) {
  .site-header .container,
  .site-header .header-inner,
  .site-header-inner,
  header.site-header > .container,
  header.site-header > .header-inner {
    width: min(94vw, 1800px) !important;
  }
}

@media (max-width: 680px) {
  .site-header .container,
  .site-header .header-inner,
  .site-header-inner,
  header.site-header > .container,
  header.site-header > .header-inner {
    width: calc(100% - 28px) !important;
  }
}


/* STEINBERG SOCIAL TOP BAR */
.topbar {
  min-height: 40px;
  padding: 0 !important;
  background: var(--navy);
  border: 0;
}

.steinberg-topbar-inner {
  display: flex;
  width: min(92vw, 1800px);
  min-height: 40px;
  margin-right: auto;
  margin-left: auto;
  align-items: center;
  gap: 12px;
}

.steinberg-topbar-social {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
}

.steinberg-topbar-icon {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 0;
  text-decoration: none;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s ease;
}

.steinberg-topbar-icon:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-1px);
}

.steinberg-linkedin-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.steinberg-google-icon {
  background: #ffffff;
}

.steinberg-google-icon svg {
  width: 16px;
  height: 16px;
}

.steinberg-google-icon:hover {
  background: #ffffff;
  border-color: var(--accent-red);
}

.steinberg-topbar-service {
  color: rgba(255,255,255,.88);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .steinberg-topbar-inner {
    width: min(94vw, 1800px);
  }
}

@media (max-width: 680px) {
  .steinberg-topbar-inner {
    width: calc(100% - 28px);
    min-height: 44px;
    gap: 9px;
  }

  .steinberg-topbar-service {
    font-size: .66rem;
    letter-spacing: .035em;
  }
}


/* STEINBERG TOP BAR DIAGONAL SPLIT */
.topbar {
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy) 49.5%,
    var(--accent-red) 49.5%,
    var(--accent-red) 100%
  ) !important;
}


/* STEINBERG A71930 BRAND RED */
:root {
  --accent-red: #A71930;
  --accent-red-soft: #A71930;
}


/* STEINBERG MOBILE FORM CORRECT ORDER */
@media (max-width: 900px) {
  .steinberg-pillar-grid >
  .steinberg-contact-form-card.steinberg-mobile-form-active {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 32px !important;
  }

  .steinberg-pillar-grid >
  .steinberg-pillar-content {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
  }

  .steinberg-pillar-grid >
  .steinberg-pillar-sidebar {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
  }
}


/* STEINBERG RECAPTCHA FORM STATUS */
.steinberg-recaptcha-wrap {
  width: 100%;
  margin: 12px 0 14px;
  overflow-x: auto;
  overflow-y: hidden;
}

.steinberg-recaptcha-wrap .g-recaptcha {
  display: inline-block;
}

.steinberg-form-status {
  min-height: 20px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.9);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.4;
}

.steinberg-form-status-error {
  color: #ffffff;
}

.steinberg-form-status-success {
  color: #ffffff;
}

.steinberg-form-status-working {
  color: rgba(255,255,255,.82);
}

.steinberg-sidebar-form button:disabled,
.steinberg-sidebar-form input[type="submit"]:disabled {
  cursor: wait;
  opacity: .72;
}

@media (max-width: 360px) {
  .steinberg-recaptcha-wrap {
    transform: scale(.92);
    transform-origin: left top;
    width: 108.7%;
    margin-bottom: -5px;
  }
}


/* STEINBERG FRANK SIDEBAR TRUST */
.steinberg-sidebar-trust-card {
  padding: 0 !important;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      150deg,
      var(--brand-blue) 0%,
      var(--navy-soft) 100%
    );
  border-top: 5px solid #A71930;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(11,35,68,.16);
}

.steinberg-sidebar-trust-image {
  width: 100%;
  background: #ffffff;
}

.steinberg-sidebar-trust-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.steinberg-sidebar-trust-content {
  padding: 24px 24px 25px;
}

.steinberg-sidebar-trust-content h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.steinberg-sidebar-trust-content p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  line-height: 1.62;
}

.steinberg-sidebar-trust-content p:last-child {
  margin-bottom: 0;
}

.steinberg-pillar-sidebar >
.steinberg-sidebar-trust-card {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .steinberg-pillar-grid >
  .steinberg-sidebar-trust-card.steinberg-mobile-trust-active {
    position: static !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 18px !important;
  }
}

@media (max-width: 520px) {
  .steinberg-sidebar-trust-content {
    padding: 21px 19px 22px;
  }

  .steinberg-sidebar-trust-content h2 {
    font-size: 1.36rem;
  }
}


/* STEINBERG FORM PHONE NO WRAP */
.steinberg-contact-form-heading a[href^="tel:"] {
  display: inline-block !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}


/* STEINBERG TOPBAR BRAND */
.steinberg-topbar-inner {
  width: min(92vw, 1800px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.steinberg-topbar-brand {
  display: inline-block;
  margin-left: auto;
  color: #ffffff !important;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .steinberg-topbar-inner {
    width: min(94vw, 1800px) !important;
  }
}

@media (max-width: 680px) {
  .steinberg-topbar-inner {
    width: calc(100% - 28px) !important;
    flex-wrap: wrap;
    row-gap: 5px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .steinberg-topbar-brand {
    margin-left: auto;
    font-size: .64rem;
    letter-spacing: .11em;
  }
}


/* STEINBERG TOPBAR PHONE */
.steinberg-topbar-right {
  display: flex;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.steinberg-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff !important;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
}

.steinberg-topbar-phone svg {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: currentColor;
}

.steinberg-topbar-phone:hover,
.steinberg-topbar-phone:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.steinberg-topbar-brand {
  margin-left: 0 !important;
  color: #ffffff !important;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .steinberg-topbar-inner {
    flex-wrap: wrap;
  }

  .steinberg-topbar-right {
    gap: 11px;
  }

  .steinberg-topbar-phone,
  .steinberg-topbar-brand {
    font-size: .64rem;
  }

  .steinberg-topbar-brand {
    letter-spacing: .1em;
  }
}

@media (max-width: 520px) {
  .steinberg-topbar-right {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
}


/* STEINBERG TOPBAR ADDRESS */
.steinberg-topbar-address {
  display: inline-block;
  color: #ffffff !important;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
}

.steinberg-topbar-address:hover,
.steinberg-topbar-address:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .steinberg-topbar-right {
    gap: 12px;
  }

  .steinberg-topbar-address {
    font-size: .66rem;
  }
}

@media (max-width: 760px) {
  .steinberg-topbar-right {
    flex-wrap: wrap;
    row-gap: 5px;
  }

  .steinberg-topbar-address {
    flex-basis: 100%;
    text-align: right;
  }
}

@media (max-width: 520px) {
  .steinberg-topbar-address {
    text-align: left;
  }
}


/* STEINBERG ADDRESS LARGER NOT BOLD */
.steinberg-topbar-address {
  font-size: .84rem !important;
  font-weight: 400 !important;
  letter-spacing: .035em !important;
}

@media (max-width: 1100px) {
  .steinberg-topbar-address {
    font-size: .76rem !important;
  }
}

@media (max-width: 520px) {
  .steinberg-topbar-address {
    font-size: .72rem !important;
  }
}

/* STEINBERG CLEAN FULL WIDTH MENU ROW */
@media (min-width: 901px) {
  .site-header > .navigation-row {
    position: relative !important;
    z-index: 40 !important;
    isolation: isolate;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 32px !important;

    min-height: 80px !important;

    margin-top: 0 !important;
    margin-bottom: -80px !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  /*
   * One continuous translucent background across
   * the entire screen, including behind the logo.
   */
  .site-header > .navigation-row::before {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    z-index: -1 !important;

    width: 100vw !important;

    content: "" !important;
    transform: translateX(-50%) !important;

    background: rgba(11, 35, 68, 0.60) !important;
    border-bottom: 1px solid #A71930 !important;
    box-shadow: none !important;

    pointer-events: none !important;
  }

  /*
   * Logo remains at the container's left edge.
   * White logo-block background is removed.
   */
  .site-header > .navigation-row > .logo,
  .site-header > .navigation-row > :first-child {
    position: relative !important;
    z-index: 2 !important;

    flex: 0 0 auto !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .site-header > .navigation-row > .logo img,
  .site-header > .navigation-row > :first-child img {
    display: block !important;
    margin: 0 !important;
    background: transparent !important;
  }

  /*
   * Navigation occupies only the space it needs
   * and locks to the container's far-right edge.
   */
  .site-header > .navigation-row > .primary-navigation {
    position: relative !important;
    z-index: 2 !important;

    flex: 0 0 auto !important;

    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;

    margin-right: 0 !important;
    margin-left: auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    text-align: right !important;
    transform: none !important;
  }

  .primary-navigation > ul {
    width: auto !important;

    margin-right: 0 !important;
    margin-left: auto !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 28px !important;

    background: transparent !important;
    list-style: none !important;
  }

  .primary-navigation li,
  .primary-navigation .menu-item,
  .primary-navigation .menu-item-has-children {
    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .primary-navigation a,
  .primary-navigation button,
  .primary-navigation .menu-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 10px 0 !important;

    color: #ffffff !important;
    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    font-weight: 700 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .primary-navigation a:hover,
  .primary-navigation a:focus,
  .primary-navigation button:hover,
  .primary-navigation button:focus {
    color: #ffffff !important;
    background: transparent !important;
    opacity: .82;
  }

  .primary-navigation .sub-menu,
  .primary-navigation .dropdown,
  .primary-navigation .dropdown-menu {
    background: rgba(11, 35, 68, 0.96) !important;
  }

  .navigation-row > .mobile-toggle {
    display: none !important;
  }

  /*
   * The hero image rises behind the menu.
   * The content is offset equally so its position stays intact.
   */
  .steinberg-pillar-hero > .steinberg-pillar-wrap {
    position: relative !important;
    transform: translateY(80px) !important;
    margin-bottom: 80px !important;
  }
}

@media (max-width: 900px) {
  .site-header > .navigation-row {
    margin-bottom: 0 !important;
  }

  .site-header > .navigation-row::before {
    display: none !important;
  }

  .steinberg-pillar-hero > .steinberg-pillar-wrap {
    transform: none !important;
    margin-bottom: 0 !important;
  }
}

/* STEINBERG REMOVE MENU BOTTOM LINE */
.site-header > .navigation-row,
.site-header > .navigation-row::before {
  border-bottom: 0 !important;
}

/* STEINBERG SHRINKING STICKY HEADER */
.steinberg-sticky-header-spacer {
  display: none;
}

@media (min-width: 901px) {
  .site-header,
  .site-header > .navigation-row,
  .site-header > .navigation-row::before,
  .site-header > .navigation-row img,
  .site-header .primary-navigation a {
    transition:
      min-height .22s ease,
      height .22s ease,
      padding .22s ease,
      opacity .18s ease,
      background-color .22s ease,
      transform .22s ease;
  }

  .site-header.steinberg-header-scrolled {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 1000 !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header.steinberg-header-scrolled >
  .topbar {
    display: none !important;
  }

  .site-header.steinberg-header-scrolled >
  .navigation-row {
    min-height: 58px !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .site-header.steinberg-header-scrolled >
  .navigation-row::before {
    background: rgba(11, 35, 68, 0.94) !important;
    border: 0 !important;
    box-shadow: 0 8px 24px rgba(3, 18, 38, .18) !important;
  }

  .site-header.steinberg-header-scrolled >
  .navigation-row >
  .logo,

  .site-header.steinberg-header-scrolled >
  .navigation-row >
  :first-child {
    min-height: 58px !important;
  }

  .site-header.steinberg-header-scrolled >
  .navigation-row >
  .logo img,

  .site-header.steinberg-header-scrolled >
  .navigation-row >
  :first-child img {
    width: auto !important;
    max-height: 40px !important;
  }

  .site-header.steinberg-header-scrolled
  .primary-navigation {
    min-height: 58px !important;
  }

  .site-header.steinberg-header-scrolled
  .primary-navigation > ul {
    gap: 24px !important;
  }

  .site-header.steinberg-header-scrolled
  .primary-navigation a,

  .site-header.steinberg-header-scrolled
  .primary-navigation button {
    padding-top: 6px !important;
    padding-bottom: 6px !important;

    font-size: 13px !important;
  }

  .steinberg-sticky-header-spacer {
    display: block;
    width: 100%;
    height: 0;
  }

  body.steinberg-header-sticky-active
  .steinberg-sticky-header-spacer {
    height: 58px;
  }
}

@media (max-width: 900px) {
  .steinberg-sticky-header-spacer {
    display: none !important;
  }
}

/* STEINBERG FAQ MAP LAYOUT */
.steinberg-faq-map-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, .95fr);
  gap: 34px;
  width: 100%;
  align-items: start;
}

.steinberg-faq-column,
.steinberg-map-column {
  min-width: 0;
}

.steinberg-faq-column {
  width: 100%;
}

.steinberg-faq-column .faq-list,
.steinberg-faq-column .faq-accordion,
.steinberg-faq-column [class*="faq-list"],
.steinberg-faq-column [class*="faq-accordion"] {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.steinberg-map-card {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border-top: 5px solid #A71930;
  box-shadow: 0 18px 44px rgba(11, 35, 68, .14);
}

.steinberg-map-card iframe {
  display: block;
  width: 100% !important;
  height: 560px !important;
  border: 0 !important;
}

@media (max-width: 1100px) {
  .steinberg-faq-map-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, .9fr);
    gap: 26px;
  }

  .steinberg-map-card iframe {
    height: 520px !important;
  }
}

@media (max-width: 850px) {
  .steinberg-faq-map-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-map-card iframe {
    height: 420px !important;
  }
}

/* STEINBERG PRACTICE SEO AEO CTA */
.steinberg-practice-aeo-section {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(300px, .55fr);
  gap: 34px;
  width: 100%;
  margin: 0 0 42px;
  align-items: stretch;
}

.steinberg-practice-aeo-copy {
  min-width: 0;
  padding: 10px 10px 6px 0;
}

.steinberg-practice-aeo-kicker {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-practice-aeo-copy h2 {
  max-width: 850px;
  margin: 0 0 17px;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
}

.steinberg-practice-quick-answer {
  max-width: 920px;
  margin: 0 0 18px;
  padding: 17px 19px;
  color: #17324f;
  background: #f2f6fa;
  border-left: 4px solid #A71930;
  font-size: .98rem;
  line-height: 1.7;
}

.steinberg-practice-quick-answer strong {
  color: #0b2344;
}

.steinberg-practice-aeo-detail {
  max-width: 920px;
  margin: 0 0 18px;
  color: #43566b;
  font-size: 1rem;
  line-height: 1.75;
}

.steinberg-practice-aeo-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  max-width: 960px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steinberg-practice-aeo-points li {
  position: relative;
  min-height: 72px;
  padding: 14px 14px 14px 36px;
  color: #17324f;
  background: #ffffff;
  border: 1px solid #dce4ec;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
}

.steinberg-practice-aeo-points li::before {
  position: absolute;
  top: 16px;
  left: 14px;
  color: #ffffff;
  content: "✓";
  font-weight: 900;
}

.steinberg-practice-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px 28px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #123b67 100%
    );
  border-left: 5px solid #A71930;
  box-shadow: 0 20px 48px rgba(11, 35, 68, .17);
}

.steinberg-practice-cta-label {
  margin: 0 0 11px;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-practice-cta-card h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.18;
}

.steinberg-practice-cta-card p {
  margin: 0 0 23px;
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  line-height: 1.65;
}

.steinberg-practice-cta-actions {
  display: grid;
  gap: 10px;
}

.steinberg-practice-cta-actions a {
  display: flex;
  min-height: 48px;
  padding: 11px 15px;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.steinberg-practice-call-button {
  color: #ffffff !important;
  background: #A71930;
}

.steinberg-practice-form-button {
  color: #0b2344 !important;
  background: #ffffff;
}

.steinberg-practice-cta-actions a:hover,
.steinberg-practice-cta-actions a:focus {
  transform: translateY(-1px);
  filter: brightness(.96);
}

#steinberg-contact-form {
  scroll-margin-top: 85px;
}

@media (max-width: 1050px) {
  .steinberg-practice-aeo-section {
    grid-template-columns:
      minmax(0, 1.2fr)
      minmax(280px, .8fr);
    gap: 25px;
  }

  .steinberg-practice-aeo-points {
    grid-template-columns: 1fr;
  }

  .steinberg-practice-aeo-points li {
    min-height: 0;
  }
}

@media (max-width: 800px) {
  .steinberg-practice-aeo-section {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .steinberg-practice-aeo-copy {
    padding-right: 0;
  }

  .steinberg-practice-cta-card {
    padding: 25px 22px;
  }
}

/* STEINBERG PRACTICE CTA SWAPPED */
.steinberg-practice-aeo-section {
  grid-template-columns:
    minmax(300px, .55fr)
    minmax(0, 1.45fr) !important;
}

.steinberg-practice-cta-card {
  grid-column: 1 !important;
}

.steinberg-practice-aeo-copy {
  grid-column: 2 !important;
  padding-right: 0 !important;
  padding-left: 10px !important;
}

@media (max-width: 1050px) {
  .steinberg-practice-aeo-section {
    grid-template-columns:
      minmax(280px, .8fr)
      minmax(0, 1.2fr) !important;
  }
}

@media (max-width: 800px) {
  .steinberg-practice-aeo-section {
    grid-template-columns: 1fr !important;
  }

  .steinberg-practice-cta-card,
  .steinberg-practice-aeo-copy {
    grid-column: 1 !important;
  }

  .steinberg-practice-aeo-copy {
    padding-left: 0 !important;
  }
}

/* STEINBERG CONTACT PAGE */
.steinberg-contact-main {
  background: #ffffff;
}

.steinberg-contact-wrap {
  width: min(92vw, 1800px);
  margin-right: auto;
  margin-left: auto;
}

.steinberg-contact-hero-copy {
  width: 100%;
  max-width: 820px;
  text-align: left;
}

.steinberg-contact-breadcrumbs {
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  align-items: center;
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.steinberg-contact-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.steinberg-contact-hero-copy h1 {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.steinberg-contact-hero-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  text-align: left;
}

.steinberg-contact-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.steinberg-contact-hero-actions a {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.steinberg-contact-primary-button {
  color: #ffffff !important;
  background: #A71930;
}

.steinberg-contact-secondary-button {
  color: #0b2344 !important;
  background: #ffffff;
}

.steinberg-contact-introduction {
  padding: 72px 0 38px;
}

.steinberg-contact-kicker {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-contact-introduction h2,
.steinberg-contact-faq-section h2 {
  max-width: 920px;
  margin: 0 0 20px;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.steinberg-contact-quick-answer {
  max-width: 1120px;
  padding: 18px 20px;
  color: #29445e;
  background: #f2f6fa;
  border-left: 4px solid #A71930;
  font-size: .98rem;
  line-height: 1.75;
}

.steinberg-contact-quick-answer strong,
.steinberg-contact-quick-answer a {
  color: #0b2344;
}

.steinberg-contact-content {
  padding: 22px 0 76px;
}

.steinberg-contact-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(330px, .75fr);
  gap: 38px;
  align-items: stretch;
}

.steinberg-contact-page
.steinberg-contact-form-panel {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  align-self: stretch;
}

.steinberg-contact-page
.steinberg-contact-form-card {
  position: static !important;
  width: 100% !important;
  max-width: none !important;
}

.steinberg-contact-page
.steinberg-sidebar-form {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 18px 22px !important;
}

.steinberg-contact-page
.steinberg-contact-form-field {
  min-width: 0;
  margin: 0 !important;
}

.steinberg-contact-page
.steinberg-contact-form-full {
  grid-column: 1 / -1;
}

.steinberg-contact-page
.steinberg-sidebar-form textarea {
  min-height: 145px;
}

.steinberg-contact-details-panel {
  padding: 34px 30px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #123b67 100%
    );
  border-left: 5px solid #A71930;
  box-shadow: 0 20px 48px rgba(11,35,68,.16);
}

.steinberg-contact-details-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.7);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.steinberg-contact-details-panel h2 {
  margin: 0 0 17px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

.steinberg-contact-details-panel > p {
  margin: 0 0 25px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
}

.steinberg-contact-detail {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.steinberg-contact-detail > span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.6);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.steinberg-contact-detail a {
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
  text-decoration: none;
}

.steinberg-contact-detail p {
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
}

.steinberg-contact-preparation {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.steinberg-contact-preparation h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 1.1rem;
}

.steinberg-contact-preparation ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steinberg-contact-preparation li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}

.steinberg-contact-preparation li::before {
  position: absolute;
  left: 0;
  color: #ffffff;
  content: "✓";
  font-weight: 900;
}

.steinberg-contact-cta-map {
  padding: 72px 0;
  background: #f3f6f9;
}

.steinberg-contact-cta-map-grid {
  display: grid;
  grid-template-columns:
    minmax(320px, .72fr)
    minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
}

.steinberg-contact-cta-card {
  display: flex;
  min-width: 0;
  padding: 34px 30px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #123b67 100%
    );
  border-left: 5px solid #A71930;
  box-shadow: 0 20px 48px rgba(11,35,68,.15);
}

.steinberg-contact-cta-label {
  margin-bottom: 12px;
  color: rgba(255,255,255,.69);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-contact-cta-card h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
}

.steinberg-contact-cta-card p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
}

.steinberg-contact-cta-actions {
  display: grid;
  gap: 10px;
}

.steinberg-contact-cta-actions a {
  display: flex;
  min-height: 48px;
  padding: 11px 15px;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.steinberg-contact-call-cta {
  color: #ffffff !important;
  background: #A71930;
}

.steinberg-contact-form-cta {
  color: #0b2344 !important;
  background: #ffffff;
}

.steinberg-contact-map-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(11,35,68,.14);
}

.steinberg-contact-map-card iframe {
  display: block;
  width: 100% !important;
  height: 500px !important;
  border: 0 !important;
}

.steinberg-contact-faq-section {
  padding: 76px 0 88px;
}

.steinberg-contact-faq-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.steinberg-contact-faq-grid details {
  padding: 19px 21px;
  background: #ffffff;
  border: 1px solid #dce4ec;
  border-left: 4px solid #A71930;
}

.steinberg-contact-faq-grid summary {
  color: #0b2344;
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
}

.steinberg-contact-faq-grid details p {
  margin: 15px 0 0;
  color: #43566b;
  line-height: 1.7;
}

#steinberg-contact-form {
  scroll-margin-top: 85px;
}

@media (max-width: 1050px) {
  .steinberg-contact-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, .8fr);
    gap: 27px;
  }

  .steinberg-contact-cta-map-grid {
    grid-template-columns:
      minmax(290px, .8fr)
      minmax(0, 1.2fr);
  }
}

@media (max-width: 820px) {
  .steinberg-contact-grid,
  .steinberg-contact-cta-map-grid,
  .steinberg-contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-contact-page
  .steinberg-sidebar-form {
    grid-template-columns: 1fr;
  }

  .steinberg-contact-page
  .steinberg-contact-form-field {
    grid-column: 1 !important;
  }

  .steinberg-contact-map-card iframe {
    height: 410px !important;
  }
}

@media (max-width: 520px) {
  .steinberg-contact-introduction {
    padding-top: 54px;
  }

  .steinberg-contact-content,
  .steinberg-contact-cta-map,
  .steinberg-contact-faq-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .steinberg-contact-details-panel,
  .steinberg-contact-cta-card {
    padding: 26px 21px;
  }
}

/* STEINBERG CONTACT FAQ INLINE */
.steinberg-contact-form-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steinberg-contact-form-stack .steinberg-contact-form-panel,
.steinberg-contact-form-stack .steinberg-contact-form-card {
  width: 100% !important;
  max-width: none !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-section {
  padding: 0 !important;
  background: transparent !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-inline {
  margin: 0 !important;
}

.steinberg-contact-form-stack .steinberg-contact-kicker {
  margin: 0 0 8px !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-section h2 {
  margin: 0 0 18px !important;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem) !important;
  line-height: 1.08 !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-grid {
  grid-template-columns: 1fr !important;
  gap: 12px !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-grid details {
  padding: 16px 18px !important;
  background: #ffffff !important;
  border: 1px solid #dce4ec !important;
  border-left: 4px solid #A71930 !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-grid summary {
  font-size: 1rem !important;
  line-height: 1.45 !important;
}

.steinberg-contact-form-stack .steinberg-contact-faq-grid details p {
  margin: 14px 0 0 !important;
}

@media (max-width: 820px) {
  .steinberg-contact-form-stack {
    gap: 20px;
  }

  .steinberg-contact-form-stack .steinberg-contact-faq-section h2 {
    font-size: clamp(1.55rem, 6vw, 2.1rem) !important;
  }
}

/* STEINBERG CONTACT CITY HERO */
.steinberg-contact-hero {
  position: relative;
  overflow: hidden;

  background-image:
    linear-gradient(
      90deg,
      rgba(7, 25, 51, .94) 0%,
      rgba(11, 35, 68, .80) 48%,
      rgba(11, 35, 68, .34) 100%
    ),
    url("/assets/images/steinberg-contact-city-hero.webp") !important;

  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.steinberg-contact-hero::before {
  background: transparent !important;
}

.steinberg-contact-hero >
.steinberg-pillar-wrap {
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .steinberg-contact-hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(7, 25, 51, .94) 0%,
        rgba(11, 35, 68, .77) 100%
      ),
      url("/assets/images/steinberg-contact-city-hero.webp") !important;

    background-position: 58% center !important;
  }
}

/* STEINBERG CONTACT PRACTICE CARDS */
.steinberg-contact-intro-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(510px, .82fr);
  gap: 48px;
  width: 100%;
  align-items: start;
}

.steinberg-contact-intro-copy {
  min-width: 0;
}

.steinberg-contact-intro-copy h2,
.steinberg-contact-intro-copy
.steinberg-contact-quick-answer {
  width: 100%;
  max-width: none;
}

.steinberg-contact-practice-cards {
  min-width: 0;
  padding: 2px 0 0;
}

.steinberg-contact-practice-label {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-contact-practice-cards > h2 {
  margin: 0 0 17px;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.12;
}

.steinberg-contact-practice-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.steinberg-contact-practice-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 92px;
  padding: 16px 38px 15px 17px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff !important;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #123b67 100%
    );
  border-left: 4px solid #A71930;
  box-shadow: 0 9px 24px rgba(11,35,68,.12);
  text-decoration: none !important;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease;
}

.steinberg-contact-practice-card strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: .93rem;
  line-height: 1.25;
}

.steinberg-contact-practice-card > span:not(
  .steinberg-contact-practice-arrow
) {
  color: rgba(255,255,255,.72);
  font-size: .74rem;
  line-height: 1.4;
}

.steinberg-contact-practice-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.steinberg-contact-practice-card:hover,
.steinberg-contact-practice-card:focus {
  color: #ffffff !important;
  background:
    linear-gradient(
      145deg,
      #A71930 0%,
      #811326 100%
    );
  box-shadow: 0 14px 30px rgba(11,35,68,.2);
  transform: translateY(-2px);
}

@media (max-width: 1250px) {
  .steinberg-contact-intro-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(440px, .85fr);
    gap: 30px;
  }
}

@media (max-width: 1050px) {
  .steinberg-contact-intro-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-contact-practice-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 520px) {
  .steinberg-contact-practice-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-contact-practice-card {
    min-height: 84px;
  }
}

/* STEINBERG CONTACT PRACTICE WIDTH ALIGNMENT */
.steinberg-contact-intro-grid {
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(330px, .75fr) !important;
  gap: 38px !important;
}

/* Matches the right-hand contact details panel exactly */
.steinberg-contact-practice-cards {
  width: 100% !important;
  max-width: none !important;
  justify-self: stretch !important;
}

@media (max-width: 1050px) {
  .steinberg-contact-intro-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, .8fr) !important;
    gap: 27px !important;
  }
}

@media (max-width: 820px) {
  .steinberg-contact-intro-grid {
    grid-template-columns: 1fr !important;
  }
}

/* STEINBERG ABOUT PAGE */
.steinberg-about-page {
  background: #ffffff;
}

.steinberg-about-wrap,
.steinberg-about-content-wrap {
  width: min(92vw, 1800px);
  margin-right: auto;
  margin-left: auto;
}

.steinberg-about-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      125deg,
      #081d3b 0%,
      #0b2344 54%,
      #153f6a 100%
    );
}

.steinberg-about-hero::after {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 580px;
  height: 580px;
  content: "";
  background: rgba(255,255,255,.045);
  border-radius: 50%;
}

.steinberg-about-hero .steinberg-about-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, .65fr);
  gap: 70px;
  min-height: 650px;
  padding-top: 145px;
  align-items: end;
}

.steinberg-about-hero-copy {
  max-width: 870px;
  padding-bottom: 92px;
}

.steinberg-about-breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 25px;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  font-weight: 700;
}

.steinberg-about-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.steinberg-about-eyebrow,
.steinberg-about-kicker {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.steinberg-about-eyebrow {
  color: #ffffff;
}

.steinberg-about-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 500;
  line-height: .96;
}

.steinberg-about-hero-summary {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
  line-height: 1.75;
}

.steinberg-about-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 29px;
  flex-wrap: wrap;
}

.steinberg-about-hero-actions a {
  display: inline-flex;
  min-height: 49px;
  padding: 12px 21px;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.steinberg-about-primary-button {
  color: #ffffff !important;
  background: #A71930;
}

.steinberg-about-secondary-button {
  color: #0b2344 !important;
  background: #ffffff;
}

.steinberg-about-portrait-wrap {
  position: relative;
  align-self: end;
  min-width: 0;
}

.steinberg-about-portrait-wrap img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.22));
}

.steinberg-about-portrait-caption {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  padding: 18px 20px;
  background: rgba(8,29,59,.88);
  border-left: 5px solid #A71930;
}

.steinberg-about-portrait-caption strong,
.steinberg-about-portrait-caption span {
  display: block;
}

.steinberg-about-portrait-caption strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.steinberg-about-portrait-caption span {
  margin-top: 4px;
  color: rgba(255,255,255,.7);
  font-size: .76rem;
}

.steinberg-about-introduction {
  padding: 80px 0 62px;
}

.steinberg-about-intro-grid,
.steinberg-about-biography-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(330px, .75fr);
  gap: 40px;
  align-items: stretch;
}

.steinberg-about-intro-copy h2,
.steinberg-about-biography-copy > h2,
.steinberg-about-practices h2,
.steinberg-about-faqs h2 {
  margin: 0 0 21px;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.steinberg-about-quick-answer {
  padding: 20px 22px;
  color: #29445e;
  background: #f1f5f9;
  border-left: 4px solid #A71930;
  line-height: 1.75;
}

.steinberg-about-quick-answer strong {
  color: #0b2344;
}

.steinberg-about-approach-card,
.steinberg-about-contact-card,
.steinberg-about-cta-card {
  padding: 34px 31px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #143d68 100%
    );
  border-left: 5px solid #A71930;
  box-shadow: 0 20px 48px rgba(11,35,68,.15);
}

.steinberg-about-approach-card > span,
.steinberg-about-contact-label,
.steinberg-about-cta-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.67);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-about-approach-card h2,
.steinberg-about-contact-card h2,
.steinberg-about-cta-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.16;
}

.steinberg-about-approach-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steinberg-about-approach-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.84);
  line-height: 1.55;
}

.steinberg-about-approach-card li::before {
  position: absolute;
  left: 0;
  color: #ffffff;
  content: "✓";
  font-weight: 900;
}

.steinberg-about-biography {
  padding: 78px 0;
  background: #f4f7fa;
}

.steinberg-about-biography-copy {
  min-width: 0;
}

.steinberg-about-source-content {
  color: #344b62;
  font-size: 1rem;
  line-height: 1.78;
}

.steinberg-about-source-content p {
  margin: 0 0 18px;
}

.steinberg-about-source-content h3 {
  margin: 31px 0 12px;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.steinberg-about-source-list {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.steinberg-about-contact-card {
  align-self: start;
}

.steinberg-about-contact-card p {
  color: rgba(255,255,255,.83);
  line-height: 1.7;
}

.steinberg-about-contact-card > a {
  display: flex;
  min-height: 47px;
  margin-top: 11px;
  padding: 11px 15px;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: #A71930;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.steinberg-about-contact-card > a + a {
  color: #0b2344 !important;
  background: #ffffff;
}

.steinberg-about-contact-card address {
  margin-top: 24px;
  color: rgba(255,255,255,.76);
  font-style: normal;
  line-height: 1.6;
}

.steinberg-about-practices {
  padding: 82px 0;
}

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

.steinberg-about-practice-card {
  position: relative;
  display: flex;
  min-height: 125px;
  padding: 22px 44px 21px 21px;
  flex-direction: column;
  justify-content: center;
  color: #ffffff !important;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #143d68 100%
    );
  border-left: 4px solid #A71930;
  box-shadow: 0 12px 28px rgba(11,35,68,.12);
  text-decoration: none !important;
}

.steinberg-about-practice-card strong {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 1rem;
}

.steinberg-about-practice-card > span:not(
  .steinberg-about-card-arrow
) {
  color: rgba(255,255,255,.72);
  font-size: .79rem;
  line-height: 1.45;
}

.steinberg-about-card-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  color: #ffffff;
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.steinberg-about-practice-card:hover {
  background:
    linear-gradient(
      145deg,
      #A71930 0%,
      #811326 100%
    );
  transform: translateY(-2px);
}

.steinberg-about-cta-map {
  padding: 76px 0;
  background: #f4f7fa;
}

.steinberg-about-cta-map-grid {
  display: grid;
  grid-template-columns:
    minmax(320px, .72fr)
    minmax(0, 1.28fr);
  gap: 35px;
  align-items: stretch;
}

.steinberg-about-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.steinberg-about-cta-card p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.84);
  line-height: 1.7;
}

.steinberg-about-cta-actions {
  display: grid;
  gap: 10px;
}

.steinberg-about-cta-actions a {
  display: flex;
  min-height: 48px;
  padding: 11px 15px;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.steinberg-about-call-button {
  color: #ffffff !important;
  background: #A71930;
}

.steinberg-about-contact-button {
  color: #0b2344 !important;
  background: #ffffff;
}

.steinberg-about-map-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(11,35,68,.14);
}

.steinberg-about-map-card iframe {
  display: block;
  width: 100% !important;
  height: 500px !important;
  border: 0 !important;
}

.steinberg-about-faqs {
  padding: 80px 0 92px;
}

.steinberg-about-faq-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.steinberg-about-faq-grid details {
  padding: 19px 21px;
  background: #ffffff;
  border: 1px solid #dce4ec;
  border-left: 4px solid #A71930;
}

.steinberg-about-faq-grid summary {
  color: #0b2344;
  font-weight: 800;
  cursor: pointer;
}

.steinberg-about-faq-grid details p {
  margin: 15px 0 0;
  color: #43566b;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .steinberg-about-hero .steinberg-about-wrap {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(280px, .55fr);
    gap: 35px;
  }

  .steinberg-about-practice-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .steinberg-about-hero .steinberg-about-wrap,
  .steinberg-about-intro-grid,
  .steinberg-about-biography-grid,
  .steinberg-about-cta-map-grid,
  .steinberg-about-faq-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-about-hero .steinberg-about-wrap {
    min-height: 0;
    padding-top: 120px;
  }

  .steinberg-about-hero-copy {
    padding-bottom: 25px;
  }

  .steinberg-about-portrait-wrap {
    max-width: 440px;
    margin: 0 auto;
  }

  .steinberg-about-practice-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-about-map-card iframe {
    height: 410px !important;
  }
}

/* STEINBERG ABOUT PERSONAL PHOTOS START */
.steinberg-about-personal-photo-section {
  padding: 80px 0;
  background: #ffffff;
}

.steinberg-about-personal-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, .65fr);
  gap: 35px 55px;
  margin-bottom: 30px;
  align-items: end;
}

.steinberg-about-personal-heading
.steinberg-about-kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.steinberg-about-personal-heading h2 {
  margin: 0;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.steinberg-about-personal-heading > p:last-child {
  margin: 0;
  color: #43566b;
  line-height: 1.75;
}

.steinberg-about-personal-photo-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.steinberg-about-personal-photo {
  position: relative;
  min-width: 0;
  height: clamp(340px, 34vw, 570px);
  margin: 0;
  overflow: hidden;
  background: #0b2344;
  border-bottom: 5px solid #A71930;
  box-shadow: 0 18px 42px rgba(11,35,68,.16);
}

.steinberg-about-personal-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .steinberg-about-personal-heading,
  .steinberg-about-personal-photo-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-about-personal-heading
  .steinberg-about-kicker {
    grid-column: 1;
    margin-bottom: -18px;
  }

  .steinberg-about-personal-photo {
    height: min(118vw, 540px);
  }
}
/* STEINBERG ABOUT PERSONAL PHOTOS END */

/* STEINBERG ABOUT SIDEBAR START */
.steinberg-about-biography-grid {
  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(390px, .58fr) !important;
  gap: 46px !important;
  align-items: start !important;
}

.steinberg-about-sidebar-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 25px;
}

.steinberg-about-sidebar-practices {
  padding: 28px 25px;
  background: #f4f7fa;
  border-top: 5px solid #A71930;
  box-shadow: 0 18px 42px rgba(11,35,68,.13);
}

.steinberg-about-sidebar-label,
.steinberg-about-form-label {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-about-sidebar-practices > h2 {
  margin: 0 0 20px;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.12;
}

.steinberg-about-sidebar-practices
.steinberg-about-practice-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 10px;
}

.steinberg-about-sidebar-practices
.steinberg-about-practice-card {
  min-height: 84px;
  padding: 15px 40px 14px 17px;
  box-shadow: none;
}

.steinberg-about-sidebar-practices
.steinberg-about-practice-card strong {
  margin-bottom: 4px;
  font-size: .92rem;
}

.steinberg-about-sidebar-practices
.steinberg-about-practice-card >
span:not(.steinberg-about-card-arrow) {
  font-size: .73rem;
  line-height: 1.4;
}

.steinberg-about-form-panel {
  overflow: hidden;
  background: #ffffff;
  border-top: 6px solid #A71930;
  box-shadow: 0 20px 48px rgba(11,35,68,.17);
}

.steinberg-about-form-intro {
  padding: 28px 27px 23px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #143d68 100%
    );
}

.steinberg-about-form-label {
  color: rgba(255,255,255,.68);
}

.steinberg-about-form-intro h2 {
  margin: 0 0 13px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.12;
}

.steinberg-about-form-intro p:not(
  .steinberg-about-form-label
) {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.65;
}

.steinberg-about-form-phone {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ffffff !important;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}

.steinberg-about-form-panel
.steinberg-sidebar-form {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 17px 18px !important;
  padding: 27px !important;
  background: #ffffff !important;
}

.steinberg-about-form-panel
.steinberg-sidebar-form > * {
  min-width: 0;
  margin: 0 !important;
}

.steinberg-about-form-panel
.steinberg-sidebar-form textarea,
.steinberg-about-form-panel
.steinberg-sidebar-form select,
.steinberg-about-form-panel
.steinberg-sidebar-form button,
.steinberg-about-form-panel
.steinberg-sidebar-form [type="submit"],
.steinberg-about-form-panel
.steinberg-sidebar-form .g-recaptcha,
.steinberg-about-form-panel
.steinberg-sidebar-form [class*="captcha"] {
  grid-column: 1 / -1;
}

.steinberg-about-form-panel
.steinberg-sidebar-form label {
  color: #0b2344 !important;
  font-size: .73rem !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
}

.steinberg-about-form-panel
.steinberg-sidebar-form input,
.steinberg-about-form-panel
.steinberg-sidebar-form select,
.steinberg-about-form-panel
.steinberg-sidebar-form textarea {
  width: 100% !important;
  color: #17324f !important;
  background: #f7f9fb !important;
  border: 1px solid #d8e1e9 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.steinberg-about-form-panel
.steinberg-sidebar-form input,
.steinberg-about-form-panel
.steinberg-sidebar-form select {
  min-height: 46px;
  padding: 10px 12px !important;
}

.steinberg-about-form-panel
.steinberg-sidebar-form textarea {
  min-height: 130px;
  padding: 12px !important;
  resize: vertical;
}

.steinberg-about-form-panel
.steinberg-sidebar-form input:focus,
.steinberg-about-form-panel
.steinberg-sidebar-form select:focus,
.steinberg-about-form-panel
.steinberg-sidebar-form textarea:focus {
  outline: 2px solid rgba(167,25,48,.2) !important;
  border-color: #ffffff !important;
}

.steinberg-about-form-panel
.steinberg-sidebar-form button,
.steinberg-about-form-panel
.steinberg-sidebar-form [type="submit"] {
  display: flex !important;
  width: 100% !important;
  min-height: 50px;
  padding: 12px 17px !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: #A71930 !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: .86rem !important;
  font-weight: 800 !important;
  cursor: pointer;
}

.steinberg-about-form-panel
.steinberg-sidebar-form button:hover,
.steinberg-about-form-panel
.steinberg-sidebar-form [type="submit"]:hover {
  background: #811326 !important;
}

.steinberg-about-form-panel
.steinberg-form-status,
.steinberg-about-form-panel
[role="status"] {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .steinberg-about-biography-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, .75fr) !important;
    gap: 30px !important;
  }

  .steinberg-about-form-panel
  .steinberg-sidebar-form {
    grid-template-columns: 1fr;
  }

  .steinberg-about-form-panel
  .steinberg-sidebar-form > * {
    grid-column: 1 !important;
  }
}

@media (max-width: 820px) {
  .steinberg-about-biography-grid {
    grid-template-columns: 1fr !important;
  }

  .steinberg-about-sidebar-stack {
    margin-top: 10px;
  }

  .steinberg-about-form-panel
  .steinberg-sidebar-form {
    grid-template-columns: 1fr;
    padding: 22px !important;
  }
}
/* STEINBERG ABOUT SIDEBAR END */

/* STEINBERG ABOUT CREDENTIALS START */
.steinberg-about-credentials {
  display: grid;
  grid-template-columns:
    minmax(250px, .75fr)
    minmax(0, 1.25fr);
  gap: 16px;
  margin: 30px 0;
}

.steinberg-about-credential-card {
  padding: 24px 23px;
  background: #ffffff;
  border: 1px solid #dce4ec;
  border-top: 5px solid #A71930;
  box-shadow: 0 12px 30px rgba(11,35,68,.09);
}

.steinberg-about-credential-label {
  margin: 0 0 10px !important;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-about-credential-card h3 {
  margin: 0 0 7px !important;
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.steinberg-about-credential-detail {
  margin: 0 !important;
  color: #43566b;
  font-weight: 700;
}

.steinberg-about-credential-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steinberg-about-credential-card li {
  position: relative;
  padding-left: 24px;
  color: #344b62;
  line-height: 1.5;
}

.steinberg-about-credential-card li::before {
  position: absolute;
  left: 0;
  color: #ffffff;
  content: "✓";
  font-weight: 900;
}

@media (max-width: 700px) {
  .steinberg-about-credentials {
    grid-template-columns: 1fr;
  }
}
/* STEINBERG ABOUT CREDENTIALS END */

/* STEINBERG BRANDED MENU START */
.primary-navigation,
.primary-navigation > ul {
  overflow: visible !important;
}

.steinberg-home-menu-item {
  display: flex !important;
  align-items: center !important;
}

.steinberg-home-link {
  display: inline-flex !important;
  flex: 0 0 38px !important;
  width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  margin-right: 3px !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 50% !important;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s ease !important;
}

.steinberg-home-icon {
  display: block;
  width: 19px;
  height: 19px;
}

.steinberg-home-link:hover,
.steinberg-home-link:focus-visible {
  color: #ffffff !important;
  background: #A71930 !important;
  border-color: #ffffff !important;
  transform: translateY(-1px);
}

.steinberg-education-menu {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent !important;
}

.steinberg-education-link-wrap {
  display: flex;
  align-items: center;
}

.steinberg-education-main-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.steinberg-education-toggle {
  display: inline-flex;
  width: 27px;
  height: 36px;
  margin: 0 0 0 2px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.83);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.steinberg-education-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform .18s ease;
}

.steinberg-education-menu:hover
.steinberg-education-toggle svg,

.steinberg-education-menu:focus-within
.steinberg-education-toggle svg,

.steinberg-education-open
.steinberg-education-toggle svg {
  transform: rotate(180deg);
}

@media (min-width: 901px) {
  .primary-navigation >
  a:not(.steinberg-home-link),

  .primary-navigation > ul > li >
  a:not(.steinberg-home-link),

  .steinberg-education-main-link {
    position: relative;
  }

  .primary-navigation >
  a:not(.steinberg-home-link)::after,

  .primary-navigation > ul > li >
  a:not(.steinberg-home-link)::after,

  .steinberg-education-main-link::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    content: "";
    background:
      linear-gradient(
        90deg,
        #A71930,
        #d34a60
      );
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .2s ease;
  }

  .primary-navigation >
  a:not(.steinberg-home-link):hover::after,

  .primary-navigation > ul > li >
  a:not(.steinberg-home-link):hover::after,

  .primary-navigation a:focus-visible::after,

  .steinberg-education-menu:hover
  .steinberg-education-main-link::after,

  .steinberg-education-menu:focus-within
  .steinberg-education-main-link::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

.steinberg-education-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1200;
  width: min(470px, 88vw);
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  color: #0b2344;
  background: #ffffff;
  border-top: 4px solid #A71930;
  box-shadow: 0 20px 45px rgba(5,25,50,.18);
  transform: translateY(7px);
  pointer-events: none;
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease;
}

.steinberg-education-dropdown::before {
  position: absolute;
  top: -8px;
  right: 24px;
  width: 13px;
  height: 13px;
  content: "";
  background: #A71930;
  transform: rotate(45deg);
}

.steinberg-education-menu:hover
.steinberg-education-dropdown,

.steinberg-education-menu:focus-within
.steinberg-education-dropdown,

.steinberg-education-open
.steinberg-education-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.steinberg-education-dropdown-heading {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  padding-bottom: 13px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce4ec;
}

.steinberg-education-dropdown-heading > span {
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.steinberg-education-dropdown-heading > a {
  color: #ffffff !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.steinberg-education-category-list {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 8px 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.steinberg-education-category-list li {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.steinberg-education-category-list a {
  display: flex !important;
  gap: 12px;
  min-height: 44px;
  padding: 10px 11px 10px 13px !important;
  align-items: center;
  justify-content: space-between !important;
  color: #17324f !important;
  background: #f4f7fa !important;
  border-left: 3px solid transparent !important;
  font-size: .79rem !important;
  font-weight: 750 !important;
  line-height: 1.3;
  text-align: left !important;
  text-decoration: none !important;
  white-space: normal !important;
  transition:
    background-color .16s ease,
    border-color .16s ease,
    transform .16s ease !important;
}

.steinberg-education-category-list a:hover,
.steinberg-education-category-list a:focus-visible {
  color: #0b2344 !important;
  background: #fbeff1 !important;
  border-left-color: #ffffff !important;
  transform: translateX(2px);
}

.steinberg-category-arrow {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 1rem;
}

.primary-navigation a:focus-visible,
.steinberg-education-toggle:focus-visible {
  outline: 2px solid #ffffff !important;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .steinberg-home-link {
    margin: 7px 0 !important;
  }

  .steinberg-education-menu {
    display: block;
    width: 100%;
  }

  .steinberg-education-link-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .steinberg-education-main-link {
    flex: 1 1 auto;
  }

  .steinberg-education-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .steinberg-education-dropdown {
    position: static;
    display: none;
    width: 100%;
    margin-top: 5px;
    padding: 15px;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    transform: none;
    pointer-events: auto;
  }

  .steinberg-education-dropdown::before {
    display: none;
  }

  .steinberg-education-open
  .steinberg-education-dropdown {
    display: block;
  }

  .steinberg-education-category-list {
    grid-template-columns: 1fr;
  }
}
/* STEINBERG BRANDED MENU END */

/* STEINBERG PRACTICE MEGA MENU START */
.primary-navigation,
.primary-navigation > ul,
.site-header > .navigation-row {
  overflow: visible !important;
}

.steinberg-practice-mega-menu {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent !important;
}

.steinberg-practice-mega-link-wrap {
  display: flex;
  align-items: center;
}

.steinberg-practice-mega-main {
  position: relative;
  display: inline-flex;
  gap: 5px;
  min-height: 38px;
  margin: 0;
  padding: 6px 0;
  align-items: center;
  color: #ffffff;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.steinberg-practice-mega-main svg {
  width: 16px;
  height: 16px;
  transition: transform .18s ease;
}

.steinberg-practice-mega-main::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  content: "";
  background:
    linear-gradient(
      90deg,
      #A71930,
      #d34a60
    );
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .2s ease;
}

.steinberg-practice-mega-menu:hover
.steinberg-practice-mega-main::after,

.steinberg-practice-mega-menu:focus-within
.steinberg-practice-mega-main::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.steinberg-practice-mega-menu:hover
.steinberg-practice-mega-main svg,

.steinberg-practice-mega-menu:focus-within
.steinberg-practice-mega-main svg,

.steinberg-practice-mega-open
.steinberg-practice-mega-main svg {
  transform: rotate(180deg);
}

.steinberg-practice-mega-dropdown {
  position: absolute;
  top: calc(100% + 13px);
  right: -235px;
  z-index: 1300;
  width: min(940px, calc(100vw - 44px));
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  color: #0b2344;
  background: #ffffff;
  border-top: 4px solid #A71930;
  box-shadow:
    0 24px 60px rgba(5,25,50,.2);
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity .18s ease,
    visibility .18s ease,
    transform .18s ease;
}

.steinberg-practice-mega-menu:hover
.steinberg-practice-mega-dropdown,

.steinberg-practice-mega-menu:focus-within
.steinberg-practice-mega-dropdown,

.steinberg-practice-mega-open
.steinberg-practice-mega-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.steinberg-practice-mega-heading {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce4ec;
}

.steinberg-practice-mega-heading > div {
  display: grid;
  gap: 4px;
}

.steinberg-practice-mega-kicker {
  color: #ffffff;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-practice-mega-heading strong {
  color: #0b2344;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.steinberg-practice-mega-heading > a {
  display: inline-flex;
  min-height: 39px;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: #A71930 !important;
  font-size: .75rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.steinberg-practice-mega-heading > a:hover,
.steinberg-practice-mega-heading > a:focus {
  background: #811326 !important;
}

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

.steinberg-practice-mega-card {
  position: relative;
  display: grid !important;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 112px;
  padding: 10px 34px 10px 10px !important;
  align-items: center;
  color: #17324f !important;
  background: #f4f7fa !important;
  border: 1px solid #e0e7ed !important;
  border-left: 3px solid transparent !important;
  text-align: left !important;
  text-decoration: none !important;
  white-space: normal !important;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    transform .18s ease !important;
}

.steinberg-practice-mega-image {
  display: block;
  width: 92px;
  height: 76px;
  overflow: hidden;
  background: #0b2344;
}

.steinberg-practice-mega-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.steinberg-practice-mega-card-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.steinberg-practice-mega-card-copy strong {
  color: #0b2344;
  font-size: .88rem;
  line-height: 1.25;
}

.steinberg-practice-mega-card-copy > span {
  color: #5b6e80;
  font-size: .7rem;
  line-height: 1.4;
}

.steinberg-practice-mega-arrow {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #ffffff;
  font-size: 1rem;
  transform: translateY(-50%);
}

.steinberg-practice-mega-card:hover,
.steinberg-practice-mega-card:focus-visible {
  color: #0b2344 !important;
  background: #fff7f8 !important;
  border-color: #ead7da !important;
  border-left-color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(11,35,68,.1);
  transform: translateY(-2px);
}

.steinberg-practice-mega-card:hover img,
.steinberg-practice-mega-card:focus-visible img {
  transform: scale(1.045);
}

.steinberg-practice-mega-footer {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  padding-top: 15px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #dce4ec;
  color: #5b6e80;
  font-size: .75rem;
}

.steinberg-practice-mega-footer a {
  color: #ffffff !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.steinberg-practice-mega-main:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@media (max-width: 1150px) and (min-width: 901px) {
  .steinberg-practice-mega-dropdown {
    right: -155px;
    width: min(840px, calc(100vw - 34px));
  }

  .steinberg-practice-mega-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .steinberg-practice-mega-menu {
    display: block;
    width: 100%;
  }

  .steinberg-practice-mega-link-wrap {
    width: 100%;
  }

  .steinberg-practice-mega-main {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 8px 0;
  }

  .steinberg-practice-mega-main::after {
    display: none;
  }

  .steinberg-practice-mega-dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 5px 0 12px;
    padding: 16px;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    transform: none;
    pointer-events: auto;
  }

  .steinberg-practice-mega-open
  .steinberg-practice-mega-dropdown {
    display: block;
  }

  .steinberg-practice-mega-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .steinberg-practice-mega-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .steinberg-practice-mega-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-practice-mega-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .steinberg-practice-mega-image {
    width: 82px;
    height: 68px;
  }

  .steinberg-practice-mega-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* STEINBERG PRACTICE MEGA MENU END */

/* STEINBERG TEXT ONLY MEGA MENU START */
.steinberg-practice-mega-dropdown {
  right: -170px !important;
  width: min(820px, calc(100vw - 44px)) !important;
}

.steinberg-practice-mega-grid {
  display: grid !important;
  grid-template-columns:
    repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.steinberg-practice-mega-image {
  display: none !important;
}

.steinberg-practice-mega-card {
  position: relative;
  display: flex !important;
  min-height: 112px !important;
  padding: 19px 40px 18px 18px !important;
  align-items: center !important;
  color: #17324f !important;
  background: #f4f7fa !important;
  border: 1px solid #e0e7ed !important;
  border-left: 4px solid #0b2344 !important;
  text-decoration: none !important;
  white-space: normal !important;
}

.steinberg-practice-mega-card-copy {
  display: grid !important;
  gap: 7px !important;
  width: 100% !important;
  min-width: 0 !important;
}

.steinberg-practice-mega-card-copy strong {
  color: #0b2344 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  line-height: 1.22 !important;
}

.steinberg-practice-mega-card-copy > span {
  color: #5b6e80 !important;
  font-size: .76rem !important;
  line-height: 1.45 !important;
}

.steinberg-practice-mega-arrow {
  right: 15px !important;
  color: #ffffff !important;
}

.steinberg-practice-mega-card:hover,
.steinberg-practice-mega-card:focus-visible {
  color: #0b2344 !important;
  background: #fff7f8 !important;
  border-color: #ead7da !important;
  border-left-color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(11,35,68,.09) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 1150px) and (min-width: 901px) {
  .steinberg-practice-mega-dropdown {
    right: -110px !important;
    width: min(720px, calc(100vw - 34px)) !important;
  }

  .steinberg-practice-mega-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .steinberg-practice-mega-dropdown {
    width: 100% !important;
  }

  .steinberg-practice-mega-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .steinberg-practice-mega-grid {
    grid-template-columns: 1fr !important;
  }

  .steinberg-practice-mega-card {
    min-height: 94px !important;
  }
}
/* STEINBERG TEXT ONLY MEGA MENU END */

/* STEINBERG MEGA MENU COLLISION FIX START */
@media (min-width: 901px) {
  .steinberg-practice-mega-dropdown {
    right: -120px !important;
    width: min(760px, calc(100vw - 36px)) !important;
    padding: 24px !important;
  }

  .steinberg-practice-mega-grid {
    display: grid !important;
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
}

.steinberg-practice-mega-card {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  min-height: 118px !important;
  padding: 20px 42px 19px 20px !important;
  overflow: hidden !important;
  color: #17324f !important;
  background: #f5f7fa !important;
  border: 1px solid #dce4ec !important;
  border-left: 4px solid #0b2344 !important;
  text-align: left !important;
  text-decoration: none !important;
  white-space: normal !important;
}

.steinberg-practice-mega-card-copy {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.steinberg-practice-mega-card-copy strong {
  display: block !important;
  width: 100% !important;
  margin: 0 0 8px !important;
  color: #0b2344 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}

.steinberg-practice-mega-card-copy > span {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  color: #5b6e80 !important;
  font-size: .77rem !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
}

.steinberg-practice-mega-arrow {
  position: absolute !important;
  top: 21px !important;
  right: 18px !important;
  color: #ffffff !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
  transform: none !important;
}

.steinberg-practice-mega-card:hover,
.steinberg-practice-mega-card:focus-visible {
  background: #fff7f8 !important;
  border-color: #ead7da !important;
  border-left-color: #ffffff !important;
  box-shadow: 0 9px 22px rgba(11,35,68,.09) !important;
  transform: translateY(-2px) !important;
}

.steinberg-practice-mega-heading {
  margin-bottom: 16px !important;
}

.steinberg-practice-mega-footer {
  margin-top: 16px !important;
}

@media (max-width: 900px) {
  .steinberg-practice-mega-grid {
    grid-template-columns: 1fr !important;
  }

  .steinberg-practice-mega-card {
    min-height: 102px !important;
  }
}
/* STEINBERG MEGA MENU COLLISION FIX END */

/* STEINBERG MEGA MENU HOVER BRIDGE START */
@media (min-width: 901px) {
  .steinberg-education-menu,
  .steinberg-practice-mega-menu {
    position: relative !important;
  }

  .steinberg-education-menu::after {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1199;
    width: min(470px, 88vw);
    height: 18px;
    content: "";
    background: transparent;
  }

  .steinberg-practice-mega-menu::after {
    position: absolute;
    top: 100%;
    right: -120px;
    z-index: 1299;
    width: min(760px, calc(100vw - 36px));
    height: 19px;
    content: "";
    background: transparent;
  }

  .steinberg-education-dropdown,
  .steinberg-practice-mega-dropdown {
    transition:
      opacity .16s ease,
      visibility .16s ease,
      transform .16s ease !important;
  }

  .steinberg-education-menu:hover
  .steinberg-education-dropdown,
  .steinberg-education-menu:focus-within
  .steinberg-education-dropdown,
  .steinberg-education-menu.steinberg-education-open
  .steinberg-education-dropdown,

  .steinberg-practice-mega-menu:hover
  .steinberg-practice-mega-dropdown,
  .steinberg-practice-mega-menu:focus-within
  .steinberg-practice-mega-dropdown,
  .steinberg-practice-mega-menu.steinberg-practice-mega-open
  .steinberg-practice-mega-dropdown {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 1150px) and (min-width: 901px) {
  .steinberg-practice-mega-menu::after {
    right: -110px;
    width: min(720px, calc(100vw - 34px));
  }
}

@media (max-width: 900px) {
  .steinberg-education-menu::after,
  .steinberg-practice-mega-menu::after {
    display: none !important;
  }
}
/* STEINBERG MEGA MENU HOVER BRIDGE END */

/* STEINBERG MEGA CTA BUTTON START */
.steinberg-practice-mega-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
}

.steinberg-practice-mega-footer-copy,
.steinberg-practice-mega-footer-text,
.steinberg-practice-mega-footer-note {
  flex: 1 1 260px !important;
  min-width: 0 !important;
}

.steinberg-mega-footer-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-width: 205px !important;
  min-height: 52px !important;
  padding: 15px 24px !important;
  background: linear-gradient(135deg, #A71930 0%, #8F1228 100%) !important;
  color: #ffffff !important;
  border: 1px solid #A71930 !important;
  border-radius: 0 !important;
  box-shadow: 0 12px 24px rgba(167,25,48,.18) !important;
  font-size: .96rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .01em !important;
  text-decoration: none !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.steinberg-mega-footer-cta:hover,
.steinberg-mega-footer-cta:focus-visible {
  background: linear-gradient(135deg, #C11F39 0%, #A71930 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 28px rgba(167,25,48,.24) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.steinberg-mega-footer-cta:active {
  transform: translateY(0) !important;
  box-shadow: 0 8px 18px rgba(167,25,48,.18) !important;
}

@media (max-width: 640px) {
  .steinberg-practice-mega-footer {
    align-items: stretch !important;
  }

  .steinberg-mega-footer-cta {
    width: 100% !important;
    min-width: 0 !important;
  }
}
/* STEINBERG MEGA CTA BUTTON END */

/* STEINBERG REMOVE MEGA ARROWS START */
.steinberg-practice-mega-arrow,
.steinberg-category-arrow {
  display: none !important;
}

.steinberg-practice-mega-card {
  padding-right: 20px !important;
}

.steinberg-education-category-list a {
  padding-right: 13px !important;
}
/* STEINBERG REMOVE MEGA ARROWS END */

/* STEINBERG ARTICLE SYSTEM START */
.steinberg-wrap{width:min(1180px,calc(100% - 40px));margin:0 auto}
.steinberg-article-hero,.steinberg-archive-hero{padding:82px 0 68px;color:#fff;background:linear-gradient(135deg,#071c37,#153e69);border-bottom:5px solid #A71930}
.steinberg-breadcrumbs{display:flex;gap:9px;margin-bottom:22px;color:rgba(255,255,255,.72);font-size:.75rem}
.steinberg-breadcrumbs a{color:#fff!important;text-decoration:none!important}
.steinberg-article-kicker{margin:0 0 10px;color:#d76b7d;font-size:.68rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase}
.steinberg-article-hero h1,.steinberg-archive-hero h1{max-width:960px;margin:0;color:#fff;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2.35rem,5vw,4.8rem);font-weight:500;line-height:1.05}
.steinberg-archive-hero p:last-child{max-width:760px;margin:20px 0 0;color:rgba(255,255,255,.82);font-size:1.04rem;line-height:1.7}
.steinberg-article-meta{display:flex;gap:9px;margin-top:22px;flex-wrap:wrap;color:rgba(255,255,255,.72);font-size:.78rem}
.steinberg-article-meta a{color:#fff!important;font-weight:700;text-decoration:none!important}
.steinberg-article-section{padding:68px 0 80px;background:#fff}
.steinberg-article-layout{display:grid;grid-template-columns:minmax(0,1.42fr) minmax(315px,.58fr);gap:46px;align-items:start}
.steinberg-article-featured{margin:0 0 32px;overflow:hidden;border-bottom:5px solid #A71930;box-shadow:0 18px 40px rgba(11,35,68,.13)}
.steinberg-article-featured img{display:block;width:100%;height:auto;max-height:610px;object-fit:cover}
.steinberg-article-body{color:#30475d;font-size:1rem;line-height:1.82}
.steinberg-article-body>*:first-child{margin-top:0}
.steinberg-article-body h2,.steinberg-article-body h3,.steinberg-article-body h4{color:#0b2344;font-family:Georgia,"Times New Roman",serif;font-weight:500;line-height:1.2}
.steinberg-article-body h2{margin:44px 0 17px;font-size:clamp(1.8rem,3vw,2.5rem)}
.steinberg-article-body h3{margin:32px 0 13px;font-size:1.5rem}
.steinberg-article-body p,.steinberg-article-body ul,.steinberg-article-body ol,.steinberg-article-body blockquote,.steinberg-article-body table{margin:0 0 21px}
.steinberg-article-body ul,.steinberg-article-body ol{padding-left:24px}
.steinberg-article-body li+li{margin-top:7px}
.steinberg-article-body a{color:#ffffff;font-weight:700}
.steinberg-article-body img{display:block;max-width:100%;height:auto;margin:28px auto}
.steinberg-article-body blockquote{padding:21px 25px;background:#f5f7fa;border-left:5px solid #A71930;color:#0b2344;font-family:Georgia,"Times New Roman",serif;font-size:1.15rem}
.steinberg-article-body table{display:block;width:100%;overflow-x:auto;border-collapse:collapse}
.steinberg-article-body th,.steinberg-article-body td{padding:11px;border:1px solid #dce4ec;text-align:left}
.steinberg-article-body th{color:#fff;background:#0b2344}
.steinberg-article-sidebar{position:sticky;top:86px;display:grid;gap:21px}
.steinberg-article-sidebar-card{padding:26px 24px;background:#f5f7fa;border-top:5px solid #A71930;box-shadow:0 14px 34px rgba(11,35,68,.1)}
.steinberg-article-sidebar-card h2{margin:0 0 16px;color:#0b2344;font-family:Georgia,"Times New Roman",serif;font-size:1.62rem;font-weight:500}
.steinberg-article-sidebar-card p:not(.steinberg-article-kicker){margin:0 0 17px;color:#53687b;font-size:.84rem;line-height:1.62}
.steinberg-article-side-links{display:grid;gap:8px}
.steinberg-article-side-links a{padding:10px 12px;color:#17324f!important;background:#fff;border-left:3px solid #0b2344;font-size:.79rem;font-weight:800;text-decoration:none!important;transition:.16s ease}
.steinberg-article-side-links a:hover{background:#fff6f7;border-left-color:#ffffff;transform:translateX(2px)}
.steinberg-article-contact-card{color:#fff;background:linear-gradient(145deg,#0b2344,#153e69)}
.steinberg-article-contact-card h2,.steinberg-article-contact-card p:not(.steinberg-article-kicker){color:#fff}
.steinberg-article-button,.steinberg-article-cta a{display:inline-flex;min-height:49px;padding:13px 20px;align-items:center;justify-content:center;color:#fff!important;background:#A71930;font-size:.8rem;font-weight:800;text-decoration:none!important}
.steinberg-article-button:hover,.steinberg-article-cta a:hover{background:#821326}
.steinberg-article-phone{display:block;margin-top:15px;color:#fff!important;font-weight:800;text-decoration:none!important}
.steinberg-article-cta{padding:54px 0;color:#fff;background:#0b2344;border-top:5px solid #A71930}
.steinberg-article-cta>.steinberg-wrap{display:flex;gap:28px;align-items:center;justify-content:space-between}
.steinberg-article-cta h2{margin:0 0 7px;color:#fff;font-family:Georgia,"Times New Roman",serif;font-size:clamp(1.8rem,3vw,2.7rem);font-weight:500}
.steinberg-article-cta p:not(.steinberg-article-kicker){margin:0;color:rgba(255,255,255,.78)}
.steinberg-category-section{padding:48px 0;background:#fff;border-bottom:1px solid #e1e7ed}
.steinberg-category-section h2{margin:0 0 22px;color:#0b2344;font-family:Georgia,"Times New Roman",serif;font-size:2.2rem;font-weight:500}
.steinberg-category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.steinberg-category-grid a{display:flex;gap:15px;min-height:70px;padding:15px 17px;align-items:center;justify-content:space-between;color:#0b2344!important;background:#f5f7fa;border-left:4px solid #0b2344;text-decoration:none!important;transition:.16s ease}
.steinberg-category-grid a:hover{background:#fff6f7;border-left-color:#ffffff;transform:translateY(-2px)}
.steinberg-category-grid span{font-family:Georgia,"Times New Roman",serif;font-size:1.02rem;font-weight:600}
.steinberg-category-grid strong{color:#ffffff;font-size:.68rem;white-space:nowrap}
.steinberg-archive-section{padding:64px 0 80px;background:#f5f7fa}
.steinberg-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:23px}
.steinberg-card{overflow:hidden;background:#fff;border-bottom:4px solid transparent;box-shadow:0 13px 32px rgba(11,35,68,.1);transition:.18s ease}
.steinberg-card:hover{border-bottom-color:#ffffff;box-shadow:0 18px 40px rgba(11,35,68,.15);transform:translateY(-3px)}
.steinberg-card>a{display:flex;height:100%;flex-direction:column;color:inherit!important;text-decoration:none!important}
.steinberg-card-image{display:block;aspect-ratio:16/9;overflow:hidden;background:#0b2344}
.steinberg-card-image img{display:block;width:100%;height:100%;object-fit:cover;transition:.25s ease}
.steinberg-card:hover .steinberg-card-image img{transform:scale(1.035)}
.steinberg-card-empty{display:grid;place-items:center;color:rgba(255,255,255,.65);font-family:Georgia,"Times New Roman",serif;font-size:2rem}
.steinberg-card-copy{display:flex;padding:21px;flex:1 1 auto;flex-direction:column}
.steinberg-card-copy small{margin-bottom:8px;color:#ffffff;font-size:.64rem;font-weight:800;letter-spacing:.09em;text-transform:uppercase}
.steinberg-card-copy strong{margin-bottom:10px;color:#0b2344;font-family:Georgia,"Times New Roman",serif;font-size:1.32rem;line-height:1.24}
.steinberg-card-copy>span{color:#566a7c;font-size:.8rem;line-height:1.58}
@media(max-width:1000px){.steinberg-article-layout{grid-template-columns:minmax(0,1fr) minmax(280px,.7fr);gap:29px}.steinberg-card-grid,.steinberg-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:780px){.steinberg-article-layout{grid-template-columns:1fr}.steinberg-article-sidebar{position:static}.steinberg-article-cta>.steinberg-wrap{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.steinberg-wrap{width:min(100% - 28px,1180px)}.steinberg-card-grid,.steinberg-category-grid{grid-template-columns:1fr}.steinberg-article-hero,.steinberg-archive-hero{padding:64px 0 54px}.steinberg-article-section,.steinberg-archive-section{padding:48px 0 58px}}
/* STEINBERG ARTICLE SYSTEM END */

/* STEINBERG CATEGORY SELECTOR START */
.steinberg-category-selector {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 58px;
  padding: 28px;
  background: #ffffff;
  border-top: 5px solid #A71930;
  box-shadow:
    0 20px 48px rgba(11,35,68,.14);
}

.steinberg-category-selector-inner {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(300px, .75fr);
  gap: 38px;
  align-items: center;
}

.steinberg-category-selector-kicker {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-category-selector-copy h2 {
  margin: 0 0 8px;
  color: #0b2344;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  font-weight: 500;
  line-height: 1.12;
}

.steinberg-category-selector-copy p {
  max-width: 650px;
  margin: 0;
  color: #5b6e80;
  line-height: 1.65;
}

.steinberg-category-selector-control {
  padding: 19px;
  background: #f4f7fa;
  border-left: 4px solid #0b2344;
}

.steinberg-category-selector-control label {
  display: block;
  margin-bottom: 8px;
  color: #0b2344;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.steinberg-category-select-wrap {
  position: relative;
}

.steinberg-category-select {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 45px 12px 14px;
  color: #17324f;
  background: #ffffff;
  border: 1px solid #ced9e2;
  border-radius: 0;
  font: inherit;
  font-size: .92rem;
  font-weight: 750;
  appearance: none;
  cursor: pointer;
}

.steinberg-category-select:focus {
  outline: 2px solid rgba(167,25,48,.2);
  border-color: #ffffff;
}

.steinberg-category-select-wrap svg {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 18px;
  height: 18px;
  color: #ffffff;
  transform: translateY(-50%);
  pointer-events: none;
}

.steinberg-category-current {
  display: block;
  margin-top: 9px;
  color: #657789;
  font-size: .72rem;
}

.steinberg-category-current strong {
  color: #0b2344;
}

.steinberg-category-pill-list {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  flex-wrap: wrap;
  border-top: 1px solid #dce4ec;
}

.steinberg-category-pill {
  display: inline-flex;
  min-height: 38px;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  color: #17324f !important;
  background: #f4f7fa;
  border: 1px solid #dce4ec;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  transition:
    color .16s ease,
    background-color .16s ease,
    border-color .16s ease,
    transform .16s ease;
}

.steinberg-category-pill:hover,
.steinberg-category-pill:focus-visible {
  color: #ffffff !important;
  background: #0b2344;
  border-color: #0b2344;
  transform: translateY(-1px);
}

.steinberg-category-pill-active {
  color: #ffffff !important;
  background: #A71930;
  border-color: #ffffff;
}

@media (max-width: 820px) {
  .steinberg-category-selector {
    width: min(100% - 28px, 1180px);
    margin-top: -20px;
    padding: 22px;
  }

  .steinberg-category-selector-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  .steinberg-category-selector {
    margin-bottom: 40px;
    padding: 18px;
  }

  .steinberg-category-pill-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .steinberg-category-pill {
    width: 100%;
  }
}
/* STEINBERG CATEGORY SELECTOR END */

/* STEINBERG HOMEPAGE H1 SIZE START */
.steinberg-home-primary-h1 {
  font-size: clamp(2.15rem, 4vw, 4.25rem) !important;
}
/* STEINBERG HOMEPAGE H1 SIZE END */

/* STEINBERG HOMEPAGE H1 SPACING START */
.steinberg-home-primary-h1 {
  margin-top: 48px !important;
}

@media (max-width: 700px) {
  .steinberg-home-primary-h1 {
    margin-top: 30px !important;
  }
}
/* STEINBERG HOMEPAGE H1 SPACING END */

/* STEINBERG FEATURED NEWS START */
.steinberg-featured-news {
  position: relative;
  overflow: hidden;
  padding: 68px 0 72px;
  background:
    linear-gradient(
      125deg,
      #081d38 0%,
      #0d2e54 66%,
      #123b68 100%
    );
}

.steinberg-featured-news::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 5px;
  content: "";
  background: #A71930;
}

.steinberg-featured-news-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.steinberg-featured-news-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(310px, .72fr);
  gap: 48px;
  margin-bottom: 28px;
  align-items: end;
}

.steinberg-featured-news-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.72);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.steinberg-featured-news-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.05;
}

.steinberg-featured-news-heading p {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .94rem;
  line-height: 1.75;
}

.steinberg-featured-news-panel {
  padding: 34px 38px;
  overflow: hidden;
  background: #ffffff;
  border-top: 4px solid #A71930;
  box-shadow: 0 24px 52px rgba(0,0,0,.22);
}

.steinberg-featured-news-panel img {
  display: block;
  width: 100%;
  max-width: 862px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .steinberg-featured-news {
    padding: 52px 0;
  }

  .steinberg-featured-news-inner {
    width: min(100% - 28px, 1180px);
  }

  .steinberg-featured-news-heading {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .steinberg-featured-news-panel {
    padding: 24px 16px;
    overflow-x: auto;
  }

  .steinberg-featured-news-panel img {
    width: 720px;
    max-width: none;
  }
}
/* STEINBERG FEATURED NEWS END */

/* STEINBERG FEATURED CONTACT FORM START */
.steinberg-featured-news-panel,
.steinberg-featured-contact-card {
  width: 100%;
  max-width: 862px;
  margin-right: auto;
  margin-left: auto;
}

.steinberg-featured-contact-card {
  margin-top: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d5dee7;
  border-top: 4px solid #A71930;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.steinberg-featured-contact-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 2px;
  padding: 15px 20px 13px;
  align-items: center;
  background: #f5f7f9;
  border-bottom: 1px solid #dbe3ea;
}

.steinberg-featured-contact-kicker {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  min-height: 38px;
  padding-right: 18px;
  align-items: center;
  color: #ffffff;
  border-right: 1px solid #d5dee7;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.steinberg-featured-contact-heading h3 {
  grid-column: 2;
  margin: 0;
  color: #0b2344;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.08;
}

.steinberg-featured-contact-heading p {
  grid-column: 2;
  margin: 0;
  color: #617284;
  font-size: .72rem;
  line-height: 1.35;
}

.steinberg-featured-contact-form {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px 20px;
  background: #ffffff;
}

.steinberg-featured-form-field {
  min-width: 0;
}

.steinberg-featured-form-field label {
  display: block;
  margin-bottom: 4px;
  color: #183450;
  font-size: .64rem;
  font-weight: 800;
  line-height: 1.2;
}

.steinberg-featured-form-field input,
.steinberg-featured-form-field select,
.steinberg-featured-form-field textarea {
  display: block;
  width: 100%;
  color: #17324f;
  background: #f8fafb;
  border: 1px solid #ccd7e0;
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  font-size: .78rem;
}

.steinberg-featured-form-field input,
.steinberg-featured-form-field select {
  min-height: 36px;
  height: 36px;
  padding: 6px 9px;
}

.steinberg-featured-form-field textarea {
  min-height: 58px;
  height: 58px;
  padding: 8px 9px;
  resize: vertical;
}

.steinberg-featured-form-field input:focus,
.steinberg-featured-form-field select:focus,
.steinberg-featured-form-field textarea:focus {
  outline: 2px solid rgba(167,25,48,.13);
  border-color: #ffffff;
}

.steinberg-featured-contact-form
.steinberg-featured-form-wide {
  grid-column: auto;
}

.steinberg-featured-contact-form
.steinberg-featured-form-field:nth-of-type(5) {
  grid-column: 1 / span 2;
}

.steinberg-featured-contact-form
.steinberg-featured-form-field:nth-of-type(6) {
  grid-column: 3 / span 2;
}

.steinberg-featured-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.steinberg-featured-form-recaptcha {
  grid-column: 1 / span 2 !important;
  display: flex;
  min-height: 78px;
  align-items: center;
  overflow: hidden;
}

.steinberg-featured-form-recaptcha
.g-recaptcha {
  transform: scale(.82);
  transform-origin: left center;
}

.steinberg-featured-form-submit-row {
  grid-column: 3 / span 2 !important;
  display: flex;
  gap: 10px;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
}

.steinberg-featured-form-submit-row button {
  display: inline-flex;
  min-width: 190px;
  min-height: 40px;
  padding: 9px 15px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #A71930;
  border: 1px solid #A71930;
  border-radius: 0;
  font-size: .71rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.steinberg-featured-form-submit-row button:hover,
.steinberg-featured-form-submit-row button:focus-visible {
  background: #811326;
}

.steinberg-featured-form-submit-row button:disabled {
  cursor: wait;
  opacity: .7;
}

.steinberg-featured-form-submit-row p {
  max-width: 175px;
  margin: 0;
  color: #71808e;
  font-size: .58rem;
  line-height: 1.3;
  text-align: left;
}

.steinberg-featured-form-status {
  grid-column: 1 / -1 !important;
  min-height: 16px;
  margin-top: -4px;
  font-size: .7rem;
  font-weight: 700;
}

.steinberg-featured-form-success {
  color: #176b3a;
}

.steinberg-featured-form-error {
  color: #ffffff;
}

@media (max-width: 800px) {
  .steinberg-featured-contact-form {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .steinberg-featured-contact-form
  .steinberg-featured-form-field:nth-of-type(5),
  .steinberg-featured-contact-form
  .steinberg-featured-form-field:nth-of-type(6) {
    grid-column: 1 / -1;
  }

  .steinberg-featured-form-recaptcha {
    grid-column: 1 !important;
  }

  .steinberg-featured-form-submit-row {
    grid-column: 2 !important;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .steinberg-featured-contact-heading {
    display: block;
    padding: 15px 16px;
  }

  .steinberg-featured-contact-kicker {
    display: block;
    min-height: 0;
    margin-bottom: 5px;
    padding-right: 0;
    border-right: 0;
  }

  .steinberg-featured-contact-heading h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
  }

  .steinberg-featured-contact-form {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .steinberg-featured-contact-form > *,
  .steinberg-featured-contact-form
  .steinberg-featured-form-field:nth-of-type(5),
  .steinberg-featured-contact-form
  .steinberg-featured-form-field:nth-of-type(6),
  .steinberg-featured-form-recaptcha,
  .steinberg-featured-form-submit-row {
    grid-column: 1 !important;
  }

  .steinberg-featured-form-recaptcha {
    min-height: 68px;
  }

  .steinberg-featured-form-recaptcha
  .g-recaptcha {
    transform: scale(.75);
  }

  .steinberg-featured-form-submit-row {
    align-items: stretch;
  }

  .steinberg-featured-form-submit-row button {
    width: 100%;
    min-width: 0;
  }

  .steinberg-featured-form-submit-row p {
    max-width: none;
  }
}
/* STEINBERG FEATURED CONTACT FORM END */

/* STEINBERG PRACTICE SHOWCASE START */
.steinberg-practice-showcase {
  position: relative;
  overflow: hidden;
  padding: 88px 0 94px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(167,25,48,.07),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #f4f7f9 0%,
      #ffffff 100%
    );
  border-top: 1px solid #dce4ea;
}

.steinberg-practice-showcase::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34%;
  height: 5px;
  content: "";
  background: #A71930;
}

.steinberg-practice-showcase-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.steinberg-practice-showcase-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(310px, .75fr);
  gap: 54px;
  margin-bottom: 42px;
  align-items: end;
}

.steinberg-practice-showcase-kicker {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.steinberg-practice-showcase-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #0b2344;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(2.35rem, 4.4vw, 4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.03em;
}

.steinberg-practice-showcase-heading > p {
  max-width: 470px;
  margin: 0;
  color: #5c6f81;
  font-size: .96rem;
  line-height: 1.75;
}

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

.steinberg-practice-card {
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 28px 28px 25px;
  overflow: hidden;
  flex-direction: column;
  color: inherit;
  background: #ffffff;
  border: 1px solid #d9e2e9;
  box-shadow: 0 12px 32px rgba(11,35,68,.07);
  text-decoration: none;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.steinberg-practice-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  content: "";
  background: #A71930;
  transition: height .25s ease;
}

.steinberg-practice-card::after {
  position: absolute;
  right: -60px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(11,35,68,.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(11,35,68,.018),
    0 0 0 56px rgba(11,35,68,.012);
  pointer-events: none;
}

.steinberg-practice-card:hover,
.steinberg-practice-card:focus-visible {
  border-color: rgba(167,25,48,.42);
  box-shadow: 0 22px 48px rgba(11,35,68,.14);
  outline: none;
  transform: translateY(-6px);
}

.steinberg-practice-card:hover::before,
.steinberg-practice-card:focus-visible::before {
  height: 100%;
}

.steinberg-practice-card-top {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-start;
  justify-content: space-between;
}

.steinberg-practice-card-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #0b2344;
  border: 1px solid #0b2344;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition:
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease;
}

.steinberg-practice-card:hover
.steinberg-practice-card-icon,
.steinberg-practice-card:focus-visible
.steinberg-practice-card-icon {
  color: #ffffff;
  background: #A71930;
  border-color: #ffffff;
}

.steinberg-practice-card-number {
  color: #9aa8b5;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.steinberg-practice-card-label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.steinberg-practice-card h3 {
  margin: 0 0 13px;
  color: #0b2344;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.12;
}

.steinberg-practice-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 25px;
  color: #607284;
  font-size: .84rem;
  line-height: 1.65;
}

.steinberg-practice-card-link {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  padding-top: 17px;
  align-items: center;
  justify-content: space-between;
  color: #0b2344;
  border-top: 1px solid #e1e7ec;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .025em;
}

.steinberg-practice-card-link span {
  color: #ffffff;
  font-size: 1.05rem;
  transition: transform .2s ease;
}

.steinberg-practice-card:hover
.steinberg-practice-card-link span,
.steinberg-practice-card:focus-visible
.steinberg-practice-card-link span {
  transform: translateX(5px);
}

.steinberg-practice-card-featured {
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #0b2344 0%,
      #123a63 100%
    );
  border-color: #0b2344;
}

.steinberg-practice-card-featured::after {
  border-color: rgba(255,255,255,.07);
  box-shadow:
    0 0 0 28px rgba(255,255,255,.025),
    0 0 0 56px rgba(255,255,255,.017);
}

.steinberg-practice-card-featured
.steinberg-practice-card-icon {
  color: #0b2344;
  background: #ffffff;
  border-color: #ffffff;
}

.steinberg-practice-card-featured
.steinberg-practice-card-number {
  color: rgba(255,255,255,.55);
}

.steinberg-practice-card-featured
.steinberg-practice-card-label {
  color: #ffffff;
}

.steinberg-practice-card-featured h3 {
  color: #ffffff;
}

.steinberg-practice-card-featured p {
  color: rgba(255,255,255,.73);
}

.steinberg-practice-card-featured
.steinberg-practice-card-link {
  color: #ffffff;
  border-top-color: rgba(255,255,255,.18);
}

.steinberg-practice-card-featured
.steinberg-practice-card-link span {
  color: #ffffff;
}

.steinberg-practice-card-featured:hover,
.steinberg-practice-card-featured:focus-visible {
  border-color: #ffffff;
  box-shadow: 0 24px 52px rgba(11,35,68,.24);
}

.steinberg-practice-card-featured:hover
.steinberg-practice-card-icon,
.steinberg-practice-card-featured:focus-visible
.steinberg-practice-card-icon {
  color: #ffffff;
  background: #A71930;
  border-color: #ffffff;
}

@media (max-width: 940px) {
  .steinberg-practice-showcase-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steinberg-practice-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .steinberg-practice-showcase {
    padding: 62px 0 68px;
  }

  .steinberg-practice-showcase-inner {
    width: min(100% - 28px, 1180px);
  }

  .steinberg-practice-showcase-heading {
    margin-bottom: 30px;
  }

  .steinberg-practice-showcase-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .steinberg-practice-card-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-practice-card {
    min-height: 0;
    padding: 24px;
  }
}
/* STEINBERG PRACTICE SHOWCASE END */

/* STEINBERG PRACTICE BACKGROUNDS START */
.steinberg-practice-business {
  --steinberg-practice-background:
    url("/assets/images/practice-card-backgrounds/business.webp");
  --steinberg-practice-position: center center;
}

.steinberg-practice-aviation {
  --steinberg-practice-background:
    url("/assets/images/practice-card-backgrounds/aviation.webp");
  --steinberg-practice-position: center center;
}

.steinberg-practice-employment {
  --steinberg-practice-background:
    url("/assets/images/practice-card-backgrounds/employment.webp");
  --steinberg-practice-position: center center;
}

.steinberg-practice-workplace {
  --steinberg-practice-background:
    url("/assets/images/practice-card-backgrounds/workplace-investigations.webp");
  --steinberg-practice-position: center center;
}

.steinberg-practice-litigation {
  --steinberg-practice-background:
    url("/assets/images/practice-card-backgrounds/litigation.webp");
  --steinberg-practice-position: center center;
}

.steinberg-practice-severance {
  --steinberg-practice-background:
    url("/assets/images/practice-card-backgrounds/severance-agreements.webp");
  --steinberg-practice-position: center center;
}

.steinberg-practice-card.steinberg-practice-image-card {
  isolation: isolate;
  min-height: 355px;
  overflow: hidden;
  color: #ffffff !important;
  background: #0b2344 !important;
  border: 1px solid rgba(255,255,255,.2);
  border-top: 4px solid #A71930;
  box-shadow:
    0 15px 38px rgba(11,35,68,.18);
}

.steinberg-practice-card.steinberg-practice-image-card::before {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  content: "" !important;
  opacity: 1 !important;
  background-color: transparent !important;
  background-image:
    var(--steinberg-practice-background) !important;
  background-repeat: no-repeat !important;
  background-position:
    var(--steinberg-practice-position) !important;
  background-size: cover !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: scale(1.025);
  transform-origin: center;
  transition: transform .35s ease;
}

.steinberg-practice-card.steinberg-practice-image-card::after {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  content: "" !important;
  background:
    linear-gradient(
      180deg,
      rgba(6,24,46,.35) 0%,
      rgba(7,27,52,.68) 48%,
      rgba(6,23,45,.96) 100%
    ) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  pointer-events: none;
}

.steinberg-practice-card.steinberg-practice-image-card:hover::before,
.steinberg-practice-card.steinberg-practice-image-card:focus-visible::before {
  width: auto !important;
  height: auto !important;
  transform: scale(1.09);
}

.steinberg-practice-card.steinberg-practice-image-card > * {
  position: relative;
  z-index: 2;
}

.steinberg-practice-card.steinberg-practice-image-card:hover,
.steinberg-practice-card.steinberg-practice-image-card:focus-visible {
  border-color: #ffffff;
  box-shadow:
    0 25px 56px rgba(11,35,68,.28);
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-icon {
  color: #ffffff !important;
  background: rgba(11,35,68,.76) !important;
  border-color: rgba(255,255,255,.42) !important;
  backdrop-filter: blur(4px);
}

.steinberg-practice-card.steinberg-practice-image-card:hover
.steinberg-practice-card-icon,
.steinberg-practice-card.steinberg-practice-image-card:focus-visible
.steinberg-practice-card-icon {
  color: #ffffff !important;
  background: #A71930 !important;
  border-color: #ffffff !important;
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-number {
  color: rgba(255,255,255,.72) !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-label {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.65);
}

.steinberg-practice-card.steinberg-practice-image-card h3 {
  color: #ffffff !important;
  text-shadow:
    0 2px 12px rgba(0,0,0,.72);
}

.steinberg-practice-card.steinberg-practice-image-card p {
  color: rgba(255,255,255,.84) !important;
  text-shadow:
    0 2px 9px rgba(0,0,0,.62);
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-link {
  color: #ffffff !important;
  border-top-color:
    rgba(255,255,255,.28) !important;
  text-shadow:
    0 2px 8px rgba(0,0,0,.55);
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-link span {
  color: #ffffff !important;
}

@media (max-width: 620px) {
  .steinberg-practice-card.steinberg-practice-image-card {
    min-height: 330px;
  }
}
/* STEINBERG PRACTICE BACKGROUNDS END */

/* STEINBERG WHITE ACCENTS START */
.steinberg-practice-card-number,
.steinberg-practice-card-icon,
.steinberg-practice-card-top {
  display: none !important;
}

.steinberg-practice-card-label,
.steinberg-practice-image-card
.steinberg-practice-card-label {
  color: #ffffff !important;
}

.steinberg-practice-card.steinberg-practice-image-card {
  padding-top: 32px;
}
/* STEINBERG WHITE ACCENTS END */

/* STEINBERG LANDSCAPE PRACTICE SECTION START */
.steinberg-practice-showcase {
  padding: 78px 0 86px;
}

.steinberg-practice-showcase-inner {
  width: min(1680px, calc(100% - 32px));
  max-width: none;
}

.steinberg-practice-showcase-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(330px, 390px);
  gap: 30px;
  align-items: start;
}

.steinberg-practice-content-column {
  min-width: 0;
}

.steinberg-practice-showcase-heading {
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, .65fr);
  gap: 40px;
  margin-bottom: 32px;
}

.steinberg-practice-card-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.steinberg-practice-card.steinberg-practice-image-card {
  width: 100%;
  min-height: 250px;
  aspect-ratio: 16 / 9;
  padding: 25px 26px 23px;
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-label {
  margin-bottom: 7px;
  color: #ffffff !important;
}

.steinberg-practice-card.steinberg-practice-image-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.steinberg-practice-card.steinberg-practice-image-card p {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: .79rem;
  line-height: 1.55;
}

.steinberg-practice-card-number,
.steinberg-practice-card-icon,
.steinberg-practice-card-top {
  display: none !important;
}

.steinberg-practice-insights {
  position: sticky;
  top: 78px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      150deg,
      #071b34 0%,
      #0d2e54 100%
    );
  border-top: 5px solid #A71930;
  box-shadow:
    0 22px 50px rgba(11,35,68,.19);
}

.steinberg-practice-insights-heading {
  position: relative;
  padding: 30px 28px 25px;
  overflow: hidden;
  border-bottom:
    1px solid rgba(255,255,255,.16);
}

.steinberg-practice-insights-heading::after {
  position: absolute;
  top: -80px;
  right: -85px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(255,255,255,.025),
    0 0 0 60px rgba(255,255,255,.015);
}

.steinberg-practice-insights-kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 9px;
  color: #ffffff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.steinberg-practice-insights-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #ffffff;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: clamp(1.9rem, 2.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.steinberg-practice-insights-heading p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  line-height: 1.65;
}

.steinberg-practice-insights-list {
  display: grid;
}

.steinberg-insight-link {
  display: block;
  padding: 20px 25px 19px;
  color: #ffffff;
  border-bottom:
    1px solid rgba(255,255,255,.13);
  text-decoration: none;
  transition:
    background-color .18s ease,
    padding-left .18s ease;
}

.steinberg-insight-link:hover,
.steinberg-insight-link:focus-visible {
  padding-left: 30px;
  background: rgba(255,255,255,.07);
  outline: none;
}

.steinberg-insight-category {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .11em;
  opacity: .72;
  text-transform: uppercase;
}

.steinberg-insight-link h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.28;
}

.steinberg-insight-read {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.72);
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.steinberg-insight-read span {
  color: #ffffff;
  font-size: .9rem;
}

.steinberg-practice-insights-all {
  display: flex;
  min-height: 55px;
  padding: 15px 25px;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  background: #A71930;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
}

.steinberg-practice-insights-all:hover,
.steinberg-practice-insights-all:focus-visible {
  color: #ffffff;
  background: #801225;
  outline: none;
}

.steinberg-practice-insights-all span {
  font-size: 1rem;
}

@media (max-width: 1160px) {
  .steinberg-practice-showcase-layout {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(300px, 340px);
    gap: 24px;
  }

  .steinberg-practice-card-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-practice-card.steinberg-practice-image-card {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 900px) {
  .steinberg-practice-showcase-layout {
    grid-template-columns: 1fr;
  }

  .steinberg-practice-insights {
    position: relative;
    top: auto;
  }

  .steinberg-practice-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .steinberg-practice-card.steinberg-practice-image-card {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .steinberg-practice-showcase {
    padding: 58px 0 65px;
  }

  .steinberg-practice-showcase-inner {
    width: min(100% - 24px, 1680px);
  }

  .steinberg-practice-showcase-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steinberg-practice-card-grid {
    grid-template-columns: 1fr;
  }

  .steinberg-practice-card.steinberg-practice-image-card {
    min-height: 260px;
    aspect-ratio: auto;
  }
}
/* STEINBERG LANDSCAPE PRACTICE SECTION END */

/* STEINBERG COMPACT PRACTICE SECTION START */
.steinberg-practice-showcase {
  padding: 48px 0 54px !important;
}

.steinberg-practice-showcase-inner {
  width: calc(100% - 20px) !important;
  max-width: 1720px !important;
}

.steinberg-practice-showcase-layout {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 340px) !important;
  gap: 18px !important;
}

.steinberg-practice-showcase-heading {
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(250px, .55fr) !important;
  gap: 30px !important;
  margin-bottom: 22px !important;
}

.steinberg-practice-showcase-kicker {
  margin-bottom: 6px !important;
  font-size: .62rem !important;
}

.steinberg-practice-showcase-heading h2 {
  max-width: 730px !important;
  font-size:
    clamp(1.9rem, 3vw, 2.85rem) !important;
  line-height: 1.03 !important;
}

.steinberg-practice-showcase-heading > p {
  font-size: .78rem !important;
  line-height: 1.55 !important;
}

.steinberg-practice-card-grid {
  grid-template-columns:
    repeat(3, minmax(0, 1fr)) !important;
  gap: 13px !important;
}

.steinberg-practice-card.steinberg-practice-image-card {
  min-height: 205px !important;
  aspect-ratio: 16 / 8.2 !important;
  padding: 19px 20px 17px !important;
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-label {
  margin-bottom: 5px !important;
  font-size: .56rem !important;
}

.steinberg-practice-card.steinberg-practice-image-card h3 {
  margin-bottom: 7px !important;
  font-size:
    clamp(1.18rem, 1.45vw, 1.5rem) !important;
  line-height: 1.06 !important;
}

.steinberg-practice-card.steinberg-practice-image-card p {
  margin-bottom: 10px !important;
  font-size: .68rem !important;
  line-height: 1.42 !important;
}

.steinberg-practice-card.steinberg-practice-image-card
.steinberg-practice-card-link {
  padding-top: 10px !important;
  font-size: .61rem !important;
}

.steinberg-practice-insights {
  top: 68px !important;
  border-top-width: 4px !important;
}

.steinberg-practice-insights-heading {
  padding: 20px 20px 17px !important;
}

.steinberg-practice-insights-kicker {
  margin-bottom: 6px !important;
  font-size: .56rem !important;
}

.steinberg-practice-insights-heading h2 {
  margin-bottom: 9px !important;
  font-size:
    clamp(1.45rem, 1.8vw, 1.85rem) !important;
  line-height: 1.03 !important;
}

.steinberg-practice-insights-heading p {
  font-size: .67rem !important;
  line-height: 1.48 !important;
}

.steinberg-insight-link {
  padding: 13px 18px 12px !important;
}

.steinberg-insight-link:hover,
.steinberg-insight-link:focus-visible {
  padding-left: 22px !important;
}

.steinberg-insight-category {
  margin-bottom: 4px !important;
  font-size: .52rem !important;
}

.steinberg-insight-link h3 {
  margin-bottom: 6px !important;
  font-size: .83rem !important;
  line-height: 1.2 !important;
}

.steinberg-insight-read {
  font-size: .52rem !important;
}

.steinberg-practice-insights-all {
  min-height: 46px !important;
  padding: 11px 18px !important;
  font-size: .59rem !important;
}

@media (max-width: 1280px) {
  .steinberg-practice-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }

  .steinberg-practice-card.steinberg-practice-image-card {
    min-height: 210px !important;
    aspect-ratio: 16 / 7.2 !important;
  }
}

@media (max-width: 900px) {
  .steinberg-practice-showcase-inner {
    width: calc(100% - 28px) !important;
  }

  .steinberg-practice-showcase-layout {
    grid-template-columns: 1fr !important;
  }

  .steinberg-practice-insights {
    position: relative !important;
    top: auto !important;
  }
}

@media (max-width: 650px) {
  .steinberg-practice-showcase {
    padding: 40px 0 46px !important;
  }

  .steinberg-practice-showcase-heading {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .steinberg-practice-card-grid {
    grid-template-columns: 1fr !important;
  }

  .steinberg-practice-card.steinberg-practice-image-card {
    min-height: 220px !important;
    aspect-ratio: auto !important;
  }
}
/* STEINBERG COMPACT PRACTICE SECTION END */

/* STEINBERG PRACTICE BOTTOM ALIGNMENT START */
.steinberg-practice-showcase-layout {
  align-items: stretch !important;
}

.steinberg-practice-content-column {
  display: flex !important;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.steinberg-practice-card-grid {
  display: grid !important;
  grid-template-columns:
    repeat(3, minmax(0, 1fr)) !important;
  grid-template-rows:
    repeat(2, minmax(0, 1fr)) !important;
  flex: 1 1 auto;
  align-items: stretch !important;
}

.steinberg-practice-card,
.steinberg-practice-card.steinberg-practice-image-card,
.steinberg-practice-card-featured {
  min-height: 0 !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
}

.steinberg-practice-card::before,
.steinberg-practice-card::after,
.steinberg-practice-card.steinberg-practice-image-card::before,
.steinberg-practice-card.steinberg-practice-image-card::after {
  border-radius: 0 !important;
}

.steinberg-practice-insights {
  align-self: stretch !important;
  height: 100% !important;
  border-radius: 0 !important;
}

.steinberg-practice-insights-heading,
.steinberg-insight-link,
.steinberg-practice-insights-all {
  border-radius: 0 !important;
}

@media (min-width: 1281px) {
  .steinberg-practice-card-grid {
    min-height: 0 !important;
  }

  .steinberg-practice-card.steinberg-practice-image-card {
    padding:
      17px 19px 15px !important;
  }

  .steinberg-practice-card.steinberg-practice-image-card p {
    margin-bottom: 8px !important;
  }

  .steinberg-practice-card.steinberg-practice-image-card
  .steinberg-practice-card-link {
    margin-top: auto !important;
  }
}

@media (max-width: 1280px) {
  .steinberg-practice-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
    grid-template-rows: none !important;
  }

  .steinberg-practice-card,
  .steinberg-practice-card.steinberg-practice-image-card {
    min-height: 205px !important;
    height: auto !important;
  }
}

@media (max-width: 900px) {
  .steinberg-practice-content-column,
  .steinberg-practice-insights {
    height: auto !important;
  }
}

@media (max-width: 650px) {
  .steinberg-practice-card-grid {
    grid-template-columns: 1fr !important;
  }
}
/* STEINBERG PRACTICE BOTTOM ALIGNMENT END */

/* STEINBERG FRANK NEWS COMBINATION START */
.steinberg-featured-news {
  padding: 38px 0 42px !important;
}

.steinberg-featured-news-inner {
  width: calc(100% - 20px) !important;
  max-width: 1720px !important;
}

.steinberg-featured-combined-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(610px, .98fr);
  gap: 20px;
  align-items: stretch;
}

.steinberg-featured-frank-column,
.steinberg-featured-news-right {
  min-width: 0;
}

.steinberg-featured-frank-column {
  display: flex;
  background: #ffffff;
  border-top: 4px solid #A71930;
  box-shadow:
    0 18px 42px rgba(0,0,0,.18);
}

.steinberg-frank-featured-section {
  width: 100% !important;
  max-width: none !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.steinberg-frank-featured-section > * {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.steinberg-frank-featured-grid {
  display: grid !important;
  grid-template-columns:
    minmax(235px, .78fr)
    minmax(0, 1.22fr) !important;
  min-height: 100% !important;
  gap: 0 !important;
  align-items: stretch !important;
}

.steinberg-frank-featured-image {
  min-width: 0;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.steinberg-frank-featured-image img,
.steinberg-frank-featured-section img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.steinberg-frank-featured-content {
  display: flex !important;
  min-width: 0;
  padding: 28px 30px !important;
  flex-direction: column;
  justify-content: center;
}

.steinberg-frank-featured-content
.steinberg-home-section-kicker,
.steinberg-frank-featured-content
[class*="kicker"] {
  margin-bottom: 7px !important;
  font-size: .59rem !important;
}

.steinberg-frank-featured-content h2 {
  margin-bottom: 14px !important;
  font-size:
    clamp(1.85rem, 2.55vw, 3rem) !important;
  line-height: 1.02 !important;
}

.steinberg-frank-featured-content p {
  margin-bottom: 11px !important;
  font-size: .78rem !important;
  line-height: 1.55 !important;
}

.steinberg-frank-featured-content a,
.steinberg-frank-featured-content button {
  align-self: flex-start;
  min-height: 40px !important;
  padding: 10px 16px !important;
  border-radius: 0 !important;
  font-size: .68rem !important;
}

.steinberg-featured-news-right {
  display: flex;
  gap: 11px;
  flex-direction: column;
}

.steinberg-featured-news-heading {
  display: grid !important;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(250px, .65fr) !important;
  gap: 22px !important;
  margin: 0 !important;
  padding: 0 2px 3px !important;
  align-items: end !important;
}

.steinberg-featured-news-kicker {
  margin-bottom: 5px !important;
  font-size: .59rem !important;
}

.steinberg-featured-news-heading h2 {
  font-size:
    clamp(1.8rem, 2.5vw, 2.75rem) !important;
}

.steinberg-featured-news-heading p {
  font-size: .72rem !important;
  line-height: 1.5 !important;
}

.steinberg-featured-news-panel {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px 22px !important;
  border-radius: 0 !important;
}

.steinberg-featured-news-panel img {
  width: 100% !important;
  max-width: 862px !important;
  height: auto !important;
}

.steinberg-featured-contact-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.steinberg-featured-contact-heading {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  column-gap: 13px !important;
  padding: 10px 14px !important;
}

.steinberg-featured-contact-kicker {
  min-height: 30px !important;
  padding-right: 13px !important;
  font-size: .53rem !important;
}

.steinberg-featured-contact-heading h3 {
  font-size: 1.16rem !important;
}

.steinberg-featured-contact-heading p {
  font-size: .61rem !important;
}

.steinberg-featured-contact-form {
  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;
  gap: 7px 9px !important;
  padding: 11px 14px 12px !important;
}

.steinberg-featured-form-field label {
  margin-bottom: 3px !important;
  font-size: .56rem !important;
}

.steinberg-featured-form-field input,
.steinberg-featured-form-field select {
  min-height: 31px !important;
  height: 31px !important;
  padding: 4px 7px !important;
  font-size: .69rem !important;
}

.steinberg-featured-form-field textarea {
  min-height: 43px !important;
  height: 43px !important;
  padding: 6px 7px !important;
  font-size: .69rem !important;
}

.steinberg-featured-form-recaptcha {
  min-height: 61px !important;
}

.steinberg-featured-form-recaptcha
.g-recaptcha {
  transform: scale(.69) !important;
  transform-origin: left top !important;
}

.steinberg-featured-form-submit-row {
  gap: 7px !important;
}

.steinberg-featured-form-submit-row button {
  min-width: 170px !important;
  min-height: 35px !important;
  padding: 7px 12px !important;
  font-size: .62rem !important;
}

.steinberg-featured-form-submit-row p {
  max-width: 155px !important;
  font-size: .52rem !important;
}

.steinberg-featured-form-status {
  min-height: 12px !important;
  margin-top: -5px !important;
  font-size: .62rem !important;
}

@media (max-width: 1220px) {
  .steinberg-featured-combined-layout {
    grid-template-columns:
      minmax(0, .9fr)
      minmax(540px, 1.1fr);
  }

  .steinberg-frank-featured-grid {
    grid-template-columns: 1fr !important;
  }

  .steinberg-frank-featured-image {
    min-height: 300px !important;
  }

  .steinberg-frank-featured-image img,
  .steinberg-frank-featured-section img {
    min-height: 300px !important;
    max-height: 360px !important;
  }
}

@media (max-width: 960px) {
  .steinberg-featured-combined-layout {
    grid-template-columns: 1fr;
  }

  .steinberg-frank-featured-grid {
    grid-template-columns:
      minmax(220px, .75fr)
      minmax(0, 1.25fr) !important;
  }
}

@media (max-width: 680px) {
  .steinberg-featured-news {
    padding: 30px 0 34px !important;
  }

  .steinberg-featured-news-inner {
    width: calc(100% - 24px) !important;
  }

  .steinberg-frank-featured-grid,
  .steinberg-featured-news-heading,
  .steinberg-featured-contact-form {
    grid-template-columns: 1fr !important;
  }

  .steinberg-frank-featured-content {
    padding: 23px 20px !important;
  }

  .steinberg-featured-contact-form > *,
  .steinberg-featured-form-recaptcha,
  .steinberg-featured-form-submit-row {
    grid-column: 1 !important;
  }
}
/* STEINBERG FRANK NEWS COMBINATION END */

/* STEINBERG SMALL LABEL REMOVAL START */
.steinberg-practice-card-label,
.steinberg-insight-category {
  display: none !important;
}

.steinberg-practice-card.steinberg-practice-image-card h3 {
  margin-top: 0 !important;
}

.steinberg-insight-link h3 {
  margin-top: 0 !important;
}
/* STEINBERG SMALL LABEL REMOVAL END */

/* STEINBERG FRANK TOP LINE REMOVAL START */
.steinberg-featured-frank-column,
.steinberg-frank-featured-section {
  border-top: 0 !important;
}
/* STEINBERG FRANK TOP LINE REMOVAL END */

/* STEINBERG GOOGLE REVIEWS START */
.steinberg-google-reviews {
  position: relative;
  padding: 42px 0;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid #dce4ea;
}

.steinberg-google-reviews-inner {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
}

.steinberg-google-reviews
[class*="elfsight-app-"] {
  width: 100%;
  min-height: 180px;
}

@media (max-width: 680px) {
  .steinberg-google-reviews {
    padding: 30px 0;
  }

  .steinberg-google-reviews-inner {
    width: calc(100% - 24px);
  }
}
/* STEINBERG GOOGLE REVIEWS END */

/* STEINBERG FULL WIDTH REVIEWS START */
.steinberg-google-reviews {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: #ffffff !important;
  border: 0 !important;
}

.steinberg-google-reviews-inner {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.steinberg-google-reviews
[class*="elfsight-app-"] {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.steinberg-google-reviews iframe {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
/* STEINBERG FULL WIDTH REVIEWS END */

/* STEINBERG EXPECT NUMBERS AND EDUCATION HOVER START */
.steinberg-what-to-expect
.steinberg-expect-card::before {
  display: none !important;
  content: none !important;
}

.steinberg-what-to-expect
.steinberg-expect-card
[class*="number"],
.steinberg-what-to-expect
.steinberg-expect-card
[class*="step-number"],
.steinberg-what-to-expect
.steinberg-expect-card
[class*="index"] {
  display: none !important;
}

.steinberg-what-to-expect
.steinberg-expect-card {
  counter-increment: none !important;
}

.steinberg-education-dropdown-link:hover,
.steinberg-education-dropdown-link:focus,
.steinberg-education-dropdown-link:focus-visible {
  color: #ffffff !important;
  background-color: #123b68 !important;
  background-image: none !important;
  border-color: #123b68 !important;
  outline: none !important;
}

.steinberg-education-dropdown-link:hover *,
.steinberg-education-dropdown-link:focus *,
.steinberg-education-dropdown-link:focus-visible * {
  color: #ffffff !important;
}
/* STEINBERG EXPECT NUMBERS AND EDUCATION HOVER END */

/* STEINBERG EDUCATION BLUE HOVER FIX START */
body .steinberg-education-nav-item
.steinberg-education-dropdown-item:hover,
body .steinberg-education-nav-item
.steinberg-education-dropdown-item:focus-within {
  background: #123b68 !important;
  background-color: #123b68 !important;
  background-image: none !important;
  border-color: #123b68 !important;
  box-shadow: none !important;
}

body .steinberg-education-nav-item
.steinberg-education-dropdown-link:hover,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:focus,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:focus-visible,
body .steinberg-education-nav-item
.steinberg-education-dropdown-item:hover
> .steinberg-education-dropdown-link,
body .steinberg-education-nav-item
.steinberg-education-dropdown-item:focus-within
> .steinberg-education-dropdown-link {
  color: #ffffff !important;
  background: #123b68 !important;
  background-color: #123b68 !important;
  background-image: none !important;
  border-color: #123b68 !important;
  border-left-color: #123b68 !important;
  box-shadow: none !important;
  outline: none !important;
}

body .steinberg-education-nav-item
.steinberg-education-dropdown-link:hover *,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:focus *,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:focus-visible *,
body .steinberg-education-nav-item
.steinberg-education-dropdown-item:hover
> .steinberg-education-dropdown-link *,
body .steinberg-education-nav-item
.steinberg-education-dropdown-item:focus-within
> .steinberg-education-dropdown-link * {
  color: #ffffff !important;
}

body .steinberg-education-nav-item
.steinberg-education-dropdown-link::before,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link::after {
  background-color: transparent !important;
  border-color: transparent !important;
}

body .steinberg-education-nav-item
.steinberg-education-dropdown-link:hover::before,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:hover::after,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:focus::before,
body .steinberg-education-nav-item
.steinberg-education-dropdown-link:focus::after {
  background-color: transparent !important;
  border-color: transparent !important;
}
/* STEINBERG EDUCATION BLUE HOVER FIX END */

/* STEINBERG EDUCATION MEGA ALIGNMENT START */
.steinberg-main-header-row,
.navigation-row.steinberg-main-header-row {
  position: relative !important;
}

.steinberg-education-nav-item {
  position: static !important;
}

.steinberg-education-mega-menu {
  position: absolute !important;
  z-index: 10000 !important;
  top: 100% !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-items: stretch !important;
  background: #ffffff !important;
  border: 1px solid #d7e0e7 !important;
  border-top: 3px solid #123b68 !important;
  border-radius: 0 !important;
  box-shadow:
    0 22px 42px rgba(7,27,52,.2) !important;
  transform: none !important;
}

.steinberg-education-mega-menu::before {
  position: absolute;
  top: -14px;
  right: 0;
  left: 0;
  height: 14px;
  content: "";
  background: transparent;
}

.steinberg-education-mega-menu
.steinberg-education-mega-cell {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.steinberg-education-mega-menu
.steinberg-education-dropdown-link {
  display: flex !important;
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 13px 15px !important;
  align-items: center !important;
  box-sizing: border-box !important;
  color: #0b2344 !important;
  background: #f1f4f7 !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.steinberg-education-mega-menu
.steinberg-education-dropdown-link:hover,
.steinberg-education-mega-menu
.steinberg-education-dropdown-link:focus,
.steinberg-education-mega-menu
.steinberg-education-dropdown-link:focus-visible {
  color: #ffffff !important;
  background: #123b68 !important;
}

.steinberg-education-mega-menu
.steinberg-education-dropdown-link:hover *,
.steinberg-education-mega-menu
.steinberg-education-dropdown-link:focus *,
.steinberg-education-mega-menu
.steinberg-education-dropdown-link:focus-visible * {
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .steinberg-education-mega-menu {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 8px !important;
    grid-template-columns: 1fr !important;
    box-shadow: none !important;
  }
}
/* STEINBERG EDUCATION MEGA ALIGNMENT END */

/* STEINBERG EXPECT FAQ SECTION START */
.steinberg-expect-faq-section {
  margin: 0;
  padding: 56px 0;
  background: #eef3f7;
}

.steinberg-expect-faq-inner {
  display: grid;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.steinberg-expect-column,
.steinberg-faq-column {
  min-width: 0;
  padding: 38px;
}

.steinberg-expect-column {
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #071b34 0%,
      #0b2f57 62%,
      #123b68 100%
    );
  border-left: 6px solid #a71930;
}

.steinberg-faq-column {
  background: #ffffff;
  border-top: 4px solid #123b68;
  box-shadow: 0 18px 42px rgba(7, 27, 52, .12);
}

.steinberg-expect-kicker,
.steinberg-faq-kicker {
  margin: 0 0 10px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.steinberg-expect-kicker {
  color: #ffffff;
}

.steinberg-faq-kicker {
  color: #ffffff;
}

.steinberg-expect-column > h2,
.steinberg-faq-column > h2 {
  margin: 0 0 25px;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.steinberg-expect-column > h2 {
  color: #ffffff;
}

.steinberg-faq-column > h2 {
  color: #0b2344;
}

.steinberg-expect-list {
  display: grid;
  gap: 12px;
}

.steinberg-expect-item {
  margin: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .08);
  border-left: 4px solid #ffffff;
}

.steinberg-expect-item h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.05rem;
}

.steinberg-expect-item p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .93rem;
  line-height: 1.6;
}

.steinberg-home-faqs {
  display: grid;
  gap: 9px;
}

.steinberg-home-faq {
  margin: 0;
  overflow: hidden;
  background: #f1f4f7;
  border-left: 4px solid #123b68;
}

.steinberg-home-faq summary {
  position: relative;
  display: block;
  padding: 16px 50px 16px 17px;
  color: #0b2344;
  font-size: .91rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.steinberg-home-faq summary::-webkit-details-marker {
  display: none;
}

.steinberg-home-faq summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  content: "+";
  color: #ffffff;
  line-height: 24px;
  text-align: center;
  background: #123b68;
  transform: translateY(-50%);
}

.steinberg-home-faq[open] summary {
  color: #ffffff;
  background: #123b68;
}

.steinberg-home-faq[open] summary::after {
  content: "−";
  color: #123b68;
  background: #ffffff;
}

.steinberg-home-faq > div {
  padding: 0 18px 17px;
}

.steinberg-home-faq > div p {
  margin: 15px 0 0;
  color: #435268;
  font-size: .9rem;
  line-height: 1.62;
}

@media (max-width: 950px) {
  .steinberg-expect-faq-inner {
    width: min(760px, calc(100% - 30px));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .steinberg-expect-faq-section {
    padding: 28px 0;
  }

  .steinberg-expect-faq-inner {
    width: calc(100% - 22px);
  }

  .steinberg-expect-column,
  .steinberg-faq-column {
    padding: 26px 21px;
  }
}
/* STEINBERG EXPECT FAQ SECTION END */

/* STEINBERG EXPECT EXACT BOTTOM ALIGNMENT START */
body .steinberg-expect-faq-inner {
  align-items: stretch !important;
}

body .steinberg-expect-column,
body .steinberg-faq-column {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

body .steinberg-expect-column {
  padding: 27px 34px !important;
}

body .steinberg-faq-column {
  padding-bottom: 0 !important;
}

body .steinberg-expect-kicker {
  margin: 0 0 7px !important;
}

body .steinberg-expect-column > h2 {
  margin: 0 0 16px !important;
  font-size: clamp(
    1.7rem,
    2.25vw,
    2.2rem
  ) !important;
  line-height: 1.08 !important;
}

body .steinberg-expect-list {
  gap: 8px !important;
}

body .steinberg-expect-item {
  padding: 12px 17px !important;
}

body .steinberg-expect-item h3 {
  margin: 0 0 4px !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
}

body .steinberg-expect-item p {
  margin: 0 !important;
  font-size: .89rem !important;
  line-height: 1.42 !important;
}

body .steinberg-home-faqs {
  margin-bottom: 0 !important;
}

body .steinberg-home-faq:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 950px) {
  body .steinberg-expect-column,
  body .steinberg-faq-column {
    height: auto !important;
  }

  body .steinberg-faq-column {
    padding-bottom: 26px !important;
  }
}
/* STEINBERG EXPECT EXACT BOTTOM ALIGNMENT END */

/* STEINBERG FAQ NUDGE UP START */
body .steinberg-faq-column{
  padding-top:12px !important;
  margin-top:-10px !important;
}

body .steinberg-faq-column > *:first-child{
  margin-top:0 !important;
}

body .steinberg-faq-column .steinberg-home-faqs,
body .steinberg-faq-column .steinberg-faq-list{
  margin-top:10px !important;
}

body .steinberg-faq-column h2{
  margin-top:4px !important;
  margin-bottom:14px !important;
}

@media (max-width: 950px){
  body .steinberg-faq-column{
    margin-top:0 !important;
    padding-top:18px !important;
  }
}
/* STEINBERG FAQ NUDGE UP END */

/* STEINBERG FAQ CONTENT HIGHER START */
body .steinberg-faq-column {
  margin-top: 0 !important;
  padding-top: 4px !important;
}

body .steinberg-faq-column
.steinberg-faq-kicker {
  margin-top: 0 !important;
  margin-bottom: 3px !important;
}

body .steinberg-faq-column > h2 {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
}
/* STEINBERG FAQ CONTENT HIGHER END */

/* STEINBERG CONTACT MAP SECTION START */
.steinberg-contact-map-section {
  margin: 0;
  padding: 58px 0;
  background:
    linear-gradient(
      135deg,
      #f1f4f7 0%,
      #ffffff 100%
    );
}

.steinberg-contact-map-inner {
  display: grid;
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, .92fr);
  align-items: stretch;
  background: #ffffff;
  box-shadow:
    0 24px 54px rgba(7, 27, 52, .14);
}

.steinberg-contact-panel {
  min-width: 0;
  padding: 42px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      #071b34 0%,
      #0c315c 65%,
      #123b68 100%
    );
  border-left: 6px solid #a71930;
}

.steinberg-contact-kicker {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.steinberg-contact-panel > h2 {
  max-width: 690px;
  margin: 0 0 13px;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.steinberg-contact-intro {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .86);
  font-size: .97rem;
  line-height: 1.65;
}

.steinberg-contact-phone {
  display: inline-flex;
  margin: 0 0 23px;
  padding: 10px 14px;
  flex-direction: column;
  color: #ffffff !important;
  text-decoration: none !important;
  background: rgba(255, 255, 255, .09);
  border-left: 4px solid #ffffff;
}

.steinberg-contact-phone span {
  margin-bottom: 2px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.steinberg-contact-phone strong {
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.2;
}

.steinberg-home-contact-form {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.steinberg-home-contact-form > * {
  min-width: 0;
}

.steinberg-home-contact-form label {
  display: block;
  margin: 0 0 5px;
  color: #ffffff;
  font-size: .76rem;
  font-weight: 800;
}

.steinberg-home-contact-form input,
.steinberg-home-contact-form select,
.steinberg-home-contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  color: #0b2344;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  outline: none;
}

.steinberg-home-contact-form input,
.steinberg-home-contact-form select {
  min-height: 43px;
  padding: 9px 11px;
}

.steinberg-home-contact-form textarea {
  min-height: 106px;
  padding: 10px 11px;
  resize: vertical;
}

.steinberg-home-contact-form input:focus,
.steinberg-home-contact-form select:focus,
.steinberg-home-contact-form textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(167, 25, 48, .16);
}

.steinberg-home-contact-form
textarea,
.steinberg-home-contact-form
.g-recaptcha,
.steinberg-home-contact-form
button[type="submit"],
.steinberg-home-contact-form
input[type="submit"],
.steinberg-home-contact-form
[class*="form-status"],
.steinberg-home-contact-form
[class*="message"] {
  grid-column: 1 / -1;
}

.steinberg-home-contact-form
button[type="submit"],
.steinberg-home-contact-form
input[type="submit"] {
  min-height: 46px;
  padding: 11px 18px;
  color: #ffffff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #a71930;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition:
    background-color .2s ease,
    transform .2s ease;
}

.steinberg-home-contact-form
button[type="submit"]:hover,
.steinberg-home-contact-form
input[type="submit"]:hover {
  background: #c0223d;
  transform: translateY(-1px);
}

.steinberg-home-contact-form
.g-recaptcha {
  max-width: 100%;
  overflow: hidden;
}

.steinberg-contact-map-panel {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 100%;
  grid-template-rows: minmax(460px, 1fr) auto;
  background: #e7edf2;
  border-top: 4px solid #123b68;
}

.steinberg-contact-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.steinberg-contact-map-details {
  display: flex;
  padding: 17px 20px;
  flex-direction: column;
  color: #ffffff;
  background: #0b2f57;
}

.steinberg-contact-map-details strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: .93rem;
}

.steinberg-contact-map-details span {
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
}

@media (max-width: 980px) {
  .steinberg-contact-map-section {
    padding: 42px 0;
  }

  .steinberg-contact-map-inner {
    width: min(780px, calc(100% - 30px));
    grid-template-columns: 1fr;
  }

  .steinberg-contact-map-panel {
    grid-template-rows: 380px auto;
  }

  .steinberg-contact-map {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .steinberg-contact-map-section {
    padding: 28px 0;
  }

  .steinberg-contact-map-inner {
    width: calc(100% - 22px);
  }

  .steinberg-contact-panel {
    padding: 28px 21px;
  }

  .steinberg-home-contact-form {
    grid-template-columns: 1fr;
  }

  .steinberg-home-contact-form > * {
    grid-column: 1 !important;
  }

  .steinberg-contact-map-panel {
    grid-template-rows: 310px auto;
  }

  .steinberg-contact-map {
    min-height: 310px;
  }
}
/* STEINBERG CONTACT MAP SECTION END */

/* STEINBERG CONTACT MAP FULL WIDTH START */
body .steinberg-contact-map-section {
  position: relative !important;
  width: 100vw !important;
  max-width: none !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body .steinberg-contact-map-inner {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr) !important;
  box-shadow: none !important;
}

body .steinberg-contact-panel,
body .steinberg-contact-map-panel {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

@media (max-width: 980px) {
  body .steinberg-contact-map-inner {
    grid-template-columns: 1fr !important;
  }
}
/* STEINBERG CONTACT MAP FULL WIDTH END */

/* STEINBERG HOME FORM SHARP START */
body .steinberg-contact-map-section{
  width:100vw !important;
  max-width:none !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
}
body .steinberg-contact-map-inner{
  width:min(100%, 1800px) !important;
  max-width:none !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:minmax(0,1.55fr) minmax(360px,.85fr) !important;
  align-items:stretch !important;
  gap:36px !important;
  padding:0 18px 0 18px !important;
}
body .steinberg-contact-panel,
body .steinberg-contact-map-panel{
  min-height:100% !important;
  align-self:stretch !important;
}
body .steinberg-contact-panel{
  display:flex !important;
  align-items:stretch !important;
  padding:26px 24px !important;
}
body .steinberg-contact-form-shell{
  width:100% !important;
  min-height:100% !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
  padding:6px 0 2px 0 !important;
}
body .steinberg-contact-form-intro{
  margin:0 0 20px 0 !important;
}
body .steinberg-contact-form-intro .eyebrow{
  display:block !important;
  margin:0 0 10px 0 !important;
  color:#ffffff !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.16em !important;
  text-transform:uppercase !important;
}
body .steinberg-contact-form-intro h2{
  margin:0 0 10px 0 !important;
  color:#ffffff !important;
  font-size:clamp(26px,2.2vw,42px) !important;
  line-height:1.06 !important;
}
body .steinberg-contact-form-intro p{
  margin:0 0 8px 0 !important;
  color:rgba(255,255,255,.88) !important;
  max-width:760px !important;
}
body .steinberg-contact-form-phone{
  display:inline-block !important;
  margin-top:4px !important;
  color:#ffffff !important;
  font-weight:800 !important;
  text-decoration:none !important;
}
body .steinberg-home-form{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:18px 26px !important;
  margin:0 !important;
}
body .steinberg-home-form .field{
  min-width:0 !important;
}
body .steinberg-home-form .field-full{
  grid-column:1 / -1 !important;
}
body .steinberg-home-form label{
  display:block !important;
  margin:0 0 8px 0 !important;
  color:#ffffff !important;
  font-size:11px !important;
  font-weight:800 !important;
  letter-spacing:.14em !important;
  text-transform:uppercase !important;
}
body .steinberg-home-form input,
body .steinberg-home-form select,
body .steinberg-home-form textarea{
  width:100% !important;
  background:transparent !important;
  color:#ffffff !important;
  border:0 !important;
  border-bottom:1px solid rgba(255,255,255,.92) !important;
  border-radius:0 !important;
  box-shadow:none !important;
  padding:0 0 10px 0 !important;
  font-size:16px !important;
  line-height:1.45 !important;
  outline:none !important;
  appearance:none !important;
  -webkit-appearance:none !important;
}
body .steinberg-home-form input{
  height:38px !important;
}
body .steinberg-home-form select{
  height:38px !important;
  background-image:linear-gradient(45deg, transparent 50%, #ffffff 50%),linear-gradient(135deg, #ffffff 50%, transparent 50%) !important;
  background-position:calc(100% - 14px) calc(50% - 2px),calc(100% - 8px) calc(50% - 2px) !important;
  background-size:6px 6px,6px 6px !important;
  background-repeat:no-repeat !important;
  padding-right:28px !important;
}
body .steinberg-home-form textarea{
  min-height:78px !important;
  resize:vertical !important;
}
body .steinberg-home-form input::placeholder,
body .steinberg-home-form textarea::placeholder{
  color:rgba(255,255,255,.72) !important;
}
body .steinberg-home-form-bottom{
  grid-column:1 / -1 !important;
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:18px 22px !important;
  align-items:end !important;
  margin-top:2px !important;
}
body .steinberg-home-recaptcha{
  min-width:304px !important;
}
body .steinberg-home-submit-wrap{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:16px !important;
  flex-wrap:wrap !important;
}
body .steinberg-home-submit{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:48px !important;
  padding:0 20px !important;
  border:0 !important;
  border-radius:0 !important;
  background:#A71930 !important;
  color:#ffffff !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:.11em !important;
  text-transform:uppercase !important;
  cursor:pointer !important;
  text-decoration:none !important;
  white-space:nowrap !important;
}
body .steinberg-home-form-disclaimer{
  margin:0 !important;
  color:rgba(255,255,255,.82) !important;
  font-size:12px !important;
  line-height:1.45 !important;
  max-width:340px !important;
}
body .steinberg-contact-map-panel{
  display:flex !important;
  flex-direction:column !important;
}
body .steinberg-contact-map-panel iframe{
  width:100% !important;
  flex:1 1 auto !important;
  min-height:100% !important;
}
@media (max-width: 1100px){
  body .steinberg-contact-map-inner{
    grid-template-columns:1fr !important;
  }
  body .steinberg-contact-map-panel iframe{
    min-height:340px !important;
  }
}
@media (max-width: 760px){
  body .steinberg-home-form{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }
  body .steinberg-home-form-bottom{
    grid-template-columns:1fr !important;
  }
  body .steinberg-home-recaptcha{
    min-width:0 !important;
  }
}
/* STEINBERG HOME FORM SHARP END */

/* STEINBERG CASE TYPE ONLY VISIBLE LABEL START */
body #steinberg-home-form label:not([for="case_type"]) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body #steinberg-home-form label[for="case_type"] {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 8px !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}
/* STEINBERG CASE TYPE ONLY VISIBLE LABEL END */

/* STEINBERG CONTACT TRUE 50 50 START */
body .steinberg-contact-map-section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 30px !important;
  box-sizing: border-box !important;
}

body .steinberg-contact-map-inner {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

body .steinberg-contact-panel,
body .steinberg-contact-map-panel {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

body .steinberg-contact-panel {
  display: flex !important;
  padding: 30px !important;
  flex-direction: column !important;
}

body .steinberg-contact-form-shell {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

body .steinberg-home-form {
  width: 100% !important;
  flex: 1 1 auto !important;
}

body .steinberg-contact-map-panel {
  display: flex !important;
  overflow: hidden !important;
  flex-direction: column !important;
}

body .steinberg-contact-map-panel iframe,
body iframe.steinberg-contact-map {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 520px !important;
  flex: 1 1 auto !important;
  border: 0 !important;
}

body .steinberg-contact-map-details {
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 980px) {
  body .steinberg-contact-map-section {
    padding: 20px !important;
  }

  body .steinberg-contact-map-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  body .steinberg-contact-panel {
    padding: 26px 22px !important;
  }

  body .steinberg-contact-map-panel iframe,
  body iframe.steinberg-contact-map {
    min-height: 380px !important;
  }
}

@media (max-width: 600px) {
  body .steinberg-contact-map-section {
    padding: 14px !important;
  }
}
/* STEINBERG CONTACT TRUE 50 50 END */

/* STEINBERG BRANDED FOOTER START */
.steinberg-site-footer-v2 {
  position: relative;
  margin: 0;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #06172d 0%,
      #092749 55%,
      #0d315a 100%
    );
}

.steinberg-footer-accent {
  width: 100%;
  height: 5px;
  background:
    linear-gradient(
      90deg,
      #a71930 0%,
      #a71930 28%,
      #173f73 28%,
      #173f73 100%
    );
}

.steinberg-footer-main {
  display: grid;
  width: min(1500px, calc(100% - 60px));
  margin: 0 auto;
  padding: 54px 0 44px;
  grid-template-columns:
    minmax(260px, 1.35fr)
    minmax(180px, .9fr)
    minmax(180px, .85fr)
    minmax(230px, 1fr);
  gap: 48px;
  align-items: start;
}

.steinberg-footer-brand,
.steinberg-footer-column {
  min-width: 0;
}

.steinberg-footer-logo {
  display: inline-block;
  margin-bottom: 22px;
}

.steinberg-footer-logo img {
  display: block;
  width: auto;
  max-width: 250px;
  max-height: 82px;
  object-fit: contain;
}

.steinberg-footer-wordmark {
  display: inline-block;
  margin-bottom: 22px;
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none !important;
}

.steinberg-footer-wordmark span {
  font-weight: 400;
}

.steinberg-footer-description {
  max-width: 420px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .79);
  font-size: .93rem;
  line-height: 1.7;
}

.steinberg-footer-service-area {
  margin: 0;
  color: #ffffff;
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.steinberg-footer-social {
  display: flex;
  margin-top: 21px;
  gap: 9px;
  flex-wrap: wrap;
}

.steinberg-footer-social a {
  display: inline-flex;
  min-height: 36px;
  padding: 8px 12px;
  align-items: center;
  color: #ffffff !important;
  font-size: .73rem;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, .28);
}

.steinberg-footer-social a:hover,
.steinberg-footer-social a:focus {
  color: #ffffff !important;
  background: #173f73;
  border-color: #ffffff;
}

.steinberg-footer-column h2 {
  margin: 0 0 19px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 2px solid #a71930;
}

.steinberg-footer-column ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.steinberg-footer-column li {
  margin: 0;
  padding: 0;
}

.steinberg-footer-column li a {
  position: relative;
  display: inline-block;
  padding: 2px 0;
  color: rgba(255, 255, 255, .8) !important;
  font-size: .88rem;
  line-height: 1.45;
  text-decoration: none !important;
}

.steinberg-footer-column li a:hover,
.steinberg-footer-column li a:focus {
  color: #ffffff !important;
  transform: translateX(3px);
}

.steinberg-footer-phone {
  display: inline-block;
  margin-bottom: 17px;
  color: #ffffff !important;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none !important;
}

.steinberg-footer-phone:hover,
.steinberg-footer-phone:focus {
  color: #ffffff !important;
  text-decoration: underline !important;
  text-decoration-color: #ffffff !important;
  text-underline-offset: 5px;
}

.steinberg-footer-contact address {
  display: flex;
  margin: 0 0 22px;
  flex-direction: column;
  color: rgba(255, 255, 255, .79);
  font-size: .88rem;
  font-style: normal;
  line-height: 1.6;
}

.steinberg-footer-contact address strong {
  margin-bottom: 3px;
  color: #ffffff;
}

.steinberg-footer-contact-button {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: #a71930;
  border: 1px solid #a71930;
}

.steinberg-footer-contact-button:hover,
.steinberg-footer-contact-button:focus {
  color: #ffffff !important;
  background: #c0203b;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.steinberg-footer-bottom {
  display: grid;
  width: min(1500px, calc(100% - 60px));
  margin: 0 auto;
  padding: 22px 0 25px;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, .9fr);
  gap: 35px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .17);
}

.steinberg-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: .75rem;
  line-height: 1.55;
}

.steinberg-footer-legal-links {
  display: flex;
  margin-top: 8px;
  gap: 17px;
  flex-wrap: wrap;
}

.steinberg-footer-legal-links a {
  color: rgba(255, 255, 255, .72) !important;
  font-size: .73rem;
  text-decoration: none !important;
}

.steinberg-footer-legal-links a:hover,
.steinberg-footer-legal-links a:focus {
  color: #ffffff !important;
}

.steinberg-footer-disclaimer {
  max-width: 590px;
  justify-self: end;
  text-align: right;
}

@media (max-width: 1100px) {
  .steinberg-footer-main {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .steinberg-footer-main,
  .steinberg-footer-bottom {
    width: calc(100% - 36px);
  }

  .steinberg-footer-main {
    padding: 38px 0 34px;
    grid-template-columns: 1fr;
    gap: 33px;
  }

  .steinberg-footer-bottom {
    padding: 20px 0 23px;
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .steinberg-footer-disclaimer {
    justify-self: start;
    text-align: left;
  }
}
/* STEINBERG BRANDED FOOTER END */

/* STEINBERG PRIVACY PAGE START */
.steinberg-policy-main {
  margin: 0;
  background: #f2f5f7;
}

.steinberg-policy-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(
      128deg,
      rgba(5, 24, 47, .99) 0%,
      rgba(8, 43, 79, .97) 61%,
      rgba(18, 59, 104, .92) 78%,
      rgba(18, 59, 104, .18) 100%
    );
}

.steinberg-policy-hero::after {
  position: absolute;
  top: 0;
  right: -10%;
  width: 38%;
  height: 100%;
  content: "";
  background:
    linear-gradient(
      145deg,
      rgba(167, 25, 48, 0) 31%,
      rgba(167, 25, 48, .94) 32%,
      rgba(167, 25, 48, .94) 42%,
      rgba(167, 25, 48, 0) 43%
    );
  pointer-events: none;
}

.steinberg-policy-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100% - 60px));
  margin: 0 auto;
  padding: 88px 0 82px;
}

.steinberg-policy-eyebrow {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.steinberg-policy-hero h1 {
  max-width: 950px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.steinberg-policy-hero-intro {
  max-width: 825px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.steinberg-policy-hero-note {
  display: inline-block;
  margin: 0;
  padding: 9px 13px;
  color: #ffffff;
  font-size: .8rem;
  font-weight: 800;
  background: rgba(255, 255, 255, .09);
  border-left: 4px solid #a71930;
}

.steinberg-policy-content-section {
  padding: 62px 0 76px;
}

.steinberg-policy-layout {
  display: grid;
  width: min(1460px, calc(100% - 60px));
  margin: 0 auto;
  grid-template-columns:
    minmax(240px, .34fr)
    minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.steinberg-policy-sidebar {
  position: sticky;
  top: 86px;
}

.steinberg-policy-sidebar-inner {
  padding: 27px;
  background:
    linear-gradient(
      145deg,
      #071b34 0%,
      #0d315a 100%
    );
  border-left: 5px solid #a71930;
  box-shadow:
    0 20px 46px rgba(7, 27, 52, .15);
}

.steinberg-policy-sidebar-label {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.steinberg-policy-sidebar nav {
  display: grid;
  gap: 4px;
}

.steinberg-policy-sidebar nav a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, .8) !important;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none !important;
  border-bottom:
    1px solid rgba(255, 255, 255, .13);
}

.steinberg-policy-sidebar nav a:hover,
.steinberg-policy-sidebar nav a:focus {
  color: #ffffff !important;
  padding-left: 6px;
}

.steinberg-policy-contact-card {
  margin-top: 25px;
  padding: 18px;
  color: #0b2344;
  background: #ffffff;
}

.steinberg-policy-contact-card strong {
  display: block;
  margin-bottom: 7px;
  color: #0b2344;
  font-size: .91rem;
}

.steinberg-policy-contact-card p {
  margin: 0 0 14px;
  color: #536175;
  font-size: .8rem;
  line-height: 1.55;
}

.steinberg-policy-contact-card a {
  display: inline-flex;
  min-height: 39px;
  padding: 8px 13px;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  background: #a71930;
}

.steinberg-policy-article {
  min-width: 0;
  padding: 8px 48px 45px;
  background: #ffffff;
  box-shadow:
    0 20px 50px rgba(7, 27, 52, .1);
}

.steinberg-policy-block {
  position: relative;
  padding: 46px 0;
  scroll-margin-top: 100px;
  border-bottom: 1px solid #d9e1e7;
}

.steinberg-policy-block:last-child {
  border-bottom: 0;
}

.steinberg-policy-section-number {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.steinberg-policy-block h2 {
  margin: 0 0 20px;
  color: #0b2344;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.steinberg-policy-block p {
  margin: 0 0 17px;
  color: #46566b;
  font-size: .98rem;
  line-height: 1.75;
}

.steinberg-policy-list {
  display: grid;
  margin: 26px 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.steinberg-policy-list li {
  position: relative;
  padding: 15px 17px 15px 43px;
  color: #46566b;
  font-size: .94rem;
  line-height: 1.65;
  background: #f2f5f7;
  border-left: 3px solid #123b68;
}

.steinberg-policy-list li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  content: "✓";
  color: #ffffff;
  font-size: .9rem;
  font-weight: 900;
}

.steinberg-policy-warning {
  margin-top: 29px;
  padding: 23px 25px;
  background:
    linear-gradient(
      135deg,
      #071b34 0%,
      #123b68 100%
    );
  border-left: 5px solid #a71930;
}

.steinberg-policy-warning strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.steinberg-policy-warning p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
  line-height: 1.65;
}

.steinberg-policy-contact-section {
  padding-bottom: 8px;
}

.steinberg-policy-contact-grid {
  display: grid;
  margin-top: 27px;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.steinberg-policy-contact-grid > div {
  padding: 18px;
  background: #f2f5f7;
  border-top: 3px solid #123b68;
}

.steinberg-policy-contact-grid span {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.steinberg-policy-contact-grid a,
.steinberg-policy-contact-grid address {
  color: #0b2344 !important;
  font-size: .91rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none !important;
}

@media (max-width: 980px) {
  .steinberg-policy-layout {
    width: min(800px, calc(100% - 36px));
    grid-template-columns: 1fr;
  }

  .steinberg-policy-sidebar {
    position: static;
  }

  .steinberg-policy-sidebar nav {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 0 18px;
  }
}

@media (max-width: 700px) {
  .steinberg-policy-hero-inner {
    width: calc(100% - 36px);
    padding: 62px 0 58px;
  }

  .steinberg-policy-hero::after {
    display: none;
  }

  .steinberg-policy-content-section {
    padding: 34px 0 45px;
  }

  .steinberg-policy-layout {
    width: calc(100% - 24px);
    gap: 22px;
  }

  .steinberg-policy-sidebar nav {
    grid-template-columns: 1fr;
  }

  .steinberg-policy-article {
    padding: 0 22px 31px;
  }

  .steinberg-policy-block {
    padding: 34px 0;
  }

  .steinberg-policy-contact-grid {
    grid-template-columns: 1fr;
  }
}
/* STEINBERG PRIVACY PAGE END */

/* STEINBERG FOOTER BOTTOM ALIGNMENT START */
body .steinberg-site-footer-v2 .steinberg-footer-bottom {
  display: grid !important;
  width: min(1500px, calc(100% - 60px)) !important;
  margin: 0 auto !important;
  padding: 22px 0 24px !important;
  grid-template-columns:
    minmax(190px, auto)
    minmax(360px, 1fr)
    minmax(260px, auto) !important;
  gap: 34px !important;
  align-items: center !important;
  border-top:
    1px solid rgba(255, 255, 255, .17) !important;
}

body .steinberg-site-footer-v2
.steinberg-footer-legal-links {
  display: flex !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 20px !important;
  align-items: center !important;
  justify-self: start !important;
  flex-wrap: wrap !important;
}

body .steinberg-site-footer-v2
.steinberg-footer-legal-links a {
  color: rgba(255, 255, 255, .82) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body .steinberg-site-footer-v2
.steinberg-footer-legal-links a:hover,
body .steinberg-site-footer-v2
.steinberg-footer-legal-links a:focus {
  color: #ffffff !important;
}

body .steinberg-site-footer-v2
.steinberg-footer-disclaimer {
  width: 100% !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  justify-self: center !important;
  color: rgba(255, 255, 255, .72) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

body .steinberg-site-footer-v2
.steinberg-footer-copyright {
  margin: 0 !important;
  justify-self: end !important;
  color: rgba(255, 255, 255, .78) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

@media (max-width: 1050px) {
  body .steinberg-site-footer-v2
  .steinberg-footer-bottom {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px 28px !important;
  }

  body .steinberg-site-footer-v2
  .steinberg-footer-disclaimer {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    max-width: 720px !important;
  }
}

@media (max-width: 700px) {
  body .steinberg-site-footer-v2
  .steinberg-footer-bottom {
    width: calc(100% - 36px) !important;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    text-align: center !important;
  }

  body .steinberg-site-footer-v2
  .steinberg-footer-legal-links,
  body .steinberg-site-footer-v2
  .steinberg-footer-copyright,
  body .steinberg-site-footer-v2
  .steinberg-footer-disclaimer {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: center !important;
    text-align: center !important;
    white-space: normal !important;
  }

  body .steinberg-site-footer-v2
  .steinberg-footer-legal-links {
    justify-content: center !important;
  }
}
/* STEINBERG FOOTER BOTTOM ALIGNMENT END */

/* STEINBERG WHITE HEADER LOGO START */
body header.site-header
.steinberg-header-logo-image {
  display: block !important;
  width: clamp(230px, 18vw, 285px) !important;
  height: auto !important;
  max-width: none !important;
  max-height: 82px !important;
  object-fit: contain !important;
  object-position: left center !important;
  filter:
    brightness(0)
    saturate(100%)
    invert(100%) !important;
  transition:
    width .24s ease,
    max-height .24s ease,
    transform .24s ease !important;
}

body header.site-header
.steinberg-main-header-row
a:has(.steinberg-header-logo-image),
body header.site-header
.navigation-row
a:has(.steinberg-header-logo-image) {
  display: flex !important;
  width: auto !important;
  max-width: none !important;
  align-items: center !important;
}

html.steinberg-logo-is-scrolled
body header.site-header
.steinberg-header-logo-image {
  width: 185px !important;
  max-height: 46px !important;
}

@media (max-width: 900px) {
  body header.site-header
  .steinberg-header-logo-image {
    width: 215px !important;
    max-height: 68px !important;
  }

  html.steinberg-logo-is-scrolled
  body header.site-header
  .steinberg-header-logo-image {
    width: 165px !important;
    max-height: 43px !important;
  }
}

@media (max-width: 520px) {
  body header.site-header
  .steinberg-header-logo-image {
    width: 185px !important;
    max-height: 58px !important;
  }

  html.steinberg-logo-is-scrolled
  body header.site-header
  .steinberg-header-logo-image {
    width: 148px !important;
    max-height: 40px !important;
  }
}
/* STEINBERG WHITE HEADER LOGO END */

/* STEINBERG SMALLER HOME H1 START */
body .steinberg-home-primary-h1 {
  font-size: clamp(2rem, 3.15vw, 3.55rem) !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
  max-width: 1020px !important;
}

@media (max-width: 700px) {
  body .steinberg-home-primary-h1 {
    font-size: clamp(1.8rem, 8vw, 2.45rem) !important;
    line-height: 1.1 !important;
  }
}
/* STEINBERG SMALLER HOME H1 END */

/* STEINBERG HOME HERO LOWER START */
body .steinberg-home-primary-h1 {
  margin-top: 68px !important;
}

@media (max-width: 700px) {
  body .steinberg-home-primary-h1 {
    margin-top: 40px !important;
  }
}
/* STEINBERG HOME HERO LOWER END */

/* STEINBERG SOCIAL LIGHTBOX START */
body.steinberg-social-modal-opened {
  overflow: hidden !important;
}

.steinberg-social-modal[hidden] {
  display: none !important;
}

.steinberg-social-modal {
  position: fixed !important;
  z-index: 999999 !important;
  inset: 0 !important;
  display: flex !important;
  padding: 24px !important;
  align-items: center !important;
  justify-content: center !important;
}

.steinberg-social-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(3, 15, 30, .86) !important;
  backdrop-filter: blur(5px) !important;
}

.steinberg-social-modal-dialog {
  position: relative !important;
  z-index: 1 !important;
  width: min(540px, 100%) !important;
  padding: 42px !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      145deg,
      #071b34 0%,
      #0d315a 100%
    ) !important;
  border-top: 5px solid #a71930 !important;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .42) !important;
}

.steinberg-social-modal-close {
  position: absolute !important;
  top: 12px !important;
  right: 15px !important;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 29px !important;
  font-weight: 300 !important;
  line-height: 32px !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  cursor: pointer !important;
}

.steinberg-social-modal-kicker {
  display: block !important;
  margin: 0 0 11px !important;
  color: rgba(255,255,255,.7) !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .15em !important;
  text-transform: uppercase !important;
}

.steinberg-social-modal h2 {
  margin: 0 0 14px !important;
  color: #ffffff !important;
  font-size: clamp(1.7rem, 4vw, 2.5rem) !important;
  line-height: 1.08 !important;
}

.steinberg-social-modal p {
  margin: 0 0 24px !important;
  color: rgba(255,255,255,.82) !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.steinberg-social-modal-open {
  display: inline-flex !important;
  min-height: 46px !important;
  padding: 11px 19px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: #a71930 !important;
  border: 1px solid #a71930 !important;
}

.steinberg-social-modal-open:hover,
.steinberg-social-modal-open:focus {
  color: #ffffff !important;
  background: #c0203b !important;
  border-color: #ffffff !important;
}

@media (max-width: 600px) {
  .steinberg-social-modal {
    padding: 14px !important;
  }

  .steinberg-social-modal-dialog {
    padding: 34px 24px 27px !important;
  }
}
/* STEINBERG SOCIAL LIGHTBOX END */

/* STEINBERG ALL FAQ MAP ALIGNMENT START */
body .steinberg-faq-map-equal-layout {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

body .steinberg-faq-map-equal-layout
> .steinberg-faq-map-column {
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 100% !important;
  align-self: stretch !important;
  box-sizing: border-box !important;
}

body .steinberg-faq-equal-column {
  display: flex !important;
  flex-direction: column !important;
}

body .steinberg-map-equal-column {
  display: flex !important;
  overflow: hidden !important;
  flex-direction: column !important;
  align-self: stretch !important;
}

body .steinberg-map-fill-layer {
  display: flex !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-self: stretch !important;
}

body iframe.steinberg-equal-height-map {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  flex: 1 1 auto !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  body .steinberg-faq-map-equal-layout {
    grid-template-columns: 1fr !important;
  }

  body iframe.steinberg-equal-height-map {
    min-height: 390px !important;
  }
}
/* STEINBERG ALL FAQ MAP ALIGNMENT END */

/* STEINBERG BLOG FEATURED 1300X500 START */
body .steinberg-standard-featured-media {
  width: min(1300px, 100%) !important;
  max-width: 1300px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body .steinberg-standard-featured-frame {
  display: block !important;
  width: 100% !important;
  max-width: 1300px !important;
  aspect-ratio: 13 / 5 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow: hidden !important;
  background: #e7edf2 !important;
}

body .steinberg-standard-featured-frame
.steinberg-standard-featured-image {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
}
/* STEINBERG BLOG FEATURED 1300X500 END */

/* STEINBERG WIDER PILLAR SIDEBAR START */
body.steinberg-pillar-page
.steinberg-pillar-grid {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(390px, 440px) !important;
  column-gap: 42px !important;
}

body.steinberg-pillar-page
.steinberg-pillar-content,
body.steinberg-pillar-page
.steinberg-pillar-sidebar {
  min-width: 0 !important;
}

@media (max-width: 1150px) {
  body.steinberg-pillar-page
  .steinberg-pillar-grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(350px, 390px) !important;
    column-gap: 30px !important;
  }
}

@media (max-width: 900px) {
  body.steinberg-pillar-page
  .steinberg-pillar-grid {
    grid-template-columns: 1fr !important;
  }
}
/* STEINBERG WIDER PILLAR SIDEBAR END */

/* STEINBERG RELATED INSIGHTS REPAIR START */
body.steinberg-pillar-page
.steinberg-related-insights-repaired {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

body.steinberg-pillar-page
.steinberg-related-insight-card-repaired {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  grid-template-columns: 1fr !important;
  grid-auto-flow: row !important;
  padding: 15px 14px !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

body.steinberg-pillar-page
.steinberg-related-insight-card-repaired > * {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  grid-column: 1 / -1 !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

body.steinberg-pillar-page
.steinberg-related-insight-card-repaired h3,
body.steinberg-pillar-page
.steinberg-related-insight-card-repaired h4,
body.steinberg-pillar-page
.steinberg-related-insight-card-repaired strong {
  margin: 0 0 9px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

body.steinberg-pillar-page
.steinberg-related-insight-card-repaired span,
body.steinberg-pillar-page
.steinberg-related-insight-card-repaired small {
  white-space: normal !important;
}
/* STEINBERG RELATED INSIGHTS REPAIR END */

/* STEINBERG FIXED SIDEBAR PRACTICE CARDS START */
body.steinberg-pillar-page
.steinberg-sidebar-practice-section-v2 {
  width: 100% !important;
  padding: 24px !important;
  box-sizing: border-box !important;
  background: #f4f7fa !important;
  border-top: 4px solid #123b68 !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-section-v2 > h2 {
  margin: 0 0 12px !important;
  color: #0b284d !important;
  font-size: 27px !important;
  line-height: 1.08 !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-intro-v2 {
  margin: 0 0 19px !important;
  color: #526278 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-grid-v2 {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 13px !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2 {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 180px !important;
  min-height: 180px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #0b284d !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow:
    0 9px 22px rgba(7, 27, 52, .13) !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2 img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  transition:
    transform .28s ease,
    filter .28s ease !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2::before {
  position: absolute !important;
  z-index: 1 !important;
  inset: 0 !important;
  content: "" !important;
  background:
    linear-gradient(
      180deg,
      rgba(7, 27, 52, .04) 0%,
      rgba(7, 27, 52, .22) 45%,
      rgba(7, 27, 52, .92) 100%
    ) !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2::after {
  position: absolute !important;
  z-index: 2 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 4px !important;
  content: "" !important;
  background: #a71930 !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-title-v2 {
  position: absolute !important;
  z-index: 3 !important;
  right: 17px !important;
  bottom: 15px !important;
  left: 17px !important;
  color: #ffffff !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, .32) !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-current-v2 {
  box-shadow:
    inset 0 -4px 0 #a71930,
    0 9px 22px rgba(7, 27, 52, .13) !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2:hover img,
body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2:focus img {
  transform: scale(1.04) !important;
  filter: brightness(1.05) !important;
}

body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2:hover,
body.steinberg-pillar-page
.steinberg-sidebar-practice-card-v2:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 900px) {
  body.steinberg-pillar-page
  .steinberg-sidebar-practice-card-v2 {
    height: 190px !important;
    min-height: 190px !important;
  }
}

@media (max-width: 520px) {
  body.steinberg-pillar-page
  .steinberg-sidebar-practice-section-v2 {
    padding: 20px !important;
  }

  body.steinberg-pillar-page
  .steinberg-sidebar-practice-card-v2 {
    height: 165px !important;
    min-height: 165px !important;
  }

  body.steinberg-pillar-page
  .steinberg-sidebar-practice-title-v2 {
    right: 14px !important;
    bottom: 13px !important;
    left: 14px !important;
    font-size: 17px !important;
  }
}
/* STEINBERG FIXED SIDEBAR PRACTICE CARDS END */

/* STEINBERG PILLAR CTA COMPACT FORM START */
body.steinberg-pillar-page
.steinberg-pillar-cta-form-section {
  padding: 24px 30px !important;
  background:
    linear-gradient(
      135deg,
      #0b2c53 0%,
      #173f70 100%
    ) !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form-inner {
  display: grid !important;
  width: min(1500px, 100%) !important;
  margin: 0 auto !important;
  grid-template-columns:
    minmax(300px, .38fr)
    minmax(0, .62fr) !important;
  gap: 38px !important;
  align-items: center !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form-copy > span {
  display: block !important;
  margin: 0 0 9px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form-copy h2 {
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: clamp(1.75rem, 2.8vw, 2.8rem) !important;
  line-height: 1.04 !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form-copy p {
  max-width: 510px !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, .82) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form {
  display: grid !important;
  min-width: 0 !important;
  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;
  gap: 12px 18px !important;
  align-items: end !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-field {
  min-width: 0 !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-case,
body.steinberg-pillar-page
.steinberg-pillar-cta-message {
  grid-column: span 2 !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form input,
body.steinberg-pillar-page
.steinberg-pillar-cta-form select,
body.steinberg-pillar-page
.steinberg-pillar-cta-form textarea {
  display: block !important;
  width: 100% !important;
  min-height: 35px !important;
  padding: 3px 0 8px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom:
    1px solid rgba(255, 255, 255, .85) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form textarea {
  height: 35px !important;
  min-height: 35px !important;
  max-height: 58px !important;
  resize: vertical !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form input::placeholder,
body.steinberg-pillar-page
.steinberg-pillar-cta-form textarea::placeholder {
  color: rgba(255, 255, 255, .72) !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form select {
  padding-right: 22px !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-form select option {
  color: #0b284d !important;
  background: #ffffff !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-case label {
  display: block !important;
  margin: 0 0 3px !important;
  color: rgba(255, 255, 255, .76) !important;
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-actions {
  display: grid !important;
  grid-column: 1 / -1 !important;
  grid-template-columns:
    304px minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-submit-wrap {
  display: grid !important;
  min-width: 0 !important;
  grid-template-columns:
    auto minmax(160px, 1fr) !important;
  gap: 8px 14px !important;
  align-items: center !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-submit-wrap button {
  min-height: 43px !important;
  padding: 9px 17px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  background: #a71930 !important;
  border: 0 !important;
  border-radius: 0 !important;
  cursor: pointer !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-submit-wrap small {
  color: rgba(255, 255, 255, .65) !important;
  font-size: 9px !important;
  line-height: 1.35 !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-status {
  grid-column: 1 / -1 !important;
  min-height: 13px !important;
  color: #ffffff !important;
  font-size: 10px !important;
  line-height: 1.3 !important;
}

body.steinberg-pillar-page
.steinberg-pillar-cta-honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

@media (max-width: 1100px) {
  body.steinberg-pillar-page
  .steinberg-pillar-cta-form-inner {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 760px) {
  body.steinberg-pillar-page
  .steinberg-pillar-cta-form-section {
    padding: 27px 20px !important;
  }

  body.steinberg-pillar-page
  .steinberg-pillar-cta-form {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }

  body.steinberg-pillar-page
  .steinberg-pillar-cta-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  body.steinberg-pillar-page
  .steinberg-pillar-cta-form {
    grid-template-columns: 1fr !important;
  }

  body.steinberg-pillar-page
  .steinberg-pillar-cta-field,
  body.steinberg-pillar-page
  .steinberg-pillar-cta-case,
  body.steinberg-pillar-page
  .steinberg-pillar-cta-message {
    grid-column: 1 !important;
  }

  body.steinberg-pillar-page
  .steinberg-pillar-cta-submit-wrap {
    grid-template-columns: 1fr !important;
  }
}
/* STEINBERG PILLAR CTA COMPACT FORM END */

/* STEINBERG WHITE BLOG LABELS START */
body .steinberg-white-accent-label {
  color: #ffffff !important;
}

body .steinberg-white-accent-label a {
  color: #ffffff !important;
}
/* STEINBERG WHITE BLOG LABELS END */

/* STEINBERG BLOG BREADCRUMB START */
body .steinberg-blog-breadcrumb {
  display: flex !important;
  width: min(1300px, 100%) !important;
  margin: 0 auto 14px !important;
  padding: 10px 14px !important;
  box-sizing: border-box !important;
  align-items: center !important;
  gap: 9px !important;
  flex-wrap: wrap !important;
  color: #0b284d !important;
  background: #e8f3fb !important;
  border-left: 4px solid #a71930 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

body .steinberg-blog-breadcrumb a {
  display: inline-flex !important;
  align-items: center !important;
  color: #1764a5 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

body .steinberg-blog-breadcrumb a:hover,
body .steinberg-blog-breadcrumb a:focus {
  color: #0b2f59 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

body .steinberg-blog-breadcrumb-home {
  color: #a71930 !important;
}

body .steinberg-blog-breadcrumb-home:hover,
body .steinberg-blog-breadcrumb-home:focus {
  color: #c0203b !important;
}

body .steinberg-blog-breadcrumb-home svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
}

body .steinberg-blog-breadcrumb-separator {
  color: #1764a5 !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

body .steinberg-blog-breadcrumb-current {
  min-width: 0 !important;
  color: #0b284d !important;
  font-weight: 700 !important;
}

@media (max-width: 600px) {
  body .steinberg-blog-breadcrumb {
    padding: 9px 11px !important;
    gap: 7px !important;
    font-size: 12px !important;
  }

  body .steinberg-blog-breadcrumb-current {
    flex-basis: 100% !important;
    padding-left: 35px !important;
  }
}
/* STEINBERG BLOG BREADCRUMB END */

/* STEINBERG FAQ HUB START */
body.steinberg-faq-hub-page {
  background: #eef3f7 !important;
}

.steinberg-faq-hub-main {
  margin: 0 !important;
  background: #eef3f7 !important;
}

.steinberg-faq-hub-hero {
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      128deg,
      #06182f 0%,
      #0b315c 68%,
      #174977 100%
    ) !important;
}

.steinberg-faq-hub-hero::after {
  position: absolute !important;
  top: 0 !important;
  right: -7% !important;
  width: 31% !important;
  height: 100% !important;
  content: "" !important;
  background:
    linear-gradient(
      145deg,
      transparent 34%,
      rgba(167, 25, 48, .92) 35%,
      rgba(167, 25, 48, .92) 44%,
      transparent 45%
    ) !important;
  pointer-events: none !important;
}

.steinberg-faq-hub-hero-inner {
  position: relative !important;
  z-index: 2 !important;
  width: min(1450px, calc(100% - 60px)) !important;
  margin: 0 auto !important;
  padding: 86px 0 72px !important;
}

.steinberg-faq-hub-kicker {
  margin: 0 0 12px !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.steinberg-faq-hub-hero h1 {
  max-width: 950px !important;
  margin: 0 0 17px !important;
  color: #ffffff !important;
  font-size: clamp(2.5rem, 5vw, 4.7rem) !important;
  line-height: 1.01 !important;
  letter-spacing: -.04em !important;
}

.steinberg-faq-hub-intro {
  max-width: 780px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.86) !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.steinberg-faq-topic-nav {
  display: flex !important;
  margin-top: 29px !important;
  gap: 11px !important;
  flex-wrap: wrap !important;
}

.steinberg-faq-topic-nav a {
  display: inline-flex !important;
  min-height: 42px !important;
  padding: 9px 15px !important;
  align-items: center !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  text-decoration: none !important;
  background: rgba(255,255,255,.1) !important;
  border: 1px solid rgba(255,255,255,.34) !important;
}

.steinberg-faq-topic-nav a:hover,
.steinberg-faq-topic-nav a:focus {
  color: #ffffff !important;
  background: #173f70 !important;
  border-color: #ffffff !important;
}

.steinberg-faq-hub-content {
  padding: 55px 0 72px !important;
}

.steinberg-faq-hub-content-inner {
  width: min(1450px, calc(100% - 60px)) !important;
  margin: 0 auto !important;
}

.steinberg-faq-category-section {
  padding: 38px 0 55px !important;
  scroll-margin-top: 85px !important;
  border-bottom: 1px solid #cad6df !important;
}

.steinberg-faq-category-section:first-child {
  padding-top: 0 !important;
}

.steinberg-faq-category-section:last-child {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.steinberg-faq-category-header {
  display: grid !important;
  margin-bottom: 24px !important;
  grid-template-columns: 46px minmax(0, 1fr) !important;
  gap: 17px !important;
  align-items: start !important;
}

.steinberg-faq-category-number {
  display: flex !important;
  width: 46px !important;
  height: 46px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  background: #0b315c !important;
  border-left: 4px solid #a71930 !important;
}

.steinberg-faq-category-header h2 {
  margin: 0 0 7px !important;
  color: #0b284d !important;
  font-size: clamp(1.65rem, 3vw, 2.55rem) !important;
  line-height: 1.08 !important;
}

.steinberg-faq-category-header p {
  max-width: 850px !important;
  margin: 0 !important;
  color: #526278 !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

.steinberg-faq-card-grid {
  display: grid !important;
  grid-template-columns:
    repeat(3, minmax(0, 1fr)) !important;
  gap: 17px !important;
}

.steinberg-faq-index-card {
  min-width: 0 !important;
  margin: 0 !important;
  background: #ffffff !important;
  border-top: 4px solid #174977 !important;
  box-shadow:
    0 12px 28px rgba(7,27,52,.09) !important;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease !important;
}

.steinberg-faq-index-card:hover,
.steinberg-faq-index-card:focus-within {
  transform: translateY(-2px) !important;
  border-color: #a71930 !important;
  box-shadow:
    0 17px 34px rgba(7,27,52,.14) !important;
}

.steinberg-faq-index-card > a {
  display: flex !important;
  min-height: 100% !important;
  padding: 22px !important;
  flex-direction: column !important;
  color: #0b284d !important;
  text-decoration: none !important;
}

.steinberg-faq-index-card h3 {
  margin: 0 0 12px !important;
  color: #0b284d !important;
  font-size: 18px !important;
  line-height: 1.3 !important;
}

.steinberg-faq-index-card p {
  margin: 0 0 17px !important;
  color: #526278 !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
}

.steinberg-faq-card-action {
  display: inline-flex !important;
  margin-top: auto !important;
  color: #174977 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.steinberg-faq-card-action::after {
  margin-left: 7px !important;
  content: "›" !important;
  color: #174977 !important;
  font-size: 17px !important;
  line-height: .8 !important;
}

.steinberg-faq-hub-cta {
  color: #ffffff !important;
  background:
    linear-gradient(
      135deg,
      #071b34 0%,
      #123b68 100%
    ) !important;
  border-top: 5px solid #a71930 !important;
}

.steinberg-faq-hub-cta > div {
  display: grid !important;
  width: min(1450px, calc(100% - 60px)) !important;
  margin: 0 auto !important;
  padding: 39px 0 !important;
  grid-template-columns: minmax(0,1fr) auto !important;
  gap: 30px !important;
  align-items: center !important;
}

.steinberg-faq-hub-cta h2 {
  margin: 0 0 8px !important;
  color: #ffffff !important;
  font-size: clamp(1.6rem, 3vw, 2.5rem) !important;
}

.steinberg-faq-hub-cta p {
  max-width: 770px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.8) !important;
  line-height: 1.6 !important;
}

.steinberg-faq-hub-cta a {
  display: inline-flex !important;
  min-height: 46px !important;
  padding: 10px 19px !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  background: #a71930 !important;
}

.steinberg-faq-breadcrumb {
  display: flex !important;
  width: min(1300px, 100%) !important;
  margin: 0 auto 14px !important;
  padding: 10px 14px !important;
  box-sizing: border-box !important;
  align-items: center !important;
  gap: 9px !important;
  flex-wrap: wrap !important;
  color: #0b284d !important;
  background: #e8f3fb !important;
  border-left: 4px solid #a71930 !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

.steinberg-faq-breadcrumb a {
  display: inline-flex !important;
  align-items: center !important;
  color: #1764a5 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.steinberg-faq-breadcrumb-home {
  color: #a71930 !important;
}

.steinberg-faq-breadcrumb-home svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
}

.steinberg-faq-breadcrumb-separator {
  color: #1764a5 !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.steinberg-faq-breadcrumb-current {
  min-width: 0 !important;
  color: #0b284d !important;
  font-weight: 700 !important;
}

@media (max-width: 1000px) {
  .steinberg-faq-card-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .steinberg-faq-hub-hero-inner,
  .steinberg-faq-hub-content-inner,
  .steinberg-faq-hub-cta > div {
    width: calc(100% - 34px) !important;
  }

  .steinberg-faq-hub-hero-inner {
    padding: 62px 0 54px !important;
  }

  .steinberg-faq-hub-hero::after {
    display: none !important;
  }

  .steinberg-faq-card-grid {
    grid-template-columns: 1fr !important;
  }

  .steinberg-faq-hub-cta > div {
    grid-template-columns: 1fr !important;
  }

  .steinberg-faq-breadcrumb-current {
    flex-basis: 100% !important;
    padding-left: 35px !important;
  }
}
/* STEINBERG FAQ HUB END */


/* STEINBERG FAQ HUB HERO TWEAK */
.steinberg-faq-hub-hero {
  background: linear-gradient(90deg, #031b37 0%, #0a2f5a 58%, #1e4f84 100%) !important;
  background-image: linear-gradient(90deg, #031b37 0%, #0a2f5a 58%, #1e4f84 100%) !important;
  position: relative !important;
  overflow: hidden !important;
}

.steinberg-faq-hub-hero::before,
.steinberg-faq-hub-hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.steinberg-faq-hub-hero [class*="stripe"],
.steinberg-faq-hub-hero [class*="cross"],
.steinberg-faq-hub-hero [class*="slash"],
.steinberg-faq-hub-hero [class*="diagonal"],
.steinberg-faq-hub-hero [class*="accent"] {
  display: none !important;
  background: none !important;
}

.steinberg-faq-hub-hero > .container,
.steinberg-faq-hub-hero > .steinberg-pillar-wrap,
.steinberg-faq-hub-hero > .steinberg-wrap,
.steinberg-faq-hub-hero .container,
.steinberg-faq-hub-hero .steinberg-pillar-wrap,
.steinberg-faq-hub-hero .hero-inner,
.steinberg-faq-hub-hero .hero-content {
  padding-top: 34px !important;
}

.steinberg-faq-hub-hero h1 {
  margin-top: 0 !important;
}

/* STEINBERG ARTICLE H1 SPACING START */
.steinberg-article-h1-spacing-fix {
  margin-top: 46px !important;
}

@media (max-width: 700px) {
  .steinberg-article-h1-spacing-fix {
    margin-top: 30px !important;
  }
}
/* STEINBERG ARTICLE H1 SPACING END */

/* STEINBERG ARTICLE SIDEBAR FORM START */
.steinberg-article-sidebar-contact-card {
  position: relative !important;
  width: 100% !important;
  margin: 0 0 28px !important;
  padding: 30px 27px 28px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      145deg,
      #8f1028 0%,
      #a71930 52%,
      #c0263f 100%
    ) !important;
  border: 0 !important;
  border-top: 5px solid #071d39 !important;
  box-shadow:
    0 18px 38px rgba(6, 24, 48, .22) !important;
}

.steinberg-article-sidebar-contact-card::before {
  position: absolute !important;
  top: -65px !important;
  right: -70px !important;
  width: 180px !important;
  height: 180px !important;
  content: "" !important;
  pointer-events: none !important;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.14) 0%,
      rgba(255,255,255,0) 70%
    ) !important;
}

.steinberg-article-sidebar-form-accent {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 0 10px !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
}

.steinberg-article-sidebar-contact-card h2 {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 0 11px !important;
  color: #ffffff !important;
  font-size: clamp(1.55rem, 2.2vw, 2rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
}

.steinberg-article-sidebar-contact-card > p {
  position: relative !important;
  z-index: 2 !important;
  margin: 0 0 21px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 13px !important;
  line-height: 1.62 !important;
}

.steinberg-article-sidebar-form {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  gap: 14px !important;
}

.steinberg-article-sidebar-form,
.steinberg-article-sidebar-form > div,
.steinberg-article-sidebar-form p,
.steinberg-article-sidebar-form label {
  color: #ffffff !important;
  background: transparent !important;
}

.steinberg-article-sidebar-form label {
  display: block !important;
  margin: 0 0 3px !important;
  color: rgba(255,255,255,.88) !important;
  font-size: 10px !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.steinberg-article-sidebar-form input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.steinberg-article-sidebar-form select,
.steinberg-article-sidebar-form textarea {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 9px 1px 10px !important;
  box-sizing: border-box !important;
  color: #ffffff !important;
  caret-color: #ffffff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom:
    1px solid rgba(255,255,255,.68) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  transition:
    border-color .18s ease,
    box-shadow .18s ease !important;
}

.steinberg-article-sidebar-form textarea {
  min-height: 82px !important;
  resize: vertical !important;
}

.steinberg-article-sidebar-form select {
  padding-right: 25px !important;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #ffffff 50%
    ),
    linear-gradient(
      135deg,
      #ffffff 50%,
      transparent 50%
    ) !important;
  background-position:
    calc(100% - 10px) 50%,
    calc(100% - 5px) 50% !important;
  background-size:
    5px 5px,
    5px 5px !important;
  background-repeat: no-repeat !important;
}

.steinberg-article-sidebar-form select option {
  color: #0b284d !important;
  background: #ffffff !important;
}

.steinberg-article-sidebar-form input::placeholder,
.steinberg-article-sidebar-form textarea::placeholder {
  color: rgba(255,255,255,.72) !important;
  opacity: 1 !important;
}

.steinberg-article-sidebar-form input:focus,
.steinberg-article-sidebar-form select:focus,
.steinberg-article-sidebar-form textarea:focus {
  border-bottom-color: #ffffff !important;
  box-shadow:
    0 1px 0 #ffffff !important;
}

.steinberg-article-sidebar-form input:-webkit-autofill,
.steinberg-article-sidebar-form input:-webkit-autofill:hover,
.steinberg-article-sidebar-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  transition:
    background-color 9999s ease-out !important;
  box-shadow:
    0 0 0 1000px transparent inset !important;
}

.steinberg-article-sidebar-form .g-recaptcha {
  max-width: 100% !important;
  margin: 3px 0 0 !important;
  overflow: hidden !important;
  transform: scale(.88) !important;
  transform-origin: left top !important;
}

.steinberg-article-sidebar-form button[type="submit"],
.steinberg-article-sidebar-form input[type="submit"] {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 48px !important;
  margin: 1px 0 0 !important;
  padding: 11px 17px !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #0b284d !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  letter-spacing: .09em !important;
  text-transform: uppercase !important;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition:
    color .18s ease,
    background .18s ease,
    transform .18s ease !important;
}

.steinberg-article-sidebar-form button[type="submit"]:hover,
.steinberg-article-sidebar-form button[type="submit"]:focus,
.steinberg-article-sidebar-form input[type="submit"]:hover,
.steinberg-article-sidebar-form input[type="submit"]:focus {
  color: #ffffff !important;
  background: #071d39 !important;
  border-color: #071d39 !important;
  transform: translateY(-1px) !important;
}

.steinberg-article-sidebar-form [role="status"],
.steinberg-article-sidebar-form .form-status,
.steinberg-article-sidebar-form .steinberg-form-status {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

@media (max-width: 1100px) {
  .steinberg-article-sidebar-contact-card {
    padding: 27px 22px 25px !important;
  }

  .steinberg-article-sidebar-form .g-recaptcha {
    transform: scale(.8) !important;
  }
}

@media (max-width: 760px) {
  .steinberg-article-sidebar-contact-card {
    margin-bottom: 24px !important;
    padding: 27px 22px !important;
  }

  .steinberg-article-sidebar-form .g-recaptcha {
    transform: scale(.9) !important;
  }
}
/* STEINBERG ARTICLE SIDEBAR FORM END */

/* STEINBERG BLOG BOTTOM CTA START */
.steinberg-blog-bottom-cta {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  background:
    linear-gradient(
      100deg,
      #0b2d55 0%,
      #173f70 100%
    ) !important;
  border: 0 !important;
  border-top: 1px solid rgba(255,255,255,.1) !important;
}

.steinberg-blog-bottom-cta-inner {
  display: grid !important;
  width: min(1860px, calc(100% - 70px)) !important;
  margin: 0 auto !important;
  padding: 30px 0 34px !important;
  grid-template-columns:
    minmax(430px, .78fr)
    minmax(0, 1.55fr) !important;
  gap: 58px !important;
  align-items: center !important;
}

.steinberg-blog-bottom-cta-copy {
  min-width: 0 !important;
  padding-right: 15px !important;
}

.steinberg-blog-bottom-cta-kicker {
  margin: 0 0 13px !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.steinberg-blog-bottom-cta-copy h2 {
  max-width: 690px !important;
  margin: 0 0 15px !important;
  color: #ffffff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(2.25rem, 3.7vw, 4rem) !important;
  font-weight: 500 !important;
  line-height: .96 !important;
  letter-spacing: -.025em !important;
}

.steinberg-blog-bottom-cta-intro {
  max-width: 690px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.84) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
}

.steinberg-blog-bottom-form {
  display: grid !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 17px !important;
  background: transparent !important;
}

.steinberg-blog-bottom-fields-top {
  display: grid !important;
  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.steinberg-blog-bottom-fields-middle {
  display: grid !important;
  grid-template-columns:
    repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.steinberg-blog-bottom-field {
  display: flex !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  background: transparent !important;
}

.steinberg-blog-bottom-field label {
  display: block !important;
  margin: 0 0 6px !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

.steinberg-blog-bottom-control {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 8px 1px 10px !important;
  box-sizing: border-box !important;
  color: #ffffff !important;
  caret-color: #ffffff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom:
    1px solid rgba(255,255,255,.62) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

textarea.steinberg-blog-bottom-control {
  min-height: 42px !important;
  max-height: 85px !important;
  resize: vertical !important;
}

select.steinberg-blog-bottom-control {
  padding-right: 26px !important;
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #ffffff 50%
    ),
    linear-gradient(
      135deg,
      #ffffff 50%,
      transparent 50%
    ) !important;
  background-position:
    calc(100% - 11px) 52%,
    calc(100% - 6px) 52% !important;
  background-size:
    5px 5px,
    5px 5px !important;
  background-repeat: no-repeat !important;
}

select.steinberg-blog-bottom-control option {
  color: #0b284d !important;
  background: #ffffff !important;
}

.steinberg-blog-bottom-control::placeholder {
  color: rgba(255,255,255,.72) !important;
  opacity: 1 !important;
}

.steinberg-blog-bottom-control:focus {
  border-bottom-color: #ffffff !important;
  box-shadow: 0 1px 0 #ffffff !important;
}

.steinberg-blog-bottom-actions {
  display: grid !important;
  grid-template-columns:
    minmax(304px, 386px)
    minmax(235px, 275px)
    minmax(260px, 1fr) !important;
  gap: 26px !important;
  align-items: center !important;
}

.steinberg-blog-bottom-recaptcha {
  min-width: 304px !important;
  min-height: 78px !important;
  overflow: visible !important;
}

.steinberg-blog-bottom-recaptcha .g-recaptcha {
  display: block !important;
  width: 304px !important;
  height: 78px !important;
  margin: 0 !important;
  transform: none !important;
  transform-origin: left top !important;
}

.steinberg-blog-bottom-submit,
.steinberg-blog-bottom-form button[type="submit"],
.steinberg-blog-bottom-form input[type="submit"] {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  padding: 12px 18px !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  background: #bd1535 !important;
  border: 2px solid #bd1535 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.steinberg-blog-bottom-submit:hover,
.steinberg-blog-bottom-submit:focus,
.steinberg-blog-bottom-form button[type="submit"]:hover,
.steinberg-blog-bottom-form button[type="submit"]:focus,
.steinberg-blog-bottom-form input[type="submit"]:hover,
.steinberg-blog-bottom-form input[type="submit"]:focus {
  color: #0b284d !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.steinberg-blog-bottom-disclaimer {
  margin: 0 !important;
  color: rgba(255,255,255,.65) !important;
  font-size: 10px !important;
  line-height: 1.45 !important;
}

.steinberg-blog-bottom-status {
  min-height: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

@media (max-width: 1350px) {
  .steinberg-blog-bottom-cta-inner {
    grid-template-columns:
      minmax(350px, .68fr)
      minmax(0, 1.4fr) !important;
    gap: 38px !important;
  }

  .steinberg-blog-bottom-fields-top {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }

  .steinberg-blog-bottom-actions {
    grid-template-columns:
      304px minmax(220px, 1fr) !important;
  }

  .steinberg-blog-bottom-disclaimer {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 950px) {
  .steinberg-blog-bottom-cta-inner {
    width: min(100% - 40px, 900px) !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .steinberg-blog-bottom-cta-copy {
    padding-right: 0 !important;
  }

  .steinberg-blog-bottom-cta-copy h2 {
    max-width: 760px !important;
  }
}

@media (max-width: 650px) {
  .steinberg-blog-bottom-cta-inner {
    width: calc(100% - 30px) !important;
    padding: 34px 0 !important;
  }

  .steinberg-blog-bottom-fields-top,
  .steinberg-blog-bottom-fields-middle,
  .steinberg-blog-bottom-actions {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .steinberg-blog-bottom-recaptcha {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .steinberg-blog-bottom-recaptcha .g-recaptcha {
    transform: scale(.88) !important;
    transform-origin: left top !important;
  }

  .steinberg-blog-bottom-submit {
    max-width: 304px !important;
  }

  .steinberg-blog-bottom-disclaimer {
    grid-column: auto !important;
  }
}
/* STEINBERG BLOG BOTTOM CTA END */


/* STEINBERG FOOTER LOGO BLUE LINES */
:root{
  --steinberg-logo-blue:#1e6fb7;
}

.site-footer .footer-heading,
.site-footer .footer-title,
.site-footer .widget-title,
.site-footer .footer-col-title,
.site-footer .footer-column-title,
.site-footer h4,
.site-footer h5 {
  border-color: var(--steinberg-logo-blue) !important;
}

.site-footer .footer-heading::after,
.site-footer .footer-title::after,
.site-footer .widget-title::after,
.site-footer .footer-col-title::after,
.site-footer .footer-column-title::after,
.site-footer h4::after,
.site-footer h5::after {
  background: var(--steinberg-logo-blue) !important;
  border-color: var(--steinberg-logo-blue) !important;
}

.site-footer .footer-heading::before,
.site-footer .footer-title::before,
.site-footer .widget-title::before,
.site-footer .footer-col-title::before,
.site-footer .footer-column-title::before,
.site-footer h4::before,
.site-footer h5::before {
  background: var(--steinberg-logo-blue) !important;
  border-color: var(--steinberg-logo-blue) !important;
}

/* STEINBERG BLOG TEXT LINKS START */
html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]),
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href] {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #1764a5 !important;
  -webkit-text-fill-color: #1764a5 !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  transform: none !important;

  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  cursor: pointer !important;

  text-decoration-line: underline !important;
  text-decoration-color: #a71930 !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
  text-decoration-skip-ink: auto !important;
}

html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]) *,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href] * {
  color: #1764a5 !important;
  -webkit-text-fill-color: #1764a5 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-decoration-color: #a71930 !important;
}

html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"])::before,
html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"])::after,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]::before,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]::after {
  content: none !important;
  display: none !important;
}

html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]):visited,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]:visited {
  color: #1764a5 !important;
  -webkit-text-fill-color: #1764a5 !important;
  background: transparent !important;
  text-decoration-color: #a71930 !important;
}

html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]):hover,
html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]):focus,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]:hover,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]:focus {
  color: #a71930 !important;
  -webkit-text-fill-color: #a71930 !important;

  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;

  border: 0 !important;
  box-shadow: none !important;
  transform: none !important;

  text-decoration-line: underline !important;
  text-decoration-color: #1764a5 !important;
}

html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]):hover *,
html body.steinberg-article-page
article.steinberg-article-content
:is(p, li, blockquote, td)
a[href]:not([href^="#"]):not([href^="mailto:"]):not([href^="tel:"]):not([role="button"]):not([class*="button"]):not([class*="btn"]):not([class*="cta"]):focus *,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]:hover *,
html body.steinberg-article-page
article.steinberg-article-content
a.steinberg-blog-internal-link[href]:focus * {
  color: #a71930 !important;
  -webkit-text-fill-color: #a71930 !important;
  background: transparent !important;
  background-color: transparent !important;
  text-decoration-color: #1764a5 !important;
}
/* STEINBERG BLOG TEXT LINKS END */

/* STEINBERG CORRECT FAQ HEIGHT START */

/*
The FAQ and map are inside the main article.
They must size independently instead of sharing equal height.
*/
.steinberg-faq-map-grid.steinberg-faq-map-equal-layout {
  align-items: start !important;
  align-content: start !important;
  grid-auto-rows: max-content !important;
  height: auto !important;
  min-height: 0 !important;
}

/* Disable the equal-column height behavior */
.steinberg-faq-map-grid
.steinberg-faq-equal-column {
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* FAQ column uses only the height required by its content */
.steinberg-faq-map-grid
.steinberg-faq-column:not(.steinberg-faq-map-column) {
  display: block !important;
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-bottom: 20px !important;
}

/* Remove the large space before the accordion */
.steinberg-faq-map-grid
.steinberg-faq-column:not(.steinberg-faq-map-column)
.steinberg-faq-list {
  position: static !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;

  display: block !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;

  margin-top: 12px !important;
  padding-top: 0 !important;
}

/* Each question remains natural height */
.steinberg-faq-list
details.steinberg-faq-item {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Keep the map fixed and independent */
.steinberg-faq-map-grid
.steinberg-faq-map-column {
  align-self: start !important;
  height: 520px !important;
  min-height: 520px !important;
  max-height: 520px !important;
  overflow: hidden !important;
}

.steinberg-faq-map-grid
.steinberg-faq-map-column iframe {
  display: block !important;
  width: 100% !important;
  height: 520px !important;
  min-height: 520px !important;
  max-height: 520px !important;
}

/* The outer Practice Area sidebar never inherits article height */
.steinberg-pillar-grid {
  align-items: start !important;
  align-content: start !important;
}

.steinberg-pillar-sidebar {
  align-self: start !important;
  height: max-content !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* Opening an answer expands only the FAQ content */
.steinberg-faq-list
details.steinberg-faq-item[open] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}

@media (max-width: 800px) {
  .steinberg-faq-map-grid
  .steinberg-faq-map-column,
  .steinberg-faq-map-grid
  .steinberg-faq-map-column iframe {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
  }
}

/* STEINBERG CORRECT FAQ HEIGHT END */

/* STEINBERG SHORT IMAGE PRACTICE CARDS START */

/* Compact sidebar section */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-section-v2 {
  display: grid !important;
  gap: 8px !important;

  height: auto !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Heading */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-section-v2 > h2,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-section-v2 > h3,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-section-v2 > h4 {
  margin: 0 0 3px !important;
  padding: 0 !important;

  color: #102d50 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

/* Introductory description */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-section-v2 > p {
  display: block !important;
  margin: 0 0 9px !important;
  padding: 0 !important;

  color: #53657a !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

/* Short image card */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 {
  position: relative !important;
  isolation: isolate !important;

  display: flex !important;
  align-items: flex-end !important;

  width: 100% !important;
  height: 80px !important;
  min-height: 80px !important;
  max-height: 80px !important;

  margin: 0 !important;
  padding: 0 !important;

  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;

  border: 1px solid #d6dde5 !important;
  border-left: 3px solid #b31831 !important;
  border-radius: 6px !important;

  box-shadow: 0 2px 7px rgba(15, 43, 75, 0.12) !important;
  overflow: hidden !important;
  transform: none !important;
}

/* Dark overlay keeps text readable */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2::before {
  content: "" !important;

  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;

  display: block !important;

  background:
    linear-gradient(
      90deg,
      rgba(8, 28, 51, 0.88) 0%,
      rgba(8, 28, 51, 0.68) 58%,
      rgba(8, 28, 51, 0.32) 100%
    ) !important;

  pointer-events: none !important;
}

/* Image elements remain visible and fill the short box */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 picture {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  display: block !important;

  width: 100% !important;
  height: 100% !important;
}

.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;

  display: block !important;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;
}

/* Card link fills the complete box */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 > a,
.steinberg-pillar-sidebar
a.steinberg-sidebar-practice-card-v2 {
  position: relative !important;
  z-index: 3 !important;

  display: flex !important;
  align-items: flex-end !important;

  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;

  margin: 0 !important;
  padding: 12px 38px 12px 14px !important;

  color: #ffffff !important;
  background: transparent !important;

  border: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

/* Hide descriptions but preserve the title */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 p {
  display: none !important;
}

/* Visible title text */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 h2,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 h3,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 h4,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 strong,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 span,
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2 [class*="title"] {
  position: relative !important;
  z-index: 3 !important;

  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #ffffff !important;

  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75) !important;
}

/* Small arrow */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2::after {
  content: "›" !important;

  position: absolute !important;
  top: 50% !important;
  right: 13px !important;
  z-index: 4 !important;

  display: block !important;

  color: #ffffff !important;
  background: transparent !important;

  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1 !important;

  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75) !important;
  transform: translateY(-52%) !important;
  pointer-events: none !important;
}

/* Subtle interaction */
.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2:hover {
  border-color: #b31831 !important;
  box-shadow: 0 4px 12px rgba(15, 43, 75, 0.2) !important;
  transform: translateY(-1px) !important;
}

.steinberg-pillar-sidebar
.steinberg-sidebar-practice-card-v2:hover::before {
  background:
    linear-gradient(
      90deg,
      rgba(125, 17, 38, 0.9) 0%,
      rgba(55, 25, 43, 0.68) 62%,
      rgba(8, 28, 51, 0.3) 100%
    ) !important;
}

/* Sidebar remains independent from FAQ expansion */
.steinberg-pillar-sidebar {
  align-self: start !important;
  height: max-content !important;
  min-height: 0 !important;
  max-height: none !important;
}

/* STEINBERG SHORT IMAGE PRACTICE CARDS END */

/* STEINBERG SIDEBAR PRACTICE CARD TUNE START */
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card,
.steinberg-pillar-sidebar .steinberg-practice-card {
  height: 100px !important;
  min-height: 100px !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 > a,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card > a,
.steinberg-pillar-sidebar .steinberg-practice-card > a,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-link {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: 100% !important;
  min-height: 100px !important;
  padding: 0 18px 0 56px !important;
  text-decoration: none !important;
  overflow: hidden !important;
}

.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 img,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card img,
.steinberg-pillar-sidebar .steinberg-practice-card img,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 1 !important;
}

.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2::before,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card::before,
.steinberg-pillar-sidebar .steinberg-practice-card::before,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-link::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(90deg,
      rgba(12, 50, 104, 0.92) 0%,
      rgba(12, 50, 104, 0.78) 32%,
      rgba(12, 50, 104, 0.38) 62%,
      rgba(12, 50, 104, 0.00) 100%) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2::after,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card::after,
.steinberg-pillar-sidebar .steinberg-practice-card::after,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-link::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 6px !important;
  background: #b11f35 !important;
  z-index: 3 !important;
}

.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-title,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card .steinberg-sidebar-practice-title,
.steinberg-pillar-sidebar .steinberg-practice-card .steinberg-sidebar-practice-title,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-link .steinberg-sidebar-practice-title,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 .practice-title,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card .practice-title,
.steinberg-pillar-sidebar .steinberg-practice-card .practice-title,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 h3,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card h3,
.steinberg-pillar-sidebar .steinberg-practice-card h3,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 span,
.steinberg-pillar-sidebar .steinberg-sidebar-practice-card span,
.steinberg-pillar-sidebar .steinberg-practice-card span {
  position: relative !important;
  z-index: 4 !important;
  display: flex !important;
  align-items: center !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.28) !important;
  top: auto !important;
  bottom: auto !important;
}

@media (max-width: 900px) {
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card,
  .steinberg-pillar-sidebar .steinberg-practice-card {
    height: 96px !important;
    min-height: 96px !important;
  }

  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 > a,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card > a,
  .steinberg-pillar-sidebar .steinberg-practice-card > a,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-link {
    min-height: 96px !important;
    padding: 0 16px 0 52px !important;
  }

  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-title,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card .steinberg-sidebar-practice-title,
  .steinberg-pillar-sidebar .steinberg-practice-card .steinberg-sidebar-practice-title,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-link .steinberg-sidebar-practice-title,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 .practice-title,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card .practice-title,
  .steinberg-pillar-sidebar .steinberg-practice-card .practice-title,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 h3,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card h3,
  .steinberg-pillar-sidebar .steinberg-practice-card h3,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card-v2 span,
  .steinberg-pillar-sidebar .steinberg-sidebar-practice-card span,
  .steinberg-pillar-sidebar .steinberg-practice-card span {
    font-size: .98rem !important;
  }
}
/* STEINBERG SIDEBAR PRACTICE CARD TUNE END */

/* STEINBERG SIDEBAR PRACTICE GRADIENT FIX START */
.steinberg-sidebar-practice-card-v2,
.steinberg-sidebar-practice-card-v2 a,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-link {
  position: relative !important;
  overflow: hidden !important;
}

.steinberg-sidebar-practice-card-v2 img,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-image,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-thumb {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}

.steinberg-sidebar-practice-card-v2::after,
.steinberg-sidebar-practice-card-v2 a::after,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-link::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    90deg,
    rgba(11, 35, 68, 0.88) 0%,
    rgba(11, 35, 68, 0.72) 22%,
    rgba(11, 35, 68, 0.42) 48%,
    rgba(11, 35, 68, 0.12) 72%,
    rgba(11, 35, 68, 0.00) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.steinberg-sidebar-practice-card-v2 > *,
.steinberg-sidebar-practice-card-v2 a > *,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-link > * {
  position: relative !important;
  z-index: 2 !important;
}

.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-title,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-name,
.steinberg-sidebar-practice-card-v2 .steinberg-sidebar-practice-text,
.steinberg-sidebar-practice-card-v2 h3,
.steinberg-sidebar-practice-card-v2 h4,
.steinberg-sidebar-practice-card-v2 span {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.28) !important;
}
/* STEINBERG SIDEBAR PRACTICE GRADIENT FIX END */
