.mgt-gphelp-homepage-template {
  --gp-ink: #171715;
  --gp-soft-ink: #4b4843;
  --gp-muted: #8f877d;
  --gp-paper: #ffffff;
  --gp-warm: #f6f3ef;
  --gp-line: #ded8cf;
  --gp-blue: #00aeea;
  --gp-orange: #ef8700;
  --gp-magenta: #e5007e;
  --gp-green: #00a65e;
  --gp-purple: #8b48b7;
  --gp-max: 1120px;
  --gp-sans: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --gp-mono: "IBM Plex Mono", "Consolas", monospace;
  color: var(--gp-ink);
  background: var(--gp-paper);
  font-family: var(--gp-sans);
  font-size: 17px;
  line-height: 1.55;
}

.mgt-gphelp-homepage-template * {
  box-sizing: border-box;
}

.mgt-gphelp-homepage-template .wp-site-blocks,
.mgt-gphelp-homepage-template .wp-block-post-content {
  margin: 0;
}

.mgt-gphelp-homepage-template .gp-page {
  margin: 0;
}

.mgt-gphelp-homepage-template .gp-wrap,
.mgt-gphelp-homepage-template .gp-topbar-inner,
.mgt-gphelp-homepage-template .gp-site-header__inner,
.mgt-gphelp-homepage-template .gp-hero-inner,
.mgt-gphelp-homepage-template .gp-caption,
.mgt-gphelp-homepage-template .gp-footer-inner {
  width: min(var(--gp-max), calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
}

.mgt-gphelp-homepage-template .gp-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  margin: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--gp-line);
  backdrop-filter: saturate(140%) blur(8px);
}

.mgt-gphelp-homepage-template .gp-site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mgt-gphelp-homepage-template .gp-site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.mgt-gphelp-homepage-template .gp-site-brand img {
  width: auto;
  height: 34px;
  display: block;
}

.mgt-gphelp-homepage-template .gp-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.mgt-gphelp-homepage-template .gp-site-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.mgt-gphelp-homepage-template .gp-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--gp-ink);
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.mgt-gphelp-homepage-template .gp-site-nav a:hover,
.mgt-gphelp-homepage-template .gp-site-nav a:focus-visible,
.mgt-gphelp-homepage-template .gp-site-nav .current-menu-item > a {
  border-bottom-color: var(--gp-green);
}

.mgt-gphelp-homepage-template .gp-site-nav a:focus-visible {
  outline: 2px solid var(--gp-blue);
  outline-offset: 4px;
}

.mgt-gphelp-homepage-template .gp-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 0;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--gp-line);
  backdrop-filter: blur(12px);
}

.mgt-gphelp-homepage-template .gp-topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mgt-gphelp-homepage-template .gp-brand img {
  width: 148px;
  height: auto;
  display: block;
}

.mgt-gphelp-homepage-template .gp-nav {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.mgt-gphelp-homepage-template .gp-nav a {
  color: var(--gp-ink);
  text-decoration: none;
}

.mgt-gphelp-homepage-template .gp-hero {
  min-height: 680px;
  margin: 0;
  padding: 0;
  color: #fff;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.mgt-gphelp-homepage-template .gp-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
}

.mgt-gphelp-homepage-template .gp-hero .wp-block-cover__image-background {
  object-position: center 46%;
}

.mgt-gphelp-homepage-template .gp-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23,23,21,.72) 0%, rgba(23,23,21,.48) 34%, rgba(23,23,21,.08) 70%);
}

.mgt-gphelp-homepage-template .gp-hero .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(23,23,21,.72) 0%, rgba(23,23,21,.48) 34%, rgba(23,23,21,.08) 70%) !important;
  opacity: 1 !important;
}

.mgt-gphelp-homepage-template .gp-hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--gp-blue) 0 20%, var(--gp-orange) 20% 40%, var(--gp-magenta) 40% 60%, var(--gp-green) 60% 80%, var(--gp-purple) 80% 100%);
  z-index: 2;
}

