.wgm-about {
  --wgm-about-blue: var(--wgm-theme-navy, #12364f);
  --wgm-about-yellow: var(--wgm-theme-accent, #ffc815);
  --wgm-about-gray: #e5dcdc;
  --wgm-about-white: #ffffff;
  position: relative;
  padding: 86px 0;
  overflow: hidden;
  background: #f7f8f8;
  border-bottom: 1px solid #e2e6e8;
}

.wgm-about::before {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(18, 54, 79, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(18, 54, 79, 0.025),
    0 0 0 76px rgba(255, 200, 21, 0.035);
}

.wgm-about__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.wgm-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: stretch;
}

.wgm-about__media {
  position: relative;
  display: flex;
}

.wgm-about__video-frame {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  aspect-ratio: auto;
  background: var(--wgm-about-blue);
  border: 10px solid var(--wgm-about-white);
  border-top: 10px solid var(--wgm-about-blue);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(18, 54, 79, 0.19);
}

.wgm-about__video-frame::before {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 3;
  width: 112px;
  height: 10px;
  content: "";
  background: var(--wgm-about-yellow);
}

.wgm-about__video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.wgm-about__media-accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 58%;
  height: 52%;
  background: var(--wgm-about-yellow);
  border-radius: 0 0 18px;
}

.wgm-about__content {
  position: relative;
  padding: clamp(32px, 3.3vw, 42px);
  background: var(--wgm-about-white);
  border: 1px solid var(--wgm-about-gray);
  border-top: 4px solid var(--wgm-about-yellow);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(18, 54, 79, 0.1);
}

.wgm-about__content::after {
  position: absolute;
  right: 26px;
  bottom: 18px;
  color: var(--wgm-about-blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  content: "WGM";
  pointer-events: none;
  opacity: 0.035;
}

.wgm-about__accent {
  display: block;
  width: 56px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--wgm-about-yellow);
}

.wgm-about__title {
  margin: 0;
  color: var(--wgm-about-blue);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(30px, 2.45vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.14;
  text-wrap: pretty;
}

.wgm-about__title span {
  color: #20262b;
}

.wgm-about__text {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: #52616d;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.62;
}

.wgm-about__text p {
  margin: 0;
  font-weight: 400 !important;
}

.wgm-about__text p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e6eaec;
}

.wgm-about__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 176px;
  min-height: 52px;
  margin-top: 26px;
  padding: 13px 15px 13px 22px;
  color: var(--wgm-about-blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--wgm-about-yellow);
  border: 1px solid var(--wgm-about-yellow);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(18, 54, 79, 0.13);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.wgm-about__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  margin-left: 18px;
  font-size: 18px;
  font-weight: 400;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.wgm-about__cta:hover,
.wgm-about__cta:focus {
  color: var(--wgm-about-white);
  text-decoration: none;
  background: var(--wgm-about-blue);
  border-color: var(--wgm-about-blue);
  transform: translateY(-2px);
}

.wgm-about__cta:focus-visible {
  outline: 3px solid rgba(255, 200, 21, 0.72);
  outline-offset: 4px;
}

@media (max-width: 991px) {
  .wgm-about {
    padding: 70px 0;
  }

  .wgm-about__layout {
    grid-template-columns: 1fr;
    gap: 42px;
    align-items: start;
  }

  .wgm-about__media,
  .wgm-about__content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }

  .wgm-about__media {
    display: block;
    padding: 0 18px 18px 0;
  }

  .wgm-about__video-frame {
    min-height: 0;
    aspect-ratio: 5 / 4;
  }

  .wgm-about__media-accent {
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 575px) {
  .wgm-about {
    padding: 54px 0;
  }

  .wgm-about__container {
    padding: 0 12px;
  }

  .wgm-about__layout {
    gap: 32px;
  }

  .wgm-about__media {
    padding: 0 10px 10px 0;
  }

  .wgm-about__video-frame {
    border-width: 7px;
    border-top-width: 8px;
    border-radius: 12px;
  }

  .wgm-about__content {
    padding: 30px 24px;
  }

  .wgm-about__title {
    font-size: 29px;
  }

  .wgm-about__text {
    font-size: 14px;
    line-height: 1.65;
  }

  .wgm-about__content::after {
    right: 18px;
    font-size: 54px;
  }
}
