/* ============================================================
     FOR GYMS — "the service side of the wall".
     The climber page is the front of the wall; this page is the
     back of house: blueprint lines instead of T-nut holes, real
     app screenshots instead of prose, the second accent instead
     of climber orange. Same hardware, different room.
     ============================================================ */
[data-theme="dark"] {
  --bp-line: rgba(246, 242, 232, 0.05);
}
[data-theme="light"] {
  --bp-line: rgba(43, 33, 24, 0.06);
}

.gy-scope {
  --accent: var(--accent-2);
  --accent-deep: color-mix(in oklab, var(--accent-2) 78%, black);
}
[data-theme="light"] .gy-scope {
  --on-accent: rgb(255, 250, 244);
}

/* blueprint grid instead of T-nut dots */
.bp {
  background-image:
    var(--grain-uri), linear-gradient(var(--bp-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-line) 1px, transparent 1px);
  background-size:
    160px 160px,
    var(--module) var(--module),
    var(--module) var(--module);
  background-position:
    0 0,
    var(--half-module) 0,
    var(--half-module) 0;
}

/* ---------- screenshot slots ---------- */
.gy-shot {
  position: relative;
  margin: 0;
}
/* empty slot: dashed frame + a mono note describing the capture */
.gy-shot:not(.has-img) {
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 2px dashed var(--border-strong);
  border-radius: 22px;
  overflow: hidden;
}
.gy-shot figcaption {
  max-width: 20ch;
  padding: 18px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--text-subtle);
}
/* filled slot: quiet device bezel; the capture keeps its natural
   ratio so no UI is ever cropped away */
.gy-shot.has-img {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  padding: 8px;
}
.gy-shot.has-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}
/* device frame + theme-swap rules live in the shared app-shots.css */
/* an extracted app component that brings its own card chrome:
   no bezel, no extra clipping */
.gy-shot-bare {
  width: min(100%, 400px);
}
.gy-shot-bare.has-img {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.gy-shot-bare.has-img img {
  border-radius: 14px;
}

/* ---------- hero ---------- */
.gy2-hero {
  position: relative;
  overflow: clip;
  padding: calc(var(--module) * 1.7) 0 0;
}
.gy2-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: calc(var(--module) * 1.2);
  align-items: end;
}
.gy-hero-copy {
  align-self: center;
  padding-bottom: calc(var(--module) * 1.5);
}
/* locality first: the Austrian flag recontextualizes the headline */
.gy-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.gy-flag {
  flex: none;
  width: 21px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(
    to bottom,
    #ef3340 0 33.4%,
    #f6f2e8 33.4% 66.7%,
    #ef3340 66.7% 100%
  );
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}
.gy2-hero h1 {
  /* longer headline ("ClimbSync brings the climbers to you.") — a touch
     smaller + wider so it settles into two balanced lines, not three */
  font-size: clamp(40px, 4.4vw, 62px);
  margin: 18px 0 20px;
  max-width: 20ch;
  text-wrap: balance;
}
.gy2-hero .lead {
  max-width: 44ch;
}
.gy2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin-top: 32px;
}
/* the phone anchors the hero and bleeds off the panel's bottom edge;
   page components pile up behind it, peeking out at the sides */
.gy-hero-side {
  display: flex;
  justify-content: center;
}
.gy-hero-stack {
  position: relative;
  width: 100%;
  margin-bottom: calc(var(--module) * -1.4);
  /* a container so the mobile cascade can scale as one via cqw units
     (1cqw = 1% of the stack width) — see the max-width:960 block */
  container-type: inline-size;
}
/* the phone anchors the right of the composition, tilts slightly and
   casts its shadow onto the cascade at its left (drop-shadow, not
   box-shadow: it must hug the frame's silhouette, not its box) */
.gy-hero-shot {
  position: relative;
  width: min(100%, 340px);
  margin: 0 0 0 auto;
  rotate: 2.8deg;
  z-index: 10;
  filter: drop-shadow(-14px 18px 22px rgba(0, 0, 0, 0.45));
}
/* the cards cascade down the phone's left side: their left halves
   (title, icon, the readable part) stay clear of the phone.
   .gy-hp is a positioning WRAPPER (see ForGymsPage.astro) — the imgs inside
   carry the .app-shot-* display rules, so hide/place the wrapper only. */