.mgt-gphelp-homepage-template .gp-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 88px;
  align-self: stretch;
}

.mgt-gphelp-homepage-template .gp-eyebrow,
.mgt-gphelp-homepage-template .gp-section-title,
.mgt-gphelp-homepage-template .gp-label,
.mgt-gphelp-homepage-template .gp-contact-card th,
.mgt-gphelp-homepage-template .gp-contact-card strong {
  font-family: var(--gp-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.mgt-gphelp-homepage-template .gp-eyebrow {
  margin: 0 0 24px;
  color: rgba(255,255,255,.82);
}

.mgt-gphelp-homepage-template .gp-hero h1 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 6vw, 70px);
  line-height: .96;
  letter-spacing: -1.5px;
  font-weight: 800;
}

.mgt-gphelp-homepage-template .gp-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 22px;
  line-height: 1.48;
}

.mgt-gphelp-homepage-template .gp-facts {
  max-width: 850px;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(255,255,255,.7);
  color: var(--gp-ink);
}

.mgt-gphelp-homepage-template .gp-fact {
  margin: 0;
  padding: 22px 24px;
  border-right: 1px solid var(--gp-line);
}

.mgt-gphelp-homepage-template .gp-fact:last-child {
  border-right: 0;
}

.mgt-gphelp-homepage-template .gp-fact .gp-label {
  display: block;
  color: var(--gp-muted);
  font-size: 11px;
  letter-spacing: .16em;
}

.mgt-gphelp-homepage-template .gp-fact strong {
  display: block;
  margin-top: 7px;
  font-family: var(--gp-mono);
  font-size: 17px;
  font-weight: 500;
}

.mgt-gphelp-homepage-template .gp-caption {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gp-muted);
  font-size: 13px;
}

.mgt-gphelp-homepage-template .gp-tiles {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  width: 88px;
  height: 12px;
  background: linear-gradient(90deg, var(--gp-blue) 0 13%, transparent 13% 20%, var(--gp-orange) 20% 33%, transparent 33% 40%, var(--gp-magenta) 40% 53%, transparent 53% 60%, var(--gp-green) 60% 73%, transparent 73% 80%, var(--gp-purple) 80% 93%, transparent 93% 100%);
  font-size: 0;
}

.mgt-gphelp-homepage-template .gp-tiles span {
  width: 12px;
  height: 12px;
  display: block;
}

.mgt-gphelp-homepage-template .gp-tiles span:nth-child(1) { background: var(--gp-blue); }
.mgt-gphelp-homepage-template .gp-tiles span:nth-child(2) { background: var(--gp-orange); }
.mgt-gphelp-homepage-template .gp-tiles span:nth-child(3) { background: var(--gp-magenta); }
.mgt-gphelp-homepage-template .gp-tiles span:nth-child(4) { background: var(--gp-green); }
.mgt-gphelp-homepage-template .gp-tiles span:nth-child(5) { background: var(--gp-purple); }

.mgt-gphelp-homepage-template .gp-section {
  margin: 0;
  padding: 84px 0;
  border-top: 1px solid var(--gp-line);
}

