.sg-snippet,
.sg-snippet * {
  box-sizing: border-box;
}
.sg-snippet {
  width: 100%;
  padding: 105px 16px 120px;
  font-family: "Noto Sans Display", Arial, sans-serif;
  color: #ffffff;
  background: linear-gradient(180deg, #204f2a 0%, #21512b 100%);
}
.sg-snippet__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.sg-snippet__hero {
  text-align: center;
  margin-bottom: 48px;
}
.sg-snippet__title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}
.sg-snippet__text {
  margin: 30px auto 0;
  max-width: 920px;
  font-size: clamp(1.1rem, 2.4vw, 1.9rem);
  line-height: 1.55;
  font-weight: 400;
  color: #ffffff;
}
.sg-snippet__note {
  display: block;
  margin-top: 12px;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
}
.sg-snippet__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 30px;
}
.sg-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 11, 48, 0.22);
  color: inherit;
  text-decoration: none;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease;
}
.sg-card.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.sg-card:hover,
.sg-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 11, 48, 0.28);
}
.sg-card:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}
.sg-card__logo {
  background: #ffffff;
  aspect-ratio: 10 / 7;
  padding: 24px;
}
.sg-card__logo svg {
  display: block;
  width: 100%;
  height: 100%;
}
.sg-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 24px;
  background: #7fca3f;
  text-align: center;
}
.sg-card__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}
.sg-card__logo.logo-1 {
background-image: url('/upload/medialibrary/ae1/d3nshwlb4ezdkt8i30bntozpzxvoj8x9/RUStore-1.png');
}
.sg-card__logo.logo-2 {
background-image: url('/upload/medialibrary/5d8/v2m2hmcqq7dii2y3z2kk1nffygbh0wa3/google_play-1.png');
}
.sg-card__logo.logo-3 {
background-image: url('/upload/medialibrary/e42/7vii15qipvm9k9a07xgcmlu8i16qylgl/app_store-1.png');
}
@media (max-width: 960px) {
  .sg-snippet {
    padding-top: 90px;
  }
  .sg-snippet__cards {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .sg-snippet {
    padding-bottom: 90px;
  }
  .sg-card__body {
    min-height: 90px;
  }
}