@font-face {
  font-family: MyimHeebo;
  src: url("/redesign/assets/heebo.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: MyimHeebo;
  src: url("/redesign/assets/heebo-semibold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600 900;
}
body[data-myim-redesign] {
  --ink: #213e4b;
  --muted: #58707b;
  --orange: #b83e1c;
  --aqua: #bce5e8;
  --line: #dbe5e7;
  font-family: MyimHeebo, Arial, sans-serif !important;
  color: var(--ink);
  background: #fff;
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
  direction: rtl;
}
body[data-myim-redesign] * {
  box-sizing: border-box;
}
body[data-myim-redesign] [hidden] {
  display: none !important;
}
body[data-myim-redesign] :is(h1, h2, h3, p, ul, ol) {
  margin-top: 0;
}
body[data-myim-redesign] :is(h1, h2, h3) {
  font-family: inherit !important;
  line-height: 1.3;
  font-weight: 700;
  color: inherit;
}
:where(body[data-myim-redesign]) h2 {
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.7px;
}
:where(body[data-myim-redesign]) h3 {
  font-size: 22px;
  letter-spacing: -0.3px;
}
body[data-myim-redesign] a {
  color: inherit;
  text-decoration: none;
}
body[data-myim-redesign] button,
body[data-myim-redesign] input {
  font: inherit;
}
body[data-myim-redesign] img {
  max-width: 100%;
  height: auto;
}
body[data-myim-redesign] :is(a, button, input, summary):focus-visible {
  outline: 3px solid #1f7799;
  outline-offset: 5px;
}
body[data-myim-redesign] svg {
  flex: none;
}
.my-wrap {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}
.my-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: var(--orange);
  color: #fff !important;
  padding: 12px 20px;
  min-height: 48px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1.5;
  transition: background 0.15s;
}
.my-button:hover {
  background: #b83e1c;
}
.my-button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.my-button span {
  font-size: 21px;
}
.my-skip {
  position: fixed;
  top: -80px;
  right: 20px;
  z-index: 100000;
  background: #fff;
  padding: 12px 24px;
}
.my-skip:focus {
  top: 12px;
}
.my-header {
  position: relative;
  z-index: 50;
  background: #213e4b;
  color: white;
}
.my-brand-row {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 87px;
  padding-block: 10px;
}
.my-brand-row > a {
  flex: none;
  line-height: 0;
}
.my-brand-row > p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}
.my-brand-row > p > span {
  display: block;
  color: #bbd2da;
  font-size: 13px;
  font-weight: 400;
  margin-top: 3px;
}
.my-header-actions {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.my-header-actions > .my-button {
  background: #bce5e8;
  color: #183c49 !important;
}
.my-header-actions > .my-button:hover {
  background: #d4f2f3;
}
.my-nav-shell {
  background: white;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.my-mobile-toggle {
  display: none;
}
.my-nav {
  display: flex;
  align-items: stretch;
  gap: 36px;
  min-height: 49px;
}
.my-nav > a {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.my-nav > a > span {
  display: none;
}
.my-menu > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 15px;
  min-height: 49px;
}
.my-menu > summary::-webkit-details-marker {
  display: none;
}
.my-menu[open] > summary {
  color: var(--orange);
}
.my-menu-panel {
  position: absolute;
  top: 100%;
  inset-inline: 0;
  width: min(1120px, calc(100% - 64px));
  margin: auto;
  padding: 22px 26px 26px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  box-shadow: 0 16px 35px #213e4b20;
  border-radius: 0 0 10px 10px;
}
.my-menu-panel > .my-menu-all {
  display: flex;
  justify-content: space-between;
  padding: 0 0 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.my-menu-panel > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 22px;
}
.my-menu-panel > div > a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 8px;
  border-radius: 4px;
}
.my-menu-panel a:hover {
  background: #eff8f8;
}
.my-menu-panel a > span {
  color: var(--orange);
}
.my-hero {
  background: #f1f7f7;
  overflow: hidden;
}
.my-hero-grid {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 42px;
  align-items: center;
  padding-block: 40px 38px;
}
.my-hero-copy > h1 {
  font-size: 13px !important;
  letter-spacing: 0;
  line-height: 1.6 !important;
  margin: 0 0 12px;
  color: var(--muted);
}
.my-hero-copy > h2 {
  font-size: clamp(34px, 4.4vw, 57px);
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
}
.my-hero-copy > h2 > span {
  color: var(--orange);
}
.my-intro {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.9;
}
.my-finder {
  scroll-margin-top: 20px;
  background: white;
  border: 1px solid #d6e4e6;
  border-top: 3px solid var(--orange);
  box-shadow: 0 8px 24px #21455207;
  border-radius: 10px;
  padding: 20px 22px 12px;
}
.my-finder label {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}
.my-search-row {
  display: flex;
  gap: 9px;
}
.my-search-row > input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #c3d3d7;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  height: 51px;
}
.my-search-row > button {
  white-space: nowrap;
  font-size: 15px;
  padding: 11px 16px;
}
.my-finder #my-search-status {
  font-size: 12px;
  color: #657981;
  margin: 10px 0 8px;
  min-height: 20px;
}
.my-partner {
  border-top: 1px solid #e8eff0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 9px;
  font-size: 11px;
  color: var(--muted);
}
.my-partner img {
  width: 142px;
  height: 43px;
  object-fit: contain;
}
.my-benefits {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 18px 0 0;
  color: #496572;
  font-size: 12px;
}
.my-benefits > li:before {
  content: "✓";
  margin-inline-end: 6px;
  color: #37868c;
  font-size: 15px;
}
.my-hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 450px;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.my-hero-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  object-position: center bottom;
  z-index: 1;
}
.my-hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #e2f3f2, #b8ddde);
  inset: 65px 10px 0;
  border-radius: 48% 48% 24px 24px;
  pointer-events: none;
}
.my-visual-tag {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 24px;
  background: #fffefaeb;
  color: var(--ink);
  padding: 13px 19px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.my-visual-tag strong {
  font-size: 16px;
}
.my-visual-bottom {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  inset-inline: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.my-visual-bottom > svg {
  width: 41px;
  height: 41px;
  color: var(--aqua);
}
.my-visual-bottom > div > span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #e4f0f4;
  margin-top: 2px;
}
.my-ribbon {
  border-block: 1px solid var(--line);
  background: #fff;
}
.my-ribbon > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}
.my-ribbon span:first-child {
  font-weight: 600;
  color: var(--ink);
}
.my-ribbon span:not(:first-child):before {
  content: "✦";
  font-size: 12px;
  color: #77bdc5;
  margin-inline-end: 18px;
}
.my-services,
.my-knowledge {
  padding-block: 60px;
}
.my-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.my-section-head h2 {
  margin-bottom: 0;
}
.my-section-head > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 3px;
  max-width: 290px;
}
.my-eyebrow {
  display: block;
  font-size: 13px;
  color: #5e8490;
  margin-bottom: 8px;
}
.my-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.my-service-card {
  background: #f1f7f7;
  border: 1px solid #dce9eb;
  border-radius: 10px;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.my-service-card:nth-child(2) {
  background: #fff3e9;
  border-color: #f3dfcf;
}
.my-service-card:nth-child(3) {
  background: #234651;
  color: #fff !important;
  border-color: #234651;
}
.my-service-card:nth-child(4) {
  background: #e7f2f4;
}
.my-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px #23465110;
}
.my-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.my-card-top > svg {
  width: 38px;
  height: 38px;
}
.my-card-top > span {
  font-size: 12px;
  opacity: 0.6;
}
.my-service-card h3 {
  margin-bottom: 10px;
  font-size: 23px;
}
.my-service-card > p {
  font-size: 14px;
  line-height: 1.9;
  opacity: 0.8;
  margin-bottom: 23px;
}
.my-card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #97b0b945;
  padding-top: 14px;
  margin-top: auto;
  font-size: 13px;
}
.my-card-link b {
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
}
.my-service-card:nth-child(3) .my-card-link b {
  color: #bce5e8;
}
.my-all-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 24px;
}
.my-all-services > details {
  border-bottom: 1px solid var(--line);
}
.my-all-services summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 0;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
}
.my-all-services summary > span {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.my-all-services summary b {
  font-size: 20px;
  margin-inline-start: 10px;
}
.my-all-services details > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: 20px;
}
.my-all-services details > div > a {
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  background: #f4f8f8;
  padding: 8px;
  border-radius: 4px;
}
.my-all-services details > div > a:hover {
  text-decoration: underline;
}
.my-how {
  background: #f9f7f2;
  border-block: 1px solid #eeeae0;
  padding-block: 44px;
}
.my-how-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 75px;
  align-items: center;
}
.my-how h2 {
  margin-bottom: 17px;
}
.my-text-link {
  font-size: 14px;
  color: #ac401e !important;
  text-decoration: underline !important;
  text-underline-offset: 5px;
}
.my-how ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.my-how li {
  display: flex;
  gap: 23px;
  padding: 17px 0;
  border-bottom: 1px solid #e4e2da;
}
.my-how li:last-child {
  border-bottom: none;
}
.my-how li > span {
  font-size: 21px;
  color: var(--orange);
  line-height: 1.5;
}
.my-how h3 {
  font-size: 20px;
  margin-bottom: 5px;
}
.my-how p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.my-regions {
  background: var(--ink);
  color: white;
  padding-block: 48px;
}
.my-regions .my-eyebrow {
  color: #a1d4dc;
}
.my-regions .my-section-head > p {
  color: #bfd1d8;
}
.my-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.my-region-grid > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #617884;
  border-radius: 7px;
  padding: 17px;
  font-size: 15px;
  background: #294b59;
}
.my-region-grid > a:last-child {
  grid-column: span 2;
}
.my-region-grid > a > span {
  color: var(--aqua);
  font-size: 20px;
}
.my-region-grid > a:hover {
  background: #3b6575;
}
.my-reading {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 40px;
}
.my-reading > aside {
  background: #edf5f5;
  border: 1px solid #dce8e8;
  border-radius: 9px;
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 20px;
}
.my-reading > aside > strong {
  font-size: 17px;
  display: block;
  margin-bottom: 12px;
}
.my-reading > aside nav > a {
  display: block;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #d7e4e6;
  color: #4b6771;
}
.my-reading > aside nav > a:hover {
  color: var(--orange);
}
.my-reading > aside > .my-button {
  font-size: 13px;
  margin-top: 20px;
  padding: 9px 11px;
  width: 100%;
}
.my-content {
  min-width: 0;
}
.my-source-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 22px;
}
.my-source-intro p {
  margin-bottom: 12px;
}
.my-topic {
  border: 1px solid #dbe6e8;
  border-radius: 8px;
  margin-bottom: 12px;
  scroll-margin-top: 20px;
  overflow: hidden;
}
.my-topic > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 18px 22px;
  cursor: pointer;
  background: #f8faf9;
}
.my-topic > summary h2 {
  font-size: 20px !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}
