.GGMX-manager {
  position: relative;
  padding: 85px 0;
  background-image: url("../images/section-bg-circle-shape.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  overflow: hidden;
}

.GGMX-manager::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(255, 232, 0, 0.075),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(255, 255, 255, 0.045),
      transparent 32%
    );
  pointer-events: none;
}

.GGMX-manager .container {
  position: relative;
  z-index: 1;
}

.GGMX-row {
  row-gap: 32px;
}

.GGMX-visual {
  position: relative;
  padding-right: 10px;
}

.GGMX-photoCard {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

.GGMX-photoCard figure {
  display: block;
  margin: 0;
  border-radius: 22px;
}

.GGMX-photoCard img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  transition: transform 0.5s ease-in-out;
}

.GGMX-photoCard:hover img {
  transform: scale(1.03);
}

.GGMX-photoCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(23, 30, 46, 0) 40%,
      rgba(23, 30, 46, 0.94) 100%
    ),
    radial-gradient(circle at 34% 12%, rgba(255, 232, 0, 0.12), transparent 42%);
  pointer-events: none;
}

.GGMX-namePlate {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.GGMX-namePlate span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 10px;
  border-radius: 100px;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.GGMX-namePlate h3 {
  color: var(--white-color);
  font-size: 38px;
  line-height: 0.95em;
  text-transform: uppercase;
  margin: 0;
}

.GGMX-expSeal {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  background: var(--accent-color);
  color: var(--accent-secondary-color);
  border: 5px solid var(--accent-secondary-color);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.32);
}

.GGMX-expSeal strong {
  display: block;
  color: var(--accent-secondary-color);
  font-family: var(--accent-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 0.9em;
}

.GGMX-expSeal span {
  display: block;
  margin-top: 3px;
  color: var(--accent-secondary-color);
  font-family: var(--accent-font);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.05em;
  text-transform: uppercase;
}

.GGMX-miniInfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.GGMX-miniInfo div {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--divider-color);
  background: rgba(255, 255, 255, 0.045);
  transition: all 0.3s ease-in-out;
}

.GGMX-miniInfo div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 232, 0, 0.3);
}

.GGMX-miniInfo strong {
  display: block;
  color: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 20px;
  line-height: 1.15em;
  margin-bottom: 5px;
}

.GGMX-miniInfo span {
  display: block;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.35em;
}

.GGMX-content {
  padding-left: 6px;
}

.GGMX-titleBlock {
  margin-bottom: 16px;
}

.GGMX-titleBlock h2 {
  margin-bottom: 0;
}

.GGMX-summaryBox {
  position: relative;
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 232, 0, 0.18);
  background:
    linear-gradient(
      135deg,
      rgba(255, 232, 0, 0.08),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.GGMX-summaryBox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 100px;
  background: var(--accent-color);
}

.GGMX-summaryBox p {
  margin: 0;
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.6em;
}

.GGMX-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.GGMX-fact {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
}

.GGMX-fact strong {
  display: block;
  color: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 27px;
  line-height: 1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.GGMX-fact span {
  display: block;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.3em;
}

.GGMX-leadGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.GGMX-leadCard {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--divider-color);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}

.GGMX-leadCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.GGMX-leadCard:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 232, 0, 0.34);
}

.GGMX-leadCard:hover::before {
  opacity: 0.07;
}

.GGMX-leadCard > * {
  position: relative;
  z-index: 1;
}

.GGMX-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-size: 17px;
}

.GGMX-leadCard h4 {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1.12em;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.GGMX-leadCard p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45em;
}

.GGMX-careerStrip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
}

.GGMX-careerStrip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 100px;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--divider-color);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
}