.gy-hp {
  position: absolute;
}
.gy-hp img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: -10px 14px 26px rgba(0, 0, 0, 0.38);
}
/* the top card rides the phone's shoulder (starts above its top edge);
   the cascade steps down from there as a loose pile — each card lies a
   little over the top edge of the one below it */
.gy-hp-grading {
  width: 255px;
  right: 282px;
  top: -14px;
  rotate: -1.8deg;
  z-index: 6;
}
.gy-hp-team {
  width: 255px;
  right: 306px;
  top: 78px;
  rotate: 1.6deg;
  z-index: 5;
}
.gy-hp-stats {
  width: 255px;
  right: 270px;
  top: 106px;
  rotate: -2.2deg;
  z-index: 4;
}
.gy-hp-keytag {
  width: 180px;
  right: 312px;
  top: 180px;
  rotate: 2deg;
  z-index: 3;
}
.gy-hp-spray {
  width: 210px;
  right: 290px;
  top: 336px;
  rotate: -2.4deg;
  z-index: 2;
}
/* the café tile tucks under the spray wall's bottom edge, same pile
   rhythm as the rest of the cascade, and clears the panel seam */
.gy-hp-cafe {
  width: 170px;
  right: 320px;
  top: 478px;
  rotate: 2deg;
  z-index: 1;
}

/* ---------- the ledger: index rail + content rows ---------- */
.gy-ledger {
  padding-bottom: calc(var(--module) * 0.6);
}
.gy-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: var(--half-module);
  border-top: 1px solid var(--border-strong);
  padding: calc(var(--module) * 1.25) 0;
}
/* first row (reach) flows straight out of the hero: no seam above it */
.gy-row:first-child {
  border-top: none;
}
.gy-rail {
  position: relative;
}
.gy-rail-stick {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.gy-rail .n {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 38px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-strong);
  letter-spacing: 0.04em;
  user-select: none;
}
.gy-rail .t {
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
}
.gy-row h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-stretch: var(--display-stretch);
  letter-spacing: var(--display-tracking);
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.08;
  margin-bottom: 16px;
  text-wrap: pretty;
}
/* section intro: heading left, supporting copy right, so the text
   fills the width instead of hugging the left edge */
.gy-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: calc(var(--module) * 0.9);
  align-items: start;
}
.gy-intro > h2 {
  margin: 0;
  max-width: 15ch;
}
.gy-intro .gy-copy {
  max-width: none;
}
.gy-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gy-copy p {
  color: var(--text-muted);
  max-width: 52ch;
  text-wrap: pretty;
}
.gy-copy p strong {
  color: var(--text);
}

/* ---------- your page: before / after ---------- */
.gy-ba {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: calc(var(--module) * 0.6);
  align-items: center;
  justify-items: center;
  margin-top: calc(var(--module) * 0.9);
}
.gy-ba-col {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gy-ba-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
  padding: 5px 13px;
}
.gy-ba-label.claimed {
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 55%, transparent);
  border-style: solid;
}
.gy-ba-arrow {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--text-subtle);
  user-select: none;
}
.gy-ba-caption {
  margin-top: 22px;
  text-align: center;
}

/* ---------- reach: screenshot strip ---------- */
.gy-reach-intro {
  max-width: 54ch;
  margin: 6px 0 0;
  color: var(--text-muted);
  text-wrap: pretty;
}
.gy-reach-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--module) * 0.9);
  align-items: start;
  margin-top: calc(var(--module) * 0.8);
}
.gy-reach-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
/* frameless device edges need a soft lift off the panel */
.gy-reach-item .device-phone {
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.28));
}
.gy-reach-caption {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 30ch;
  text-wrap: pretty;
}
.gy-stamp {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
  padding: 4px 11px;
  margin-top: 14px;
}
.gy-stamp.live {
  color: var(--accent);
  border-color: color-mix(in oklab, var(--accent) 55%, transparent);
  border-style: solid;
}

/* section 01 status: the live box CONTAINS the three shots — its label
   sits on the border like a legend, so "this is what's live" needs no
   arrow. The dashed twin below holds what isn't built yet. */