.my-topic > summary > span {
  font-size: 26px;
  font-weight: 400;
  color: #59828d;
  line-height: 1;
}
.my-topic[open] > summary {
  background: #eaf4f4;
}
.my-topic[open] > summary > span {
  transform: rotate(45deg);
}
.my-prose {
  padding: 23px;
  font-size: 16px;
  line-height: 1.95;
  overflow-wrap: anywhere;
}
.my-prose :is(p, span, li) {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}
.my-prose h3 {
  font-size: 21px !important;
  margin: 20px 0 10px;
}
.my-prose ul,
.my-prose ol {
  padding-inline-start: 24px;
}
.my-prose a {
  text-decoration: underline !important;
  color: #225e76 !important;
}
.my-prose table {
  display: block;
  overflow: auto;
  max-width: 100%;
}
.my-prose img {
  height: auto !important;
}
.my-recommended {
  padding-bottom: 35px;
}
.my-recommended > h2 {
  font-size: 30px !important;
  margin-bottom: 23px;
}
.my-peer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.my-peer-links > p,
.my-peer-links > div {
  display: contents;
}
.my-peer-links a {
  display: inline-block;
  background: #f5f8f8;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 13px;
  margin: 0;
}
.my-peer-links a:hover {
  border-color: #90bfc6;
}
.my-related {
  padding-bottom: 50px;
}
.my-related > h2 {
  font-size: 21px !important;
  margin-bottom: 18px;
}
.my-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.my-related a {
  font-size: 14px;
  color: #4a6d7a !important;
}
.my-related a > span {
  margin-inline-start: 14px;
}
.my-closing {
  background: #dff0f0;
  padding-block: 36px;
}
.my-closing > .my-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.my-closing span {
  font-size: 13px;
}
.my-closing h2 {
  margin: 6px 0 0;
  font-size: 32px !important;
}
.my-footer {
  background: #193541;
  color: #d3e4e9;
  padding-top: 28px;
}
.my-footer-brand {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid #3c5661;
  padding-bottom: 23px;
}
.my-footer-brand p {
  font-size: 14px;
  margin: 0;
}
.my-footer-brand > a {
  margin-inline-start: auto;
  font-size: 14px;
  color: var(--aqua) !important;
}
.my-footer-columns {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 32px;
  padding-block: 32px;
}
.my-footer-column :is(p, li, span) {
  font: inherit !important;
  color: inherit !important;
}
.my-footer-column {
  font-size: 13px;
  line-height: 1.9;
}
.my-footer-column .elementor-heading-title {
  font-size: 17px !important;
  color: #fff !important;
  margin: 0 0 15px;
}
.my-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.my-footer-column li {
  margin-bottom: 7px;
}
.my-footer-column .elementor-icon-list-icon {
  display: none;
}
.my-footer-column .elementor-widget {
  margin-bottom: 20px;
}
.my-footer-column a:hover {
  text-decoration: underline;
  color: #fff;
}
.my-footer-column .elementor-widget-container {
  width: auto !important;
}
.my-footer-column .elementor-widget-text-editor p {
  margin-bottom: 12px;
}
.my-footer-fineprint {
  border-top: 1px solid #3c5661;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}
.my-footer-fineprint a > span {
  display: none;
}
.my-results {
  padding-block: 35px;
  scroll-margin-top: 15px;
}
.my-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.my-pro-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 23px;
  background: white;
}
.my-pro-card > img {
  width: 64px;
  height: 64px !important;
  object-fit: cover;
  border-radius: 50%;
}
.my-pro-card h3 {
  font-size: 20px;
  margin: 0 0 4px;
}
.my-pro-card p {
  font-size: 13px;
  margin-bottom: 3px;
  color: var(--muted);
}
.my-pro-card .my-rating {
  color: #876111;
}
.my-pro-card .my-description {
  grid-column: 1/-1;
  font-size: 13px;
}
.my-pro-card > a {
  grid-column: 1/-1;
  background: var(--ink);
  color: white !important;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
}
.my-more {
  margin: 22px auto 0;
  display: flex;
}
.my-results h2 {
  font-size: 28px !important;
}
/* Keep the existing consent provider; only compact its visual footprint. */
body[data-myim-redesign] #sgcc-notice {
  font-family: MyimHeebo, Arial, sans-serif !important;
  max-width: 760px;
  font-size: 12px !important;
}
body[data-myim-redesign] #sgcc-accept-button {
  min-height: 36px;
}
body[data-myim-redesign] .sgcc-notice-content {
  font-size: 12px !important;
}
@media (min-width: 1500px) {
  .my-hero-grid {
    padding-block: 42px;
  }
  .my-hero-visual {
    min-height: 460px;
  }
}
@media (max-width: 1000px) {
  .my-wrap {
    width: calc(100% - 40px);
  }
  .my-brand-row {
    gap: 20px;
  }
  .my-brand-row > p {
    display: none;
  }
  .my-hero-grid {
    gap: 25px;
    grid-template-columns: 1.2fr 1fr;
  }
  .my-hero-copy > h2 {
    font-size: 40px;
  }
  .my-finder {
    padding: 17px;
  }
  .my-hero-visual {
    min-height: 420px;
  }
  .my-visual-tag {
    font-size: 12px;
    padding: 11px;
    right: 14px;
  }
  .my-visual-tag strong {
    font-size: 14px;
  }
  .my-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .my-reading {
    grid-template-columns: 195px minmax(0, 1fr);
    gap: 24px;
  }
  .my-reading > aside {
    padding: 18px;
  }
  .my-how-grid {
    gap: 35px;
  }
  .my-footer-columns {
    gap: 20px;
  }
  .my-nav {
    gap: 24px;
  }
  .my-menu-panel > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .my-wrap {
    width: calc(100% - 32px);
  }
  .my-brand-row {
    min-height: 76px;
    gap: 12px;
  }
  .my-brand-row > a img {
    width: 143px;
    height: auto;
  }
  .my-header-actions {
    gap: 0;
  }
  .my-header-actions > a:not(.my-button) {
    display: none;
  }
  .my-header-actions > .my-button {
    font-size: 12px;
    gap: 6px;
    padding: 8px 11px;
    min-height: 42px;
  }
  .my-header-actions > .my-button > span {
    display: none;
  }
  .my-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    font-size: 14px;
    list-style: none;
    cursor: pointer;
  }
  .my-nav {
    flex-direction: column;
    gap: 0;
    padding-bottom: 12px;
  }
  .my-nav > a {
    padding: 11px 0;
  }
  .my-menu > summary {
    border-top: 1px solid var(--line);
    justify-content: space-between;
  }
  .my-menu-panel {
    position: static;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 10px 0 18px;
  }
  .my-menu-panel > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 8px;
  }
  .my-menu-panel > div > a {
    font-size: 12px;
    padding: 8px 5px;
  }
  .my-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 25px 24px;
    gap: 23px;
  }
  .my-hero-copy > h1 {
    font-size: 11px !important;
    margin-bottom: 11px;
  }
  .my-hero-copy > h2 {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 1.23;
    margin-bottom: 14px;
  }
  .my-intro {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .my-finder {
    padding: 18px 16px 10px;
  }
  .my-finder label {
    font-size: 16px;
  }
  .my-search-row {
    gap: 7px;
  }
  .my-search-row > input {
    font-size: 14px;
    height: 48px;
    padding: 10px;
  }
  .my-search-row > button {
    padding: 10px 12px;
    gap: 8px;
    font-size: 13px;
    min-height: 48px;
  }
  .my-benefits {
    font-size: 11px;
    gap: 13px;
    margin-top: 14px;
  }
  .my-hero-visual {
    min-height: 245px;
    max-height: 245px;
    border-radius: 55px 9px 9px 9px;
  }
  .my-hero-visual > img {
    object-position: center 37%;
  }
  .my-visual-tag {
    right: 16px;
    top: 17px;
    background: #fffffff0;
    font-size: 12px;
  }
  .my-visual-bottom {
    font-size: 17px;
    bottom: 18px;
    inset-inline: 20px;
  }
  .my-ribbon > div {
    min-height: 53px;
    gap: 11px;
    flex-wrap: wrap;
    padding-block: 12px;
    font-size: 12px;
  }
  .my-ribbon span:first-child {
    width: 100%;
    display: none;
  }
  .my-ribbon span:not(:first-child):before {
    margin-inline-end: 8px;
    font-size: 9px;
  }
  .my-services,
  .my-knowledge {
    padding-block: 38px;
  }
  .my-section-head {
    display: block;
    margin-bottom: 22px;
  }
  .my-section-head > p {
    margin-top: 10px;
    max-width: none;
    font-size: 13px;
  }
  .my-eyebrow {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .my-service-grid {
    gap: 11px;
  }
  .my-service-card {
    padding: 17px 15px;
  }
  .my-card-top {
    margin-bottom: 17px;
  }
  .my-card-top > svg {
    width: 31px;
    height: 31px;
  }
  .my-service-card h3 {
    font-size: 21px;
  }
  .my-service-card > p {
    font-size: 13px;
    margin-bottom: 17px;
  }
  .my-card-link {
    font-size: 11px;
    padding-top: 10px;
  }
  .my-all-services {
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
  .my-all-services summary {
    padding: 14px 0;
  }
  .my-how {
    padding-block: 32px;
  }
  .my-how-grid {
    grid-template-columns: 1fr;
    gap: 21px;
  }
  .my-how h2 br {
    display: none;
  }
  .my-how h2 {
    font-size: 28px;
  }
  .my-how li {
    padding: 15px 0;
  }
  .my-how h3 {
    font-size: 19px;
  }
  .my-regions {
    padding-block: 34px;
  }
  .my-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .my-region-grid > a {
    font-size: 13px;
    padding: 13px;
  }
  .my-reading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .my-reading > aside {
    position: static;
    padding: 17px;
  }
  .my-reading > aside nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
  }
  .my-reading > aside nav > a {
    font-size: 12px;
    padding: 4px 0;
  }
  .my-reading > aside > .my-button {
    display: none;
  }
  .my-source-intro {
    font-size: 14px;
  }
  .my-topic > summary {
    padding: 15px 17px;
  }
  .my-topic > summary h2 {
    font-size: 18px !important;
  }
  .my-prose {
    padding: 18px;
    font-size: 15px;
  }
  .my-prose h3 {
    font-size: 19px !important;
  }
  .my-recommended > h2 {
    font-size: 27px !important;
  }
  .my-peer-links a {
    font-size: 12px;
    padding: 8px 11px;
  }
  .my-related {
    padding-bottom: 34px;
  }
  .my-related a {
    font-size: 12px;
  }
  .my-closing > .my-wrap {
    display: block;
  }
  .my-closing h2 {
    font-size: 27px !important;
  }
  .my-closing .my-button {
    margin-top: 20px;
  }
  .my-footer-brand {
    flex-wrap: wrap;
    gap: 13px;
  }
  .my-footer-brand > img {
    width: 145px;
  }
  .my-footer-brand > p {
    font-size: 12px;
  }
  .my-footer-brand > a {
    width: 100%;
    margin: 0;
    font-size: 13px;
  }
  .my-footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding-block: 25px;
  }
  .my-footer-about {
    grid-column: 1/-1;
  }
  .my-footer-fineprint {
    display: block;
    font-size: 10px;
  }
  .my-footer-fineprint > a {
    display: block;
    margin-top: 10px;
  }
  .my-result-grid {
    grid-template-columns: 1fr;
  }
  .my-pro-card {
    padding: 18px;
  }
  .my-results .my-section-head > a {
    font-size: 13px;
  }
}
@media (max-width: 370px) {
  .my-hero-copy > h2 {
    font-size: 34px;
  }
  .my-header-actions > .my-button {
    max-width: 132px;
  }
  .my-search-row {
    flex-direction: column;
  }
  .my-search-row > button {
    width: 100%;
  }
  .my-service-grid {
    grid-template-columns: 1fr;
  }
  .my-benefits {
    gap: 9px;
    font-size: 10px;
  }
  .my-footer-brand > p {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  body[data-myim-redesign] * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
.my-original-image {
  float: left;
  width: 140px;
  margin: 0 20px 12px 0;
}
.my-original-image img {
  display: block;
  width: 100%;
  height: auto !important;
  border-radius: 8px;
}
.my-source-intro:after {
  content: "";
  display: block;
  clear: both;
}
body[data-myim-redesign] .sgcc-main-wrapper {
  max-width: 780px !important;
  width: calc(100% - 30px) !important;
  left: 15px !important;
  right: 15px !important;
  margin-inline: auto !important;
  bottom: 10px !important;
  transform: none !important;
  padding: 0 !important;
}
body[data-myim-redesign] .sgcc-container {
  padding: 0 !important;
  width: 100% !important;
}
body[data-myim-redesign] .sgcc-notice-content {
  gap: 12px !important;
  padding: 10px 14px !important;
  background: #fff !important;
  border: 1px solid #d6e1e4;
  border-radius: 8px !important;
  box-shadow: 0 3px 20px #213e4b20;
}
body[data-myim-redesign] .sgcc-notice-content .cookie-icon {
  display: none !important;
}
body[data-myim-redesign] .sgcc-notice-content .message-block {
  padding: 0 !important;
  font-size: 11px !important;
  line-height: 1.6 !important;
}
body[data-myim-redesign] .sgcc-notice-content p {
  margin: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}
body[data-myim-redesign] .sgcc-notice-content strong {
  font-weight: 400 !important;
}
body[data-myim-redesign] #sgcc-accept-button {
  font: inherit !important;
  border-radius: 5px !important;
  padding: 6px 13px !important;
  background: #213e4b !important;
  color: white !important;
  border: 0 !important;
  min-height: 36px !important;
}
body[data-myim-redesign] .cookie-compliance-button-block {
  padding: 0 !important;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .my-original-image {
    width: 105px;
    margin-right: 12px;
  }
  body[data-myim-redesign] .sgcc-main-wrapper {
    width: calc(100% - 16px) !important;
    bottom: 8px !important;
  }
  body[data-myim-redesign] .sgcc-notice-content {
    padding: 9px 10px !important;
    gap: 8px !important;
  }
  body[data-myim-redesign] .sgcc-notice-content .message-block {
    font-size: 10px !important;
  }
}
.my-footer-column :is(.elementor-widget-container, p, div) {
  text-align: right !important;
}
.my-footer-column .elementor-widget-heading {
  margin-bottom: 14px;
}
.my-footer-column .elementor-widget-text-editor p {
  margin-bottom: 8px;
  line-height: 1.75 !important;
}
@media (min-width: 761px) {
  .my-hero-copy > h2 {
    font-size: clamp(38px, 4.1vw, 52px);
    line-height: 1.16;
  }
  .my-hero-grid {
    padding-block: 30px;
  }
  .my-intro {
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .my-partner img {
    height: 36px;
  }
  .my-finder {
    padding-top: 17px;
  }
  .my-benefits {
    margin-top: 14px;
  }
}
@media (max-width: 760px) {
  body[data-myim-redesign] .sgcc-main-wrapper {
    left: 8px !important;
    right: 8px !important;
  }
}
body[data-myim-redesign] .sgcc-notice-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
body[data-myim-redesign] .sgcc-notice-content .message-block {
  flex: 1 !important;
  width: auto !important;
}
body[data-myim-redesign] .cookie-compliance-button-block {
  flex: none !important;
  width: auto !important;
}
@media (max-width: 760px) {
  .my-hero-copy > h2 {
    font-size: clamp(29px, 8.4vw, 38px);
  }
  .my-intro {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* Portrait hero and consistent menu indicators. */
.my-menu > summary {
  gap: 12px;
}
.my-chevron {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}
.my-menu[open] > summary .my-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.my-hero {
  background: linear-gradient(115deg, #eaf5f4, #f7faf8 65%);
}
.my-hero-visual {
  isolation: isolate;
}
.my-hero-visual:after {
  z-index: 0;
}
.my-visual-tag {
  right: 0;
  top: 50px;
  box-shadow: 0 8px 30px #213e4b0a;
  border: 1px solid #ffffff;
}
.my-visual-bottom {
  background: #213e4bef;
  border: 1px solid #ffffff30;
  border-radius: 14px;
  padding: 14px 19px;
  inset-inline: 34px;
  bottom: 18px;
  box-shadow: 0 12px 28px #213e4b15;
}
.my-finder {
  box-shadow: 0 14px 40px #213e4b08;
  border-radius: 16px;
}
@media (max-width: 760px) {
  .my-hero-visual {
    min-height: 360px;
    max-height: 360px;
    border-radius: 0;
  }
  .my-hero-visual > img {
    object-position: center bottom;
  }
  .my-hero-visual:after {
    inset: 50px 0 0;
  }
  .my-visual-tag {
    top: 30px;
    right: 0;
    font-size: 11px;
    padding: 10px;
  }
  .my-visual-tag strong {
    font-size: 13px;
  }
  .my-visual-bottom {
    inset-inline: 12px;
    bottom: 12px;
    padding: 11px 16px;
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .my-chevron {
    transition: none;
  }
}
@media (max-width: 760px) {
  .my-visual-tag {
    display: none;
  }
}

/* Representative solar-boiler service template. */
.my-service-hero {
  background: linear-gradient(120deg, #e6f3f2, #f7faf8 75%);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 42px;
}
.my-breadcrumbs {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 30px;
}
.my-breadcrumbs a:hover {
  color: var(--orange);
}
.my-service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 65px;
}
.my-service-hero h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.2;
  margin: 10px 0 20px;
  letter-spacing: -1px;
}
.my-service-lead {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 620px;
}
.my-service-lead span {
  background: transparent !important;
}
.my-service-lead strong {
  font-weight: 400;
}
.my-service-lead p {
  margin: 0;
}
.my-service-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
  padding-block: 50px 64px;
  align-items: start;
}
.my-service-sidebar {
  position: sticky;
  top: 25px;
  max-height: calc(100dvh - 50px);
  overflow-y: auto;
}
.my-service-toc {
  background: #f2f7f6;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.my-service-toc h2 {
  font-size: 23px;
  margin: 6px 0 17px;
}
.my-service-toc nav {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
}
.my-service-toc nav a {
  padding: 11px 0;
  border-bottom: 1px solid #213e4b12;
  font-size: 14px;
  line-height: 1.5;
}
.my-service-toc nav a:hover {
  color: var(--orange);
}
.my-service-toc nav .my-toc-sub {
  padding-inline-start: 14px;
  color: var(--muted);
}
.my-service-toc .my-button {
  font-size: 13px;
  padding: 13px;
}
.my-service-article {
  min-width: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.95;
}
.my-service-article h2 {
  font-size: 30px;
  margin: 38px 0 16px;
}
.my-service-article h3 {
  font-size: 24px;
  margin: 28px 0 14px;
}
.my-service-article h4 {
  font-size: 19px;
  margin: 25px 0 10px;
}
.my-service-article picture {
  display: block;
}
.my-service-article picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.my-service-link-chip {
  display: inline-block;
  margin: 0 0 10px 8px;
  padding: 8px 13px;
  background: #eef5f4;
  border-radius: 8px;
  font-size: 14px;
}
.my-service-link-chip span {
  text-decoration: none !important;
}
.my-section-anchor {
  display: block;
  scroll-margin-top: 24px;
}
.my-service-gallery > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.my-service-gallery figure {
  margin: 0;
}
.my-service-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.my-service-gallery figcaption {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  padding-top: 8px;
}
.my-service-extra {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #f4f7f5;
  border-radius: 14px;
  margin-top: 32px;
}
.my-service-extra picture {
  flex: 0 0 90px;
}
.my-service-extra p {
  margin: 0;
}
@media (max-width: 1000px) {
  .my-service-hero-grid {
    gap: 30px;
  }
  .my-service-layout {
    gap: 28px;
    grid-template-columns: 220px minmax(0, 1fr);
  }
}
@media (max-width: 760px) {
  .my-service-hero {
    padding: 18px 0 28px;
  }
  .my-breadcrumbs {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .my-service-hero-grid,
  .my-service-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .my-service-hero h1 {
    font-size: 42px;
    margin: 8px 0 15px;
  }
  .my-service-lead {
    font-size: 16px;
    line-height: 1.8;
  }
  .my-service-layout {
    padding-block: 26px 35px;
  }
  .my-service-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .my-service-toc {
    padding: 20px;
  }
  .my-service-toc nav {
    margin-bottom: 0;
  }
  .my-service-toc .my-button {
    display: none;
  }
  .my-service-article {
    font-size: 16px;
  }
  .my-service-article h2 {
    font-size: 26px;
  }
  .my-service-gallery > div {
    grid-template-columns: 1fr;
  }
  .my-service-gallery img {
    max-height: 230px;
  }
}
.my-service-link-chip p {
  margin: 0;
}

/* Existing local listings retain their destinations and professional details. */
.my-local-listings .elementor-posts-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.my-local-listings .elementor-post {
  margin: 0;
  padding: 0;
  min-width: 0;
}
.my-local-listings a {
  display: block;
  padding: 14px;
  background: #edf5f4;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}
.my-local-listings a:hover {
  background: #dcefee;
}
.my-location-tags {
  display: flex;
  gap: 10px;
  margin-block: 20px;
  font-size: 14px;
}
.my-service-article .otw_get_professionals_business_container {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}
.my-service-article .pro-card {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  float: none;
  padding: 22px;
  margin: 0 0 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 5px 20px #213e4b05;
}
.my-service-article .pro-card.pro-card-hidden {
  display: none !important;
}
.my-service-article .pro-card__business-image {
  width: 72px;
  height: 72px !important;
  object-fit: cover;
  border-radius: 50%;
}
.my-service-article .pro-card__owner-name {
  font-size: 12px;
  line-height: 1.5;
}
.my-service-article .pro-card__headline {
  font-size: 22px;
  margin: 0 0 6px;
  line-height: 1.4;
}
.my-service-article .pro-card__last-check {
  font-size: 12px;
  color: var(--muted);
}
.my-service-article .pro-card__ranks-container,
.my-service-article .pro-card__reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.my-service-article .pro-card__votes-total {
  font-weight: 700;
  color: #846014;
}
.my-service-article .pro-card__stars-container {
  display: none;
}
.my-service-article .pro-card__action-button-container,
.my-service-article .pro-card__description {
  grid-column: 1/-1;
}
.my-service-article .pro-card__description {
  font-size: 14px;
  line-height: 1.8;
}
.my-service-article .pro-card__action-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: var(--ink);
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  direction: ltr;
}
.my-service-article .pro-card__action-button img {
  display: none;
}
.my-service-article .pro-card__logo img {
  max-width: 150px;
}
.my-service-article .pro-loadmore {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--aqua);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  margin: 0 0 24px;
}
@media (max-width: 760px) {
  .my-local-listings .elementor-posts-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .my-service-article .pro-card {
    padding: 17px;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }
  .my-service-article .pro-card__business-image {
    width: 60px;
    height: 60px !important;
  }
  .my-service-article .pro-card__headline {
    font-size: 20px;
  }
}
.my-service-article img[src*="cooperation-banner"] {
  display: block;
  width: 150px;
  height: auto !important;
  margin: 18px auto;
}
/* Editorial pages put the reading introduction before the service finder. */
.my-editorial-page .my-service-hero-grid {
  grid-template-columns: minmax(0, 850px);
}
.my-editorial-page .my-service-hero {
  padding-bottom: 48px;
}
.my-editorial-page .my-service-lead {
  max-width: 760px;
}
.my-editorial-page .my-service-article > .my-finder {
  margin: 36px 0;
}
.my-service-article .search-container {
  display: none !important;
}
.my-service-lead span[style*="background-color"] {
  background: transparent !important;
}
.my-local-listings .elementor-post__card {
  background: #fff;
  border: 1px solid #dce6e5;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}
.my-local-listings .elementor-post__text {
  padding: 20px;
}
.my-local-listings .elementor-post__thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}
.my-local-listings .elementor-post__title {
  font-size: 21px;
  margin: 0 0 12px;
}
.my-local-listings .elementor-post__meta-data {
  padding: 12px 20px;
  font-size: 13px;
  color: #617776;
  border-top: 1px solid #e5eceb;
}
.my-local-listings .elementor-post__badge {
  padding: 8px 20px;
  color: #617776;
  font-size: 13px;
}
.my-local-listings .elementor-post__avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin: 12px 20px;
}
.my-local-listings .elementor-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}
.my-local-listings .page-numbers {
  padding: 8px 14px;
  border: 1px solid #dce6e5;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .my-editorial-page .my-local-listings .elementor-posts-container {
    grid-template-columns: 1fr;
  }
}

.my-service-extra {
  flex-wrap: wrap;
}
.my-service-extra p {
  flex: 1 1 180px;
}
.my-local-listings .elementor-post__card a {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  text-decoration: none;
}
.my-local-listings .elementor-post__card:hover {
  border-color: #8bbdb9;
  background: #f4f9f8;
}
.my-local-listings .elementor-post__card .elementor-post__title a {
  font-size: 19px;
  font-weight: 650;
  line-height: 1.6;
}
.my-system-page .my-service-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin: 16px 0 0;
}
.my-system-content {
  max-width: 960px;
  padding-block: 48px;
  overflow-wrap: anywhere;
}
.my-system-content > .elementor-widget {
  margin-bottom: 32px;
}
.my-system-content iframe {
  width: 100%;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.my-system-content > picture {
  display: block;
  max-width: 260px;
  margin: 24px auto;
}
.my-system-content .elementor-sitemap-list {
  padding-inline-start: 24px;
}
.my-system-content .elementor-sitemap-item {
  margin-block: 8px;
}
.my-system-content .elementor-sitemap-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.my-system-finder {
  max-width: 960px;
  margin-block: 0 48px;
}
@media (max-width: 760px) {
  .my-system-content {
    padding-block: 28px;
  }
  .my-system-content iframe {
    min-height: 630px;
  }
}
/* Built-in accessibility controls and focus states. */
body[data-myim-redesign] :focus-visible {
  outline: 3px solid #125e7c;
  outline-offset: 4px;
  box-shadow: 0 0 0 6px #fff;
}
.my-access-trigger {
  position: fixed;
  inset-inline-start: 12px;
  bottom: 12px;
  z-index: 99999;
  min-height: 48px;
  padding: 10px 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  color: #fff;
  background: #213e4b;
  cursor: pointer;
  box-shadow: 0 2px 12px #0004;
}
.my-access-dialog {
  width: min(480px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 24px;
  border: 2px solid #213e4b;
  border-radius: 18px;
  color: #213e4b;
  background: #fff;
  font:
    16px/1.7 MyimHeebo,
    Arial,
    sans-serif;
}
.my-access-dialog::backdrop {
  background: #10252db3;
}
.my-access-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
.my-access-dialog h2 {
  font-size: 25px;
  letter-spacing: 0;
}
.my-access-dialog button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #58707b;
  border-radius: 8px;
  background: #fff;
  color: #213e4b;
  cursor: pointer;
  font: inherit;
}
.my-access-dialog a {
  text-decoration: underline !important;
  display: inline-block;
  padding-block: 10px;
}
.my-access-options {
  display: grid;
  gap: 10px;
  margin-block: 18px;
}
.my-access-dialog button[aria-pressed="true"] {
  color: #fff;
  background: #213e4b;
  border-color: #213e4b;
}
.my-access-dialog button[aria-pressed="true"]::before {
  content: "✓ ";
}
body.my-access-links a {
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px !important;
}
body.my-access-spacing :is(p, li, div, span, a, label, button, input, summary) {
  line-height: 1.8 !important;
  letter-spacing: 0.06em !important;
  word-spacing: 0.12em !important;
}
body.my-access-spacing p {
  margin-bottom: 2em !important;
}
body.my-access-motion *,
body.my-access-motion *::before,
body.my-access-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
body.my-access-contrast,
body.my-access-contrast
  :is(
    header,
    footer,
    main,
    section,
    article,
    aside,
    nav,
    div,
    details,
    summary,
    p,
    span,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    li,
    ul,
    ol,
    figure,
    figcaption,
    form,
    label,
    input,
    button,
    a,
    dialog,
    strong,
    b,
    td,
    th
  ) {
  background-color: #fff !important;
  background-image: none !important;
  color: #172f39 !important;
  border-color: #172f39 !important;
}
body.my-access-contrast :is(button, .my-button) {
  background: #172f39 !important;
  color: #fff !important;
}
body.my-access-contrast :is(button, .my-button) * {
  background: transparent !important;
  color: inherit !important;
}
body.my-access-contrast button[aria-pressed="true"] {
  outline: 3px solid #172f39;
  outline-offset: 2px;
}
body[data-myim-redesign] input::placeholder {
  color: #58707b;
  opacity: 1;
}
body[data-myim-redesign] .sgcc-main-wrapper {
  bottom: 72px !important;
}
body[data-myim-redesign] .sgcc-notice-content .message-block {
  font-size: 13px !important;
}
body[data-myim-redesign] #sgcc-accept-button {
  min-height: 44px !important;
}
@media (prefers-reduced-motion: reduce) {
  body[data-myim-redesign] *,
  body[data-myim-redesign] *::before,
  body[data-myim-redesign] *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.my-eyebrow {
  color: #496974;
}
