/* Shared Mishra X Trial Lawyers navigation shell and back-to-top control. */
:root {
  --mcx-shell-black: #111111;
  --mcx-shell-red: #ef332f;
  --mcx-shell-gold: #dda12e;
  --mcx-shell-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  --mcx-shell-wide: 1180px;
  --mcx-shell-reader: 900px;
  --mcx-shell-article-reader: 960px;
}

/* One canonical masthead used on every page. */
.mcx-global-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  color: #111;
  background: #fff;
  box-shadow: var(--mcx-shell-shadow);
  font-family: Arial, Helvetica, sans-serif !important;
  line-height: 1.25;
}

.mcx-global-header *,
.mcx-global-header *::before,
.mcx-global-header *::after {
  box-sizing: border-box;
}

.mcx-global-header__top {
  min-height: 80px;
  padding: 8px clamp(22px, 3.25vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
}

.mcx-global-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(25px, 2.15vw, 34px) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-decoration: none !important;
  white-space: nowrap;
}

.mcx-global-header__logo-text {
  display: block;
}

.mcx-global-header__contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: wrap;
}

.mcx-global-header__contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 17px;
  border-radius: 5px;
  color: #111 !important;
  background: #e3e3e3;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.mcx-global-header__contact a:hover,
.mcx-global-header__contact a:focus-visible {
  background: #d4d4d4;
  outline: 3px solid rgba(239, 51, 47, 0.35);
  outline-offset: 2px;
}

.mcx-global-header__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.mcx-global-header__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.mcx-global-nav {
  min-height: 68px;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 52px);
  overflow-x: auto;
  background: var(--mcx-shell-black);
  scrollbar-width: thin;
  scrollbar-color: #555 var(--mcx-shell-black);
}

.mcx-global-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 0;
  color: #fff !important;
  font: 400 clamp(15px, 1.45vw, 20px)/1 Arial, Helvetica, sans-serif;
  text-decoration: none !important;
  white-space: nowrap;
}

.mcx-global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: transparent;
}

.mcx-global-nav a:hover::after,
.mcx-global-nav a:focus-visible::after,
.mcx-global-nav a.is-active::after {
  background: var(--mcx-shell-red);
}

.mcx-global-nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 5px;
}

/* Canonical recognition panel used across the site. */
.mcx-recognition-section {
  box-sizing: border-box;
  width: 100%;
  padding: 62px 24px 68px;
  color: #17263c;
  background: #f7f7f7;
  font-family: Arial, Helvetica, sans-serif !important;
}

.mcx-recognition-section *,
.mcx-recognition-section *::before,
.mcx-recognition-section *::after {
  box-sizing: border-box;
}

.mcx-recognition-inner {
  width: 100%;
  max-width: var(--mcx-shell-wide);
  margin: 0 auto;
  text-align: center;
}

/*
 * Blog articles use the same outer canvas as the shared site panels while
 * retaining a narrower, centered reading column for comfortable line length.
 */
.mcx-blog-article-page main {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: calc(var(--mcx-shell-wide) + 48px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-top: 32px !important;
  padding-right: 24px !important;
  padding-bottom: 28px !important;
  padding-left: 24px !important;
}

.mcx-blog-article-page main > article {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: var(--mcx-shell-wide) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 40px 48px 32px !important;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(23, 38, 60, 0.08) !important;
}

.mcx-blog-article-page main > article > * {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--mcx-shell-article-reader);
  margin-right: auto;
  margin-left: auto;
}

.mcx-blog-article-page .mcx-recognition-section {
  padding-top: 42px;
}

.mcx-recognition-inner h2 {
  margin: 0 0 12px;
  color: #17263c;
  font: 700 36px/1.2 Georgia, "Times New Roman", serif !important;
}

.mcx-recognition-inner > p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #657083;
  font: 400 17px/1.55 Arial, Helvetica, sans-serif !important;
  text-wrap: balance;
}

.mcx-recognition-badges {
  display: grid;
  grid-template-columns: 1.6fr 0.75fr 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
  min-height: 210px;
  padding: 38px 46px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(23, 38, 60, 0.08);
}

.mcx-recognition-badges img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

/* One canonical footer used on every page. */
.mcx-global-footer {
  box-sizing: border-box;
  width: 100%;
  margin: 0 !important;
  padding: 66px 54px 0;
  color: #f2f2f2;
  background: #111;
  font-family: Arial, Helvetica, sans-serif !important;
}

.mcx-global-footer *,
.mcx-global-footer *::before,
.mcx-global-footer *::after {
  box-sizing: border-box;
}

.mcx-global-footer__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}