.mgt-gphelp-homepage-template .gp-section-head {
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.mgt-gphelp-homepage-template .gp-section-title {
  margin: 0;
  font-size: 13px;
  letter-spacing: .24em;
}

.mgt-gphelp-homepage-template .gp-rule {
  height: 1px;
  background: var(--gp-line);
}

.mgt-gphelp-homepage-template .gp-about-columns {
  gap: 72px;
}

.mgt-gphelp-homepage-template .gp-section p,
.mgt-gphelp-homepage-template .gp-section li {
  color: var(--gp-soft-ink);
}

.mgt-gphelp-homepage-template .gp-note {
  margin: 0;
  padding: 18px 0 18px 24px;
  border-left: 4px solid var(--gp-green);
  background: linear-gradient(90deg, rgba(0,166,94,.08), transparent);
  font-weight: 700;
}

.mgt-gphelp-homepage-template .gp-group-intro {
  max-width: 780px;
  margin-bottom: 34px;
}

.mgt-gphelp-homepage-template .gp-firm-columns {
  gap: 14px;
}

.mgt-gphelp-homepage-template .gp-firm {
  min-height: 136px;
  margin: 0;
  display: grid;
  grid-template-rows: 6px 1fr;
  border: 1px solid var(--gp-line);
  background: #fff;
  position: relative;
}

.mgt-gphelp-homepage-template .gp-firm:before {
  content: "";
  display: block;
  height: 6px;
}

.mgt-gphelp-homepage-template .gp-firm-blue:before { background: var(--gp-blue); }
.mgt-gphelp-homepage-template .gp-firm-orange:before { background: var(--gp-orange); }
.mgt-gphelp-homepage-template .gp-firm-magenta:before { background: var(--gp-magenta); }
.mgt-gphelp-homepage-template .gp-firm-green:before { background: var(--gp-green); }
.mgt-gphelp-homepage-template .gp-firm-purple:before { background: var(--gp-purple); }

.mgt-gphelp-homepage-template .gp-firm .wp-block-image,
.mgt-gphelp-homepage-template .gp-firm .wp-block-heading,
.mgt-gphelp-homepage-template .gp-firm p {
  margin: 0;
}

.mgt-gphelp-homepage-template .gp-firm {
  place-items: stretch;
}

.mgt-gphelp-homepage-template .gp-firm__link {
  width: 100%;
  height: 100%;
  min-height: 130px;
  display: grid;
  place-items: center;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.mgt-gphelp-homepage-template .gp-firm .wp-block-image a {
  position: absolute;
  inset: 6px 0 0;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.mgt-gphelp-homepage-template .gp-firm .wp-block-image a img {
  pointer-events: none;
}

.mgt-gphelp-homepage-template .gp-firm:has(.gp-firm__link) {
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mgt-gphelp-homepage-template .gp-firm:has(.wp-block-image a) {
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mgt-gphelp-homepage-template .gp-firm:has(.gp-firm__link):hover,
.mgt-gphelp-homepage-template .gp-firm:has(.gp-firm__link):focus-within,
.mgt-gphelp-homepage-template .gp-firm:has(.wp-block-image a):hover,
.mgt-gphelp-homepage-template .gp-firm:has(.wp-block-image a):focus-within {
  border-color: var(--gp-ink);
  box-shadow: 0 14px 34px rgba(23, 23, 21, .09);
  transform: translateY(-2px);
}

.mgt-gphelp-homepage-template .gp-firm__link:focus-visible,
.mgt-gphelp-homepage-template .gp-firm .wp-block-image a:focus-visible {
  outline: 2px solid var(--gp-blue);
  outline-offset: 4px;
}

.mgt-gphelp-homepage-template .gp-firm > * {
  align-self: center;
  justify-self: center;
}

.mgt-gphelp-homepage-template .gp-firm img {
  max-width: 150px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(.92);
}

.mgt-gphelp-homepage-template .gp-laundry {
  text-align: center;
}

.mgt-gphelp-homepage-template .gp-laundry h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
}

.mgt-gphelp-homepage-template .gp-laundry p {
  margin: 9px 0 0;
  color: var(--gp-muted);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.mgt-gphelp-homepage-template .gp-ops {
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--gp-warm);
  color: var(--gp-soft-ink);
  font-size: 14px;
}

.mgt-gphelp-homepage-template .gp-service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}

.mgt-gphelp-homepage-template .gp-service {
  margin: 0;
  min-height: 67px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gp-line);
  color: var(--gp-soft-ink);
}

.mgt-gphelp-homepage-template .gp-service:before {
  content: "";
  width: 34px;
  height: 34px;
  border: 1px solid var(--gp-line);
  background-color: var(--gp-green);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.mgt-gphelp-homepage-template .gp-service p {
  margin: 0;
}

.mgt-gphelp-homepage-template .gp-service-consult:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V6.5A2.5 2.5 0 0 1 6.5 4h11A2.5 2.5 0 0 1 20 6.5V19'/%3E%3Cpath d='M8 4V2.8h8V4'/%3E%3Cpath d='M7 9h10'/%3E%3Cpath d='M7 13h7'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-build:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V9l7-5 7 5v12'/%3E%3Cpath d='M9 21v-7h6v7'/%3E%3Cpath d='M8 10h.01'/%3E%3Cpath d='M16 10h.01'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-admin:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 12h16'/%3E%3Cpath d='M4 17h10'/%3E%3Cpath d='M17 16l2 2 3-4'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-auto:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14l1-5-3-5H8l-3 5z'/%3E%3Cpath d='M7 17a2 2 0 1 0 4 0'/%3E%3Cpath d='M15 17a2 2 0 1 0 4 0'/%3E%3Cpath d='M8 12h9'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-account:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h10v18H7z'/%3E%3Cpath d='M10 7h4'/%3E%3Cpath d='M10 11h4'/%3E%3Cpath d='M10 15h1'/%3E%3Cpath d='M14 15h.01'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-moto:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 16l3-8h6l3 8'/%3E%3Cpath d='M8 16h8'/%3E%3Cpath d='M7 19h10'/%3E%3Cpath d='M9 8l1-3h4l1 3'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-space:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 21V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16'/%3E%3Cpath d='M9 21v-5h6v5'/%3E%3Cpath d='M8 7h.01'/%3E%3Cpath d='M12 7h.01'/%3E%3Cpath d='M16 7h.01'/%3E%3Cpath d='M8 11h.01'/%3E%3Cpath d='M12 11h.01'/%3E%3Cpath d='M16 11h.01'/%3E%3C/svg%3E"); }
.mgt-gphelp-homepage-template .gp-service-promo:before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13V7a2 2 0 0 1 2-2h3l2-2h2l2 2h3a2 2 0 0 1 2 2v6'/%3E%3Cpath d='M5 13l2 7h10l2-7'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E"); }

.mgt-gphelp-homepage-template .gp-contact-card {
  margin: 0;
  border: 1px solid var(--gp-line);
  background: #fff;
}

.mgt-gphelp-homepage-template .gp-contact-top,
.mgt-gphelp-homepage-template .gp-contact-foot {
  margin: 0;
  padding: 18px 22px;
  background: var(--gp-warm);
}

.mgt-gphelp-homepage-template .gp-contact-top > .wp-block-group__inner-container,
.mgt-gphelp-homepage-template .gp-contact-foot > .wp-block-group__inner-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mgt-gphelp-homepage-template .gp-contact-rows {
  margin: 0;
}

.mgt-gphelp-homepage-template .gp-contact-rows > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mgt-gphelp-homepage-template .gp-contact-row {
  margin: 0;
  min-height: 96px;
  padding: 18px 22px;
  border-top: 1px solid var(--gp-line);
  border-right: 1px solid var(--gp-line);
}

.mgt-gphelp-homepage-template .gp-contact-row:nth-child(2n) {
  border-right: 0;
}

.mgt-gphelp-homepage-template .gp-contact-key {
  margin: 0 0 8px !important;
  font-family: var(--gp-mono);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gp-muted);
}

.mgt-gphelp-homepage-template .gp-contact-value {
  margin: 0 !important;
  font-family: var(--gp-mono);
  color: var(--gp-soft-ink);
  font-size: 14px;
}

.mgt-gphelp-homepage-template .gp-todo {
  color: var(--gp-muted);
}

.mgt-gphelp-homepage-template .gp-footer {
  margin: 0;
  padding: 46px 0;
  background: #11110f;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.mgt-gphelp-homepage-template .gp-footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.mgt-gphelp-homepage-template .gp-footer strong {
  display: block;
  color: #fff;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.mgt-gphelp-homepage-template .gp-site-footer {
  margin: 0;
  padding: 42px 0 46px;
  background: var(--gp-ink);
  color: rgba(255,255,255,.72);
}

.mgt-gphelp-homepage-template .gp-site-footer__inner {
  width: min(var(--gp-max), calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.mgt-gphelp-homepage-template .gp-site-footer strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
}

.mgt-gphelp-homepage-template .gp-site-footer p {
  margin: 10px 0 0;
  font-family: var(--gp-mono);
  font-size: 12.5px;
  line-height: 1.7;
}

.mgt-gphelp-homepage-template .gp-site-footer__meta {
  text-align: right;
}

.mgt-gphelp-homepage-template .gp-site-footer__tiles {
  display: inline-block;
  width: 88px;
  height: 12px;
  background: linear-gradient(90deg, var(--gp-blue) 0 13%, transparent 13% 20%, var(--gp-orange) 20% 33%, transparent 33% 40%, var(--gp-magenta) 40% 53%, transparent 53% 60%, var(--gp-green) 60% 73%, transparent 73% 80%, var(--gp-purple) 80% 93%, transparent 93% 100%);
}

.mgt-gphelp-homepage-template .gp-standard-page {
  min-height: 70vh;
  padding: 72px 0 96px;
}

.mgt-gphelp-homepage-template .gp-standard-article {
  max-width: 840px;
}

.mgt-gphelp-homepage-template .gp-standard-title {
  margin: 0 0 32px;
  color: var(--gp-ink);
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  font-weight: 800;
}

.mgt-gphelp-homepage-template .gp-standard-content {
  color: var(--gp-soft-ink);
  font-size: 19px;
}

.mgt-gphelp-homepage-template .gp-standard-content > * {
  margin-top: 0;
}

.mgt-gphelp-homepage-template .gp-standard-content a {
  color: var(--gp-ink);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@media (max-width: 800px) {
  .mgt-gphelp-homepage-template .gp-wrap,
  .mgt-gphelp-homepage-template .gp-topbar-inner,
  .mgt-gphelp-homepage-template .gp-site-header__inner,
  .mgt-gphelp-homepage-template .gp-hero-inner,
  .mgt-gphelp-homepage-template .gp-caption,
  .mgt-gphelp-homepage-template .gp-footer-inner {
    width: min(100% - 36px, var(--gp-max));
  }

  .mgt-gphelp-homepage-template .gp-topbar-inner,
  .mgt-gphelp-homepage-template .gp-caption,
  .mgt-gphelp-homepage-template .gp-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mgt-gphelp-homepage-template .gp-site-header__inner {
    min-height: 70px;
  }

  .mgt-gphelp-homepage-template .gp-site-brand img {
    height: 30px;
  }

  .mgt-gphelp-homepage-template .gp-site-nav__list {
    gap: 18px;
  }

  .mgt-gphelp-homepage-template .gp-site-nav a {
    font-size: 13px;
  }

  .mgt-gphelp-homepage-template .gp-site-footer__inner {
    width: min(100% - 36px, var(--gp-max));
    align-items: flex-start;
    flex-direction: column;
  }

  .mgt-gphelp-homepage-template .gp-site-footer__meta {
    text-align: left;
  }

  .mgt-gphelp-homepage-template .gp-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .mgt-gphelp-homepage-template .gp-hero {
    min-height: 680px;
  }

  .mgt-gphelp-homepage-template .gp-hero h1 {
    font-size: 46px;
  }

  .mgt-gphelp-homepage-template .gp-facts {
    grid-template-columns: 1fr;
  }

  .mgt-gphelp-homepage-template .gp-service-columns {
    grid-template-columns: 1fr;
  }

  .mgt-gphelp-homepage-template .gp-fact {
    border-right: 0;
    border-bottom: 1px solid var(--gp-line);
  }

  .mgt-gphelp-homepage-template .gp-contact-rows > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
  }

  .mgt-gphelp-homepage-template .gp-contact-row {
    border-right: 0;
  }
}