.gy-reach-live-box {
  position: relative;
  margin-top: calc(var(--module) * 0.95);
  padding: calc(var(--module) * 0.65) calc(var(--module) * 0.5) calc(var(--module) * 0.5);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  border-radius: 14px;
}
.gy-reach-live-box > .gy-reach-strip {
  margin-top: 0;
}
.gy-reach-live {
  position: absolute;
  top: 0;
  left: 30px;
  translate: 0 -50%;
  margin: 0;
  font-size: 10.5px;
  padding: 6px 14px;
  background: var(--panel-plain);
}
.gy-reach-coming {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin-top: calc(var(--module) * 0.5);
  padding: 30px 24px 22px;
  border: 1px dashed var(--border-strong);
  border-radius: 14px;
}
.gy-reach-coming-label {
  position: absolute;
  top: 0;
  left: 30px;
  translate: 0 -50%;
  margin: 0;
  background: var(--panel-plain);
}
.gy-reach-coming-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gy-reach-coming-list li {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- the ask + the sign-off ----------
   Two clear halves up top: what we ask now (a solid hairline
   register) beside what's planned (a ghosted list, clearly not yet
   real). Then a separate personal sign-off: the honest word and a
   modest portrait of the person building it. */
.gy-ask-cols {
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--module) * 1.1);
}
.gy-ask-cols::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  bottom: 4px;
  border-left: 1px dashed var(--border-strong);
}
.gy-ask-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
/* now: three solid-marker items (matches the ghosted later list) */
.gy-ask-reg {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gy-ask-reg li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text);
  text-wrap: pretty;
}
.gy-ask-reg li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 6px;
}
/* later: a ghosted list, dashed markers, clearly not-yet-real */
.gy-later-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gy-later-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-subtle);
  text-wrap: pretty;
}
.gy-later-list li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border: 1.5px dashed var(--text-subtle);
  margin-top: 6px;
}
/* the sign-off: a personal PS, not the point of the section */
/* pricing reassurance as a quiet full-width footnote; its solid rule
   spans the whole column (no random end) and separates the ask from
   the sign-off */
/* pricing reassurance, a quiet boxed mono footnote */
.gy-free-note {
  margin-top: calc(var(--module) * 0.85);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: var(--text-subtle);
  text-wrap: pretty;
}
.gy-free-note strong {
  color: var(--text-muted);
  font-weight: 600;
}
/* the sign-off: photo and note boxed as one founder board (grain and
   hard shadow come from the shared .board surface) */
.gy-signoff {
  margin-top: calc(var(--module) * 0.7);
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 32px 36px;
}
.gy-signoff-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gy-signoff-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: -8px;
  user-select: none;
}
.gy-honest {
  margin: 0;
  font-size: clamp(16.5px, 1.4vw, 18.5px);
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}
.gy-honest strong {
  color: var(--text);
}
.gy-signature {
  margin: 2px 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.gy-signoff-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-deep);
}
.gy-signoff-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

/* ---------- CTA: the claim panel ---------- */
.gy2-cta {
  padding: calc(var(--module) * 1.6) 0 calc(var(--module) * 2);
}
.gy2-tag {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  padding: clamp(46px, 5vw, 60px) clamp(28px, 5vw, 56px) clamp(34px, 4.5vw, 48px);
  text-align: center;
}
/* the envelope badge sits on the top edge: a real focal point, and
   it says "this is about one email" */
.gy2-badge {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.gy2-badge svg {
  width: 22px;
  height: 22px;
}
.gy2-tag h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  margin: 0 0 14px;
}
.gy2-tag .lead {
  max-width: 42ch;
  margin: 0 auto;
  font-size: 17px;
}
.gy-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.02em;
  padding: 18px 30px;
}
.gy-mail-arrow {
  transition: transform 0.2s ease;
}
.gy-mail:hover .gy-mail-arrow {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .gy-mail-arrow {
    transition: none;
  }
}
.gy2-tag .micro {
  margin-top: 18px;
}