.mcx-global-footer__block h2 {
  margin: 0 0 22px;
  color: #dfa129;
  font: 400 36px/1.2 Georgia, "Times New Roman", serif !important;
  letter-spacing: .02em;
}

.mcx-global-footer__block:first-child h2 {
  color: #f3f3f3;
}

.mcx-global-footer__block p {
  margin: 0;
  color: #f2f2f2;
  font: 400 23px/1.55 Arial, Helvetica, sans-serif !important;
}

.mcx-global-footer__description {
  max-width: 1550px;
  text-align: left;
}

.mcx-global-footer__links {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  width: max-content;
  max-width: 100%;
}

.mcx-global-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 26px;
  border-right: 1px solid #777;
  color: #f2f2f2 !important;
  font: 400 23px/1.25 Arial, Helvetica, sans-serif !important;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: nowrap;
}

.mcx-global-footer__links a:first-child {
  padding-left: 0;
}

.mcx-global-footer__links a:last-child {
  border-right: 0;
}

.mcx-global-footer__links a:hover,
.mcx-global-footer__links a:focus-visible,
.mcx-global-footer__contact a:hover,
.mcx-global-footer__contact a:focus-visible {
  color: #dfa129 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.mcx-global-footer__contact {
  display: grid;
  align-content: start;
  gap: 30px;
}

.mcx-global-footer__contact-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 35px;
  margin: 0 !important;
  padding: 0 !important;
}

.mcx-global-footer__contact-row span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: #dfa129;
}

.mcx-global-footer__contact-row svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.mcx-global-footer__contact-row a,
.mcx-global-footer__contact-row address {
  display: flex;
  align-items: center;
  min-height: 35px;
  margin: 0 !important;
  padding: 0 !important;
  color: #f2f2f2 !important;
  font: 400 23px/1.5 Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  text-decoration: none !important;
}

.mcx-global-footer__contact-row address {
  white-space: nowrap;
}

.mcx-global-footer__bottom {
  margin: 64px -54px 0;
  padding: 24px 54px;
  color: #555;
  background: #090909;
  font: 400 17px/1.4 Arial, Helvetica, sans-serif !important;
  text-align: left;
}

.mcx-back-to-top,
#ast-scroll-top {
  position: fixed !important;
  right: max(18px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  z-index: 10020 !important;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  background: var(--mcx-shell-black) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28) !important;
  font: 700 25px/1 Arial, Helvetica, sans-serif !important;
  text-decoration: none !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease,
    background-color 180ms ease;
}

.mcx-back-to-top svg {
  display: block;
  width: 24px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcx-back-to-top.is-visible,
#ast-scroll-top.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.mcx-back-to-top:hover,
.mcx-back-to-top:focus-visible,
#ast-scroll-top:hover,
#ast-scroll-top:focus-visible {
  background: var(--mcx-shell-red) !important;
  outline: 3px solid rgba(239, 51, 47, 0.3);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .mcx-global-header__top {
    min-height: 72px;
    padding: 9px 18px;
  }

  .mcx-global-header__logo {
    flex-basis: auto;
    min-width: 0;
    font-size: clamp(20px, 3.2vw, 27px) !important;
  }

  .mcx-global-header__contact {
    gap: 8px;
  }

  .mcx-global-header__contact a {
    min-height: 40px;
    padding: 8px 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
  }

  .mcx-global-nav {
    min-height: 58px;
    justify-content: flex-start;
    gap: 28px;
    padding: 0 20px;
  }

  .mcx-global-nav a::after {
    bottom: 11px;
  }

  .mcx-recognition-badges {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }

  .mcx-recognition-badges img {
    width: auto;
    max-width: 100%;
  }

  .mcx-global-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mcx-global-footer {
    padding: 48px 24px 0;
  }

  .mcx-global-footer__block h2 {
    font-size: 30px !important;
  }

  .mcx-global-footer__block p,
  .mcx-global-footer__links a,
  .mcx-global-footer__contact-row a,
  .mcx-global-footer__contact-row address {
    font-size: 18px !important;
  }

  .mcx-global-footer__links {
    flex-wrap: wrap !important;
    align-items: stretch;
    width: 100%;
  }

  .mcx-global-footer__links a {
    min-height: 42px;
    padding: 0 16px;
  }

  .mcx-global-footer__links a:first-child {
    padding-left: 0;
  }

  .mcx-global-footer__bottom {
    margin: 46px -24px 0;
    padding: 20px 24px;
    font-size: 14px !important;
  }

  .mcx-global-footer__contact-row address {
    white-space: normal;
  }
}