.GGMX-careerStrip span:first-child {
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.GGMX-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.GGMX-actions .btn-default {
  min-width: 230px;
}

@media only screen and (max-width: 1199px) {
  .GGMX-visual {
    padding-right: 0;
  }

  .GGMX-content {
    padding-left: 0;
  }

  .GGMX-namePlate h3 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 991px) {
  .GGMX-manager {
    padding: 70px 0;
  }

  .GGMX-photoCard img {
    aspect-ratio: 1 / 1;
  }

  .GGMX-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .GGMX-manager {
    padding: 55px 0;
  }

  .GGMX-photoCard,
  .GGMX-photoCard figure,
  .GGMX-photoCard img {
    border-radius: 18px;
  }

  .GGMX-photoCard img {
    aspect-ratio: 1 / 1.05;
  }

  .GGMX-namePlate {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .GGMX-namePlate h3 {
    font-size: 31px;
  }

  .GGMX-expSeal {
    width: 88px;
    height: 88px;
    top: 14px;
    right: 14px;
    border-width: 4px;
  }

  .GGMX-expSeal strong {
    font-size: 28px;
  }

  .GGMX-expSeal span {
    font-size: 8px;
  }

  .GGMX-miniInfo,
  .GGMX-facts,
  .GGMX-leadGrid {
    grid-template-columns: 1fr;
  }

  .GGMX-summaryBox {
    padding: 18px;
  }

  .GGMX-summaryBox p {
    font-size: 14px;
    line-height: 1.55em;
  }

  .GGMX-leadCard {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 15px;
  }

  .GGMX-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .GGMX-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .GGMX-actions .btn-default {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

@media only screen and (max-width: 575px) {
  .GGMX-namePlate h3 {
    font-size: 28px;
  }

  .GGMX-leadCard {
    grid-template-columns: 1fr;
  }

  .GGMX-icon {
    margin-bottom: 2px;
  }
}

/* =========================================================
   Gold's Gym Ranchi - Trainer Page Club Manager Short Section
   Prefix: GGCM
   Width matched with GGR shell / navbar layout
========================================================= */

.GGCM-section {
  position: relative;
  padding: 55px 0;
  background:
    radial-gradient(
      circle at 14% 50%,
      rgba(255, 232, 0, 0.075),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 50%,
      rgba(255, 255, 255, 0.045),
      transparent 32%
    );
  overflow: hidden;
}

.GGCM-shell {
  width: min(
    var(--GGR-contentW, 1300px),
    calc(100% - (var(--GGR-contentPad, 18px) * 2))
  );
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
}

.GGCM-card {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--divider-color);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ),
    var(--secondary-color);
  overflow: hidden;
}

.GGCM-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 232, 0, 0.075),
    transparent 35%,
    rgba(255, 255, 255, 0.035)
  );
  pointer-events: none;
}

.GGCM-photo,
.GGCM-content,
.GGCM-action {
  position: relative;
  z-index: 1;
}

.GGCM-photo {
  position: relative;
  width: 190px;
  height: 210px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--divider-color);
  background: var(--accent-secondary-color);
}

.GGCM-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.GGCM-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(23, 30, 46, 0.88) 100%
  );
  pointer-events: none;
}

.GGCM-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 100px;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.GGCM-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.GGCM-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent-color);
}

.GGCM-content h2 {
  font-size: 36px;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.GGCM-content h2 span {
  color: var(--accent-color);
}

.GGCM-content h3 {
  color: var(--white-color);
  font-size: 24px;
  line-height: 1.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.GGCM-content p {
  max-width: 760px;
  margin: 0;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6em;
}

.GGCM-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.GGCM-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 100px;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--divider-color);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2em;
}

.GGCM-action {
  display: flex;
  justify-content: flex-end;
}

.GGCM-action .btn-default {
  white-space: nowrap;
}

@media only screen and (max-width: 991px) {
  .GGCM-card {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .GGCM-action {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .GGCM-photo {
    width: 160px;
    height: 190px;
  }
}

@media only screen and (max-width: 767px) {
  .GGCM-section {
    padding: 45px 0;
  }

  .GGCM-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .GGCM-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.78;
  }

  .GGCM-content h2 {
    font-size: 30px;
  }

  .GGCM-content h3 {
    font-size: 22px;
  }

  .GGCM-action .btn-default {
    width: 100%;
    justify-content: center;
  }
}

@media only screen and (max-width: 575px) {
  .GGCM-shell {
    width: min(
      var(--GGR-contentW, 1300px),
      calc(100% - (var(--GGR-contentPad, 18px) * 2))
    );
  }

  .GGCM-content p {
    font-size: 14px;
    line-height: 1.55em;
  }

  .GGCM-tags span {
    font-size: 11px;
  }
}

/* =========================================================
   Gold's Gym Ranchi - Cleanliness & Care Team Section
   Prefix: GGHYG
   Page: About
========================================================= */

.GGHYG-section {
  position: relative;
  padding: 90px 0;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(255, 232, 0, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(255, 255, 255, 0.04),
      transparent 34%
    ),
    var(--accent-secondary-color);
  overflow: hidden;
}

.GGHYG-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/section-bg-circle-shape.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  opacity: 0.32;
  pointer-events: none;
}