@media (max-width: 720px) {
  .gy-ask-cols {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .gy-ask-cols::before {
    display: none;
  }
  .gy-ask-col + .gy-ask-col {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px dashed var(--border-strong);
  }
  .gy-signoff {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    padding: 24px;
  }
  .gy-signoff-photo {
    width: min(100%, 260px);
    justify-self: center;
  }
}
/* mid widths: the copy column closes in on the cascade — shrink the
   cards and tuck them further under the phone so they never collide.
   The team strip goes: its label sits at its right edge, so any tuck
   clips it mid-word. */
@media (max-width: 1200px) and (min-width: 961px) {
  .gy-hp-grading {
    width: 225px;
    right: 252px;
    top: -14px;
  }
  .gy-hp-team {
    display: none;
  }
  .gy-hp-stats {
    width: 225px;
    right: 268px;
    top: 60px;
  }
  .gy-hp-keytag {
    width: 165px;
    right: 276px;
    top: 128px;
  }
  .gy-hp-spray {
    width: 180px;
    right: 264px;
    top: 270px;
  }
  .gy-hp-cafe {
    display: none;
  }
}
@media (max-width: 960px) {
  .gy2-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: calc(var(--module) * 0.9);
  }
  .gy2-hero-grid > * {
    min-width: 0;
  }
  .gy-hero-copy {
    padding-bottom: 0;
  }
  .gy-hero-stack {
    width: min(100%, 440px);
    margin-inline: auto;
    margin-bottom: calc(var(--module) * -1.2);
  }
  /* keep the whole desktop cascade on phones — the phone anchors the
     right, the cards pile down its left, all sized in cqw so the
     composition is a scaled clone of the desktop pile at any width
     (percentages of the stack, via container-type above) */
  .gy-hero-shot {
    width: 60.7cqw;
    margin: 0 0 0 auto;
  }
  .gy-hp-grading {
    width: 45.5cqw;
    right: 50.4cqw;
    left: auto;
    top: -2.5cqw;
    bottom: auto;
    rotate: -1.8deg;
    z-index: 6;
  }
  .gy-hp-team {
    width: 45.5cqw;
    right: 54.6cqw;
    top: 13.9cqw;
    rotate: 1.6deg;
    z-index: 5;
  }
  .gy-hp-stats {
    width: 45.5cqw;
    right: 48.2cqw;
    top: 18.9cqw;
    rotate: -2.2deg;
    z-index: 4;
  }
  .gy-hp-keytag {
    width: 32.1cqw;
    right: 55.7cqw;
    top: 32.1cqw;
    rotate: 2deg;
    z-index: 3;
  }
  .gy-hp-spray {
    width: 37.5cqw;
    right: 51.8cqw;
    top: 60cqw;
    rotate: -2.4deg;
    z-index: 2;
  }
  .gy-hp-cafe {
    width: 30.4cqw;
    right: 57.1cqw;
    top: 85.4cqw;
    rotate: 2deg;
    z-index: 1;
  }
  /* reach: one swipeable strip instead of a mile of stacked phones;
     it swipes inside the live box, up to the box's own border */
  .gy-reach-live-box {
    padding: 34px 16px 12px;
  }
  .gy-reach-live-box > .gy-reach-strip {
    margin-inline: -16px;
  }
  .gy-reach-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    padding: 4px var(--half-module) 14px;
    scrollbar-width: none;
  }
  .gy-reach-strip::-webkit-scrollbar {
    display: none;
  }
  .gy-reach-item {
    flex: 0 0 min(68vw, 270px);
    scroll-snap-align: center;
  }
  .gy-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .gy-rail .n {
    font-size: 28px;
  }
}
@media (max-width: 720px) {
  /* the index rail becomes a horizontal section header: the side
     column is too expensive at phone widths */
  .gy-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .gy-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .gy-intro > h2 {
    max-width: 20ch;
  }
  .gy-reach-intro {
    margin-top: 0;
  }
  .gy-rail-stick {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .gy-rail .n {
    font-size: 30px;
  }
  .gy-rail .t {
    writing-mode: horizontal-tb;
  }
  /* side by side the pair is unreadably small on a phone: stack it,
     full width, with the arrow turned to point at the after state */
  .gy-ba {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-inline: 0;
  }
  .gy-ba-arrow {
    rotate: 90deg;
    font-size: 26px;
  }
  .gy-shot.has-img {
    border-radius: 20px;
    padding: 5px;
  }
  .gy-shot.has-img img {
    border-radius: 15px;
  }
}
@media (max-width: 600px) {
  .gy2-hero {
    padding: calc(var(--module) * 0.9) 0 0;
  }
  .gy2-hero h1 {
    margin: 18px 0 16px;
  }
  .gy2-hero-grid {
    gap: calc(var(--module) * 0.7);
  }
  .gy-row {
    padding: calc(var(--module) * 0.9) 0;
  }
  .gy2-cta {
    padding: calc(var(--module) * 1.1) 0 calc(var(--module) * 1.4);
  }
  .gy-mail {
    padding: 14px 22px;
    font-size: 15px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