@media (max-width: 1240px) and (min-width: 861px) {
  .mcx-global-header__top {
    padding-right: 24px;
    padding-left: 24px;
    gap: 18px;
  }

  .mcx-global-header__logo {
    flex-basis: auto;
  }

  .mcx-global-header__contact {
    gap: 10px;
    flex-wrap: nowrap;
  }

  .mcx-global-header__contact a {
    min-height: 44px;
    padding: 9px 14px;
    font-size: 16px;
  }

  .mcx-global-footer__links a {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 18px !important;
  }

  .mcx-global-footer__links a:first-child {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .mcx-blog-article-page main {
    max-width: calc(var(--mcx-shell-wide) + 32px) !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .mcx-blog-article-page main > article {
    padding: 28px 22px 24px !important;
    border-radius: 12px;
  }

  .mcx-blog-article-page main > article > * {
    max-width: 100%;
  }

  .mcx-blog-article-page .mcx-recognition-section {
    padding-top: 36px;
  }

  .mcx-global-header__top {
    gap: 10px;
  }

  .mcx-global-header__logo {
    flex: 1 1 auto;
    font-size: clamp(16px, 4.15vw, 21px) !important;
  }

  .mcx-global-header__contact {
    flex-wrap: nowrap;
  }

  .mcx-global-header__contact a {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    font-size: 0;
  }

  .mcx-global-header__contact .mcx-global-header__icon {
    font-size: 20px;
  }

  .mcx-back-to-top,
  #ast-scroll-top {
    width: 46px !important;
    height: 46px !important;
    font-size: 22px !important;
  }

  .mcx-recognition-section {
    padding: 46px 16px 52px;
  }

  .mcx-recognition-inner h2 {
    font-size: 30px !important;
  }

  .mcx-recognition-inner > p {
    font-size: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mcx-back-to-top,
  #ast-scroll-top {
    transition: none;
  }
}

/* One shared consultation panel for every public page. */
.mcx-contact-panel {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 72px 24px 24px;
  background: #eef0f3;
  color: #162438;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.mcx-contact-panel *,
.mcx-contact-panel *::before,
.mcx-contact-panel *::after {
  box-sizing: border-box;
}

.mcx-contact-panel__inner {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 28px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.mcx-contact-panel__details,
.mcx-contact-panel__form-card {
  min-width: 0;
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(22, 36, 56, .12);
}

.mcx-contact-panel__details {
  display: flex;
  flex-direction: column;
  padding: 46px;
  background: linear-gradient(145deg, #101010, #172031);
  color: #fff;
}

.mcx-contact-panel__details h2,
.mcx-contact-panel__form-card h2 {
  margin: 0 0 12px !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.mcx-contact-panel__details h2 {
  color: #d99b36 !important;
  font-family: Georgia, "Times New Roman", serif !important;
}

.mcx-contact-panel__details > p {
  margin: 0 0 30px;
  color: #d7dbe2;
  font-size: 18px;
}

.mcx-contact-panel__list {
  display: grid;
  gap: 22px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.mcx-contact-panel__list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0;
  padding: 0;
}

.mcx-contact-panel__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #d99b36;
}

.mcx-contact-panel__icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcx-contact-panel__list strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mcx-contact-panel__list a,
.mcx-contact-panel__list address {
  color: #fff !important;
  font-size: 18px;
  font-style: normal;
  text-decoration: none;
}

.mcx-contact-panel__list a:hover,
.mcx-contact-panel__list a:focus {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mcx-contact-panel__hours {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.mcx-contact-panel__hours h3 {
  margin: 0 0 12px;
  color: #d99b36;
  font-size: 18px;
}

.mcx-contact-panel__hours p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 6px 0;
  color: #f2f2f2;
}

.mcx-contact-panel__form-card {
  padding: 46px;
  background: #fff;
}

.mcx-contact-panel__form-card h2 {
  color: #162438 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.mcx-contact-panel__intro {
  margin: 0 0 28px;
  color: #687791;
  font-size: 18px;
}

.mcx-contact-panel__field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mcx-contact-panel__field {
  margin-bottom: 20px;
}

.mcx-contact-panel__field label {
  display: block;
  margin-bottom: 7px;
  color: #30343a;
  font-weight: 700;
}

.mcx-contact-panel__field input,
.mcx-contact-panel__field select,
.mcx-contact-panel__field textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #d3d6db;
  border-radius: 7px;
  background: #fff;
  color: #222;
  font: inherit;
  padding: 13px 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
}

.mcx-contact-panel__field input,
.mcx-contact-panel__field select {
  min-height: 52px;
}

.mcx-contact-panel__field textarea {
  min-height: 138px;
  resize: vertical;
}

.mcx-contact-panel__field input:focus,
.mcx-contact-panel__field select:focus,
.mcx-contact-panel__field textarea:focus {
  border-color: #d99b36;
  outline: 3px solid rgba(217, 155, 54, .2);
}

.mcx-contact-panel__consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin: 4px 0 24px;
  color: #373737;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.mcx-contact-panel__consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
}

.mcx-contact-panel__status {
  display: none;
  margin: 0 0 16px;
  padding: 11px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.mcx-contact-panel__status.is-error {
  display: block;
  border: 1px solid #f1b9b5;
  background: #fff0ef;
  color: #9e241f;
}

.mcx-contact-panel__status.is-success {
  display: block;
  border: 1px solid #b9d9bd;
  background: #eff8f0;
  color: #256430;
}

.mcx-contact-panel__submit {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #101010;
  color: #fff;
  cursor: pointer;
  font: 700 18px/1 Arial, Helvetica, sans-serif;
  padding: 18px 24px;
  transition: background .18s ease, transform .18s ease;
}

.mcx-contact-panel__submit:hover,
.mcx-contact-panel__submit:focus {
  background: #2d2d2d;
  transform: translateY(-1px);
}

.mcx-contact-panel__submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.mcx-contact-panel__deadline,
.mcx-contact-panel__noscript {
  margin: 18px 0 0;
  color: #68707b;
  font-size: 13px;
}

.mcx-contact-panel__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 820px) {
  .mcx-contact-panel {
    padding: 48px 18px 18px;
  }

  .mcx-contact-panel__inner {
    grid-template-columns: 1fr;
  }

  .mcx-contact-panel__details,
  .mcx-contact-panel__form-card {
    padding: 34px 26px;
  }

  .mcx-contact-panel__field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .mcx-contact-panel {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mcx-contact-panel__details,
  .mcx-contact-panel__form-card {
    padding: 28px 20px;
  }

  .mcx-contact-panel__hours p {
    display: block;
  }

  .mcx-contact-panel__hours p span {
    display: block;
  }
}

/*
 * Unified hero language
 * Contact Us is the visual reference: bold Georgia display type, centered
 * supporting copy, a navy-to-plum field, and a restrained gold/red rule.
 */
.home .elementor-49 .elementor-element.elementor-element-b33e9ac {
  position: relative !important;
}

.home .elementor-49 .elementor-element.elementor-element-a83eb52 {
  position: relative !important;
  padding: 84px 24px 90px !important;
  background: linear-gradient(125deg, rgba(16, 16, 23, .94) 0%, rgba(22, 19, 38, .92) 70%, rgba(35, 21, 49, .92) 100%) !important;
  color: #fff !important;
  text-align: center !important;
}

.home .elementor-49 .elementor-element.elementor-element-a83eb52::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d99b36, #ef3934, transparent);
}

.home .elementor-49 .elementor-element.elementor-element-afc7a16 h1 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(40px, 4.4vw, 58px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  text-align: center !important;
}

.home .elementor-49 .elementor-element.elementor-element-4f1df67 {
  max-width: 830px !important;
  margin: 0 auto !important;
  color: #e8e8ee !important;
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-hero {
  background: linear-gradient(125deg, #101017 0%, #161326 70%, #231531 100%) !important;
}

.mcx-service-refresh .mcx-service-hero-copy {
  position: relative !important;
  align-items: center !important;
  padding: 84px 42px 90px !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d99b36, #ef3934, transparent);
}

.mcx-service-refresh .mcx-service-eyebrow {
  margin: 0 0 18px !important;
  color: #d99b36 !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-hero-copy h1 {
  margin: 0 0 18px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(40px, 4.4vw, 58px) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -.025em !important;
  text-align: center !important;
}

.mcx-service-refresh .mcx-service-lede {
  max-width: 830px !important;
  margin: 0 auto !important;
  color: #e8e8ee !important;
  font-size: clamp(18px, 2vw, 23px) !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

/* Canonical display size for every non-article page hero. */
body .contact-hero h1,
body .mcx-blog-hero h1,
body .mcx-notices .mcx-notices-hero h1,
body .elementor-381 .elementor-element.elementor-element-fe572a8 h1,
body .elementor-593 .elementor-element.elementor-element-2988c10 h1,
body.home .elementor-49 .elementor-element.elementor-element-afc7a16 h1,
body .mcx-service-refresh .mcx-service-hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 58px) !important;
}

@media (max-width: 850px) {
  .home .elementor-49 .elementor-element.elementor-element-a83eb52,
  .mcx-service-refresh .mcx-service-hero-copy {
    padding: 64px 20px 68px !important;
  }
}