.GGHYG-section .container {
  position: relative;
  z-index: 1;
}

.GGHYG-row {
  row-gap: 42px;
}

.GGHYG-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 295px 330px;
  gap: 16px;
  padding-right: 12px;
}

.GGHYG-img {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}

.GGHYG-img figure {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.GGHYG-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.GGHYG-img:hover img {
  transform: scale(1.035);
}

.GGHYG-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(23, 30, 46, 0.72) 100%),
    radial-gradient(circle at 26% 14%, rgba(255, 232, 0, 0.1), transparent 42%);
  pointer-events: none;
}

.GGHYG-imgMain {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.GGHYG-imgSide {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.GGHYG-imgWide {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.GGHYG-imgLabel {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
}

.GGHYG-imgLabel span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 100px;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.GGHYG-teamBadge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 340px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 232, 0, 0.25);
  background: rgba(23, 30, 46, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.GGHYG-teamBadge strong {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-family: var(--accent-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05em;
  text-align: center;
  text-transform: uppercase;
}

.GGHYG-teamBadge span {
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: uppercase;
}

.GGHYG-content {
  padding-left: 12px;
}

.GGHYG-titleBlock {
  margin-bottom: 22px;
}

.GGHYG-titleBlock h2 {
  margin-bottom: 18px;
}

.GGHYG-titleBlock p {
  max-width: 720px;
  margin: 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.65em;
}

.GGHYG-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.GGHYG-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  min-height: 126px;
  padding: 17px;
  border-radius: 17px;
  border: 1px solid var(--divider-color);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}

.GGHYG-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  opacity: 0;
  transition: all 0.35s ease-in-out;
}

.GGHYG-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 232, 0, 0.34);
}

.GGHYG-card:hover::before {
  opacity: 0.07;
}

.GGHYG-card > * {
  position: relative;
  z-index: 1;
}

.GGHYG-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-size: 18px;
}

.GGHYG-card h4 {
  color: var(--accent-color);
  font-size: 19px;
  line-height: 1.12em;
  text-transform: capitalize;
  margin-bottom: 6px;
}

.GGHYG-card p {
  margin: 0;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.45em;
}

.GGHYG-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.GGHYG-proofItem {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(255, 232, 0, 0.2);
  background:
    linear-gradient(
      135deg,
      rgba(255, 232, 0, 0.075),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(255, 255, 255, 0.035);
}

.GGHYG-proofItem i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--accent-secondary-color);
  background: var(--accent-color);
  font-size: 14px;
}

.GGHYG-proofItem span {
  color: var(--white-color);
  font-family: var(--accent-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
  text-transform: capitalize;
}

.GGHYG-action {
  margin-top: 22px;
}

@media only screen and (max-width: 1199px) {
  .GGHYG-gallery {
    grid-template-rows: 270px 305px;
    padding-right: 0;
  }

  .GGHYG-content {
    padding-left: 0;
  }

  .GGHYG-highlights {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .GGHYG-section {
    padding: 76px 0;
  }

  .GGHYG-gallery {
    grid-template-rows: 285px 320px;
  }

  .GGHYG-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .GGHYG-section {
    padding: 58px 0;
  }

  .GGHYG-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .GGHYG-imgMain,
  .GGHYG-imgSide,
  .GGHYG-imgWide {
    grid-column: auto;
    grid-row: auto;
  }

  .GGHYG-img {
    aspect-ratio: 1 / 0.9;
    border-radius: 18px;
  }

  .GGHYG-imgWide {
    aspect-ratio: 1 / 0.72;
  }

  .GGHYG-img figure,
  .GGHYG-img img {
    border-radius: 18px;
  }

  .GGHYG-teamBadge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .GGHYG-highlights,
  .GGHYG-proof {
    grid-template-columns: 1fr;
  }

  .GGHYG-card {
    min-height: auto;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 16px;
  }

  .GGHYG-icon {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .GGHYG-action .btn-default {
    width: 100%;
    justify-content: center;
  }
}

@media only screen and (max-width: 575px) {
  .GGHYG-titleBlock p {
    font-size: 15px;
    line-height: 1.58em;
  }

  .GGHYG-card {
    grid-template-columns: 1fr;
  }

  .GGHYG-icon {
    margin-bottom: 2px;
  }

  .GGHYG-teamBadge strong {
    width: 58px;
    height: 58px;
    font-size: 12px;
  }

  .GGHYG-teamBadge span {
    font-size: 15px;
  }
}
