.app-promo {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(92, 59, 224, .16);
  background: #f4f0ff;
  color: #241d2b;
}

.app-promo-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
}

.app-promo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: #5c3be0;
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(92, 59, 224, .22);
}

.app-promo b,
.app-promo small { display: block; }
.app-promo b { margin-bottom: 3px; font-size: 14px; }
.app-promo small { color: #756d7c; font-size: 11px; line-height: 1.4; }

.app-promo a {
  min-height: 43px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 13px;
  color: white;
  background: #241d2b;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.app-promo a span { color: #d6c9ff; font-size: 17px; }

@media (max-width: 720px) {
  .app-promo-inner {
    width: min(100% - 28px, 560px);
    grid-template-columns: 40px 1fr;
    padding: 13px 0;
  }
  .app-promo-icon { width: 38px; height: 38px; }
  .app-promo a { grid-column: 1 / -1; width: 100%; }
}
