.tgtg-promo {
  padding: 50px 0;
  margin: 30px 0;
  background: linear-gradient(180deg, #f3efe6 0%, #faf8f2 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.tgtg-promo__inner {
  width: min(calc(100% - 56px), 1380px);
  margin-inline: auto;
}

.tgtg-promo__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, 0.55fr);
  min-height: 157px;
  overflow: hidden;
  border: 1px solid rgba(0, 88, 88, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 255, 255, 0.22),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #005f5f 0%,
      #007c78 52%,
      #00a79d 100%
    );
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(0, 73, 73, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tgtg-promo__card:hover,
.tgtg-promo__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0, 73, 73, 0.24);
}

.tgtg-promo__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 50px;
}

.tgtg-promo__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tgtg-promo h2 {
  max-width: 680px;
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.tgtg-promo p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
}

.tgtg-promo__button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  min-height: 46px;
  margin-top: 16px;
  padding: 6px 18px 6px 8px;
  border-radius: 999px;
  background: #fff;
  color: #005f5f;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
}

.tgtg-promo__button img {
  width: 34px;
  height: 34px;
  padding: 4px;
  border-radius: 50%;
  object-fit: contain;
  background: #f1fbfa;
}

.tgtg-promo__arrow {
  font-size: 20px;
  line-height: 1;
}

.tgtg-promo__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 157px;
  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.05) 45%,
      transparent 70%
    );
}

.tgtg-promo__visual::before,
.tgtg-promo__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.tgtg-promo__visual::before {
  width: 210px;
  height: 210px;
}

.tgtg-promo__visual::after {
  width: 155px;
  height: 155px;
}

.tgtg-promo__visual img {
  position: relative;
  z-index: 1;
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .tgtg-promo {
    padding: 44px 0;
    margin: 30px 0;
  }

  .tgtg-promo__inner {
    width: min(calc(100% - 36px), 720px);
  }

  .tgtg-promo__card {
    grid-template-columns: minmax(0, 1fr) 180px;
    min-height: 157px;
  }

  .tgtg-promo__copy {
    padding: 22px 28px;
  }

  .tgtg-promo__eyebrow {
    margin-bottom: 7px;
    padding: 5px 11px;
    font-size: 10px;
  }

  .tgtg-promo h2 {
    font-size: clamp(25px, 4vw, 32px);
  }

  .tgtg-promo p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.35;
  }

  .tgtg-promo__button {
    min-height: 40px;
    margin-top: 12px;
    font-size: 13px;
  }

  .tgtg-promo__button img {
    width: 29px;
    height: 29px;
  }

  .tgtg-promo__visual {
    min-height: 157px;
  }

  .tgtg-promo__visual::before {
    width: 145px;
    height: 145px;
  }

  .tgtg-promo__visual::after {
    width: 105px;
    height: 105px;
  }

  .tgtg-promo__visual img {
    width: 105px;
  }
}

@media (max-width: 620px) {
  .tgtg-promo {
    padding: 28px 0;
    margin: 30px 0;
  }

  .tgtg-promo__inner {
    width: calc(100% - 24px);
  }

  .tgtg-promo__card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 18px;
  }

  .tgtg-promo__visual {
    order: -1;
    min-height: 92px;
    padding-top: 8px;
  }

  .tgtg-promo__visual::before {
    width: 92px;
    height: 92px;
  }

  .tgtg-promo__visual::after {
    width: 66px;
    height: 66px;
  }

  .tgtg-promo__visual img {
    width: 72px;
  }

  .tgtg-promo__copy {
    align-items: center;
    padding: 12px 18px 20px;
    text-align: center;
  }

  .tgtg-promo__eyebrow {
    align-self: center;
    margin-bottom: 7px;
    padding: 4px 9px;
    font-size: 9px;
    letter-spacing: 0.055em;
  }

  .tgtg-promo h2 {
    max-width: 330px;
    font-size: clamp(23px, 7.5vw, 28px);
    line-height: 1.08;
  }

  .tgtg-promo p {
    max-width: 350px;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .tgtg-promo__button {
    align-self: stretch;
    justify-content: center;
    min-height: 42px;
    margin-top: 12px;
    padding: 5px 14px 5px 6px;
    font-size: 13px;
  }

  .tgtg-promo__button img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 380px) {
  .tgtg-promo__inner {
    width: calc(100% - 18px);
  }

  .tgtg-promo__copy {
    padding-inline: 14px;
  }

  .tgtg-promo h2 {
    font-size: 22px;
  }

  .tgtg-promo p {
    font-size: 12.5px;
  }
}
