*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

:root {
  --primary: #FA6633;
  --secondary: #1C1C1C;
  --bg-0: #1C1C1C;
  --bg-1: #141414;
  --bg-2: #0f0f0f;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.82);
  --muted-2: rgba(255,255,255,0.68);
  --line: rgba(255,255,255,0.10);
  --line-2: rgba(255,255,255,0.14);
  --shadow: 0 18px 46px rgba(0,0,0,0.45);
  --radius-1: 12px;
  --radius-2: 16px;
  --radius-3: 20px;
  --container: 1200px;
  --pad-x: 16px;
  --gap: 24px;
  color-scheme: dark;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  min-width: 0;
}

.main {
  width: 100%;
  max-width: 100%;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--primary);
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 10000;
  outline: 2px solid rgba(0,0,0,0.25);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 28, 28, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand__logo {
  width: min(240px, 48vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  min-width: 0;
}

.nav__link {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
  opacity: 0.9;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
.nav__link:hover {
  background: rgba(255,255,255,0.06);
  opacity: 1;
}
.nav__link:active {
  transform: translateY(1px);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.burger:active {
  transform: translateY(1px);
}
.burger__lines,
.burger__lines::before,
.burger__lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  position: relative;
}
.burger__lines::before {
  position: absolute;
  top: -6px;
  left: 0;
}
.burger__lines::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.mobileMenu {
  background: rgba(20,20,20,0.98);
  border-top: 1px solid var(--line);
}
.mobileMenu__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 0 18px;
  min-width: 0;
}
.mobileMenu__link {
  font-size: 16px;
  font-weight: 900;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.mobileMenu__cta {
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
  cursor: pointer;
  user-select: none;
  transform: translateZ(0);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  box-shadow: 0 10px 0 rgba(0,0,0,0.35);
  min-width: 0;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(2px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.35);
}
.btn--primary {
  color: #0b0b0b;
  background: linear-gradient(180deg, #ff7a4d 0%, var(--primary) 55%, #e85422 100%);
  border: 1px solid rgba(0,0,0,0.25);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #ff8a63 0%, #ff6f3f 55%, #ef5b28 100%);
}
.btn--ghost {
  background: rgba(250,102,51,0.06);
  color: var(--primary);
  border: 2px solid rgba(250,102,51,0.9);
  box-shadow: 0 10px 0 rgba(0,0,0,0.25);
}
.btn--ghost:hover {
  background: rgba(250,102,51,0.12);
}
.btn--lg {
  min-height: 56px;
  padding: 14px 20px;
  font-size: 16px;
}

.topBanner {
  width: 100%;
  max-width: 100%;
}
.topBanner__link {
  display: block;
}
.media {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.topBanner__media {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: #0f0f0f;
  max-height: 420px;
}
.topBanner__media img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.section {
  padding: 64px 0;
  width: 100%;
  max-width: 100%;
}
.section--alt {
  background: var(--bg-1);
}
.section--cta {
  background: radial-gradient(1200px 420px at 50% 0%, rgba(250,102,51,0.40) 0%, rgba(28,28,28,0.9) 55%, var(--bg-0) 100%);
}

.section__head {
  width: 100%;
  max-width: 860px;
  margin: 0 0 34px;
}
.section__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.2px;
}
.section__subtitle {
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 48px 0 56px;
}
.hero__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-width: 0;
}
.hero__content {
  min-width: 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,0.92);
}
.hero__title {
  margin: 16px 0 0;
  font-size: clamp(30px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.4px;
}
.hero__titleAccent {
  color: var(--primary);
  font-weight: 900;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
  min-width: 0;
}
.hero__note {
  margin: 12px 0 0;
  color: var(--muted-2);
}

.hero__mediaLink {
  display: block;
  min-width: 0;
}
.hero__media {
  max-height: 520px;
}
.hero__media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.trustCard {
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-2);
  padding: 14px;
}
.trustCard__kpi {
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.trustCard__txt {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.grid {
  display: grid;
  gap: var(--gap);
  min-width: 0;
}
.grid > * {
  min-width: 0;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-2);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.card:active {
  transform: translateY(1px);
}
.card__title {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.25;
}
.card__text {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  min-width: 0;
}
.split__content {
  min-width: 0;
}
.split__content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}
.split__content p {
  margin: 0 0 12px;
  color: var(--muted);
}
.split__mediaLink {
  display: block;
  min-width: 0;
}

.mediaCard {
  min-width: 0;
  border-radius: var(--radius-3);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease;
}
.mediaCard:active {
  transform: translateY(1px);
}
.mediaCard__media {
  border-radius: 0;
  border: 0;
  background: #0f0f0f;
}
.mediaCard__media img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.mediaCard__body {
  padding: 16px;
}
.mediaCard__title {
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--primary);
}
.mediaCard__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section__ctaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  min-width: 0;
}

.promoBox {
  min-width: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-3);
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.promoBox__top {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.promoTag {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(250,102,51,0.12);
  border: 1px solid rgba(250,102,51,0.38);
  font-weight: 900;
  font-size: 12px;
  color: rgba(255,255,255,0.92);
}
.promoValue {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary);
}
.promoBox__text {
  margin: 0 0 14px;
  color: var(--muted);
}
.promoBox__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.list {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list__item {
  padding-left: 14px;
  position: relative;
  color: var(--muted);
  min-width: 0;
}
.list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.noteBox {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.noteBox__text {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-2);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  min-width: 0;
}
.step__num {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(250,102,51,0.14);
  border: 1px solid rgba(250,102,51,0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
}
.step__body {
  min-width: 0;
}
.step__title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: 18px;
}
.step__text {
  margin: 0;
  color: var(--muted);
}

.disclaimer {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.disclaimer__text {
  margin: 0;
  color: var(--muted-2);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.faq__item {
  min-width: 0;
  padding: 18px;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.faq__q {
  margin: 0 0 8px;
  font-weight: 900;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.25;
}
.faq__a {
  margin: 0;
  color: var(--muted);
}

.ctaBox {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 56px) clamp(16px, 3vw, 28px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(20,20,20,0.86);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 0;
}
.ctaBox__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
}
.ctaBox__accent {
  color: #0b0b0b;
  background: var(--primary);
  padding: 0 8px;
  border-radius: 8px;
  display: inline-block;
}
.ctaBox__text {
  margin: 10px auto 0;
  max-width: 760px;
  color: var(--muted);
}
.ctaBox__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  min-width: 0;
}

.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 44px 0 22px;
}
.footer__inner {
  display: grid;
  gap: 26px;
  min-width: 0;
}
.footer__brand {
  width: fit-content;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}
.footer__col {
  min-width: 0;
  padding: 16px;
  border-radius: var(--radius-2);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.footer__title {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--primary);
}
.footer__text {
  margin: 0;
  color: var(--muted);
}
.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer__list a {
  display: inline-flex;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
}
.footer__list a:active {
  transform: translateY(1px);
}
.footer__bottom {
  padding-top: 8px;
}
.footer__copy {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
}

@media (max-width: 1024px) {
  .nav {
    max-width: 44vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 880px) {
  .hero__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .burger {
    display: inline-flex;
  }
  .nav {
    display: none;
  }
  .header__actions .btn--ghost {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    padding: 34px 0 46px;
  }
  .hero__inner,
  .split,
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .hero__media {
    max-height: 420px;
  }
  .hero__media img {
    max-height: 420px;
  }

  .hero__cta .btn,
  .section__ctaRow .btn,
  .promoBox__cta .btn,
  .ctaBox__actions .btn {
    width: 100%;
  }

  .hero__trust {
    grid-template-columns: 1fr;
  }

  .promoBox {
    padding: 20px;
  }
  .card {
    padding: 18px;
  }
  .step {
    padding: 16px;
  }

  .footer__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-x: 14px;
    --gap: 18px;
  }
  .section {
    padding: 46px 0;
  }
  .btn {
    width: 100%;
  }
  .header__inner {
    gap: 10px;
  }
  .brand__logo {
    width: min(210px, 58vw);
  }
  .topBanner__media,
  .topBanner__media img {
    max-height: 320px;
  }
}
.mostbet-engagement{
  padding:3rem 0;
  background:
    radial-gradient(720px 360px at 14% 12%, rgba(250,77,0,.07), transparent 62%),
    radial-gradient(680px 360px at 88% 28%, rgba(255,255,255,.04), transparent 64%),
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0));
  color:#eaf2ff;
}
.mostbet-engagement__wrap{
  width:min(1180px, calc(100% - 2rem));
  margin:0 auto;
}
.mostbet-engagement__head{
  margin-bottom:1.4rem;
}
.mostbet-engagement__title{
  margin:0 0 .8rem;
  font-size:clamp(1.55rem, 1.05rem + 1.3vw, 2.18rem);
  line-height:1.18;
  font-weight:1100;
}
.mostbet-engagement__lead{
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(560px 260px at 18% 14%, rgba(250,77,0,.10), transparent 62%),
    rgba(255,255,255,.035);
  border-radius:22px;
  padding:1.1rem 1.15rem;
  color:rgba(234,242,255,.88);
  font-size:1.02rem;
  line-height:1.72;
  box-shadow:0 14px 42px rgba(0,0,0,.36);
}
.mostbet-engagement__article{
  margin-top:1.4rem;
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(620px 320px at 100% 10%, rgba(250,77,0,.05), transparent 62%),
    rgba(255,255,255,.025);
  border-radius:22px;
  padding:1.15rem 1.15rem 1.05rem;
  box-shadow:0 14px 42px rgba(0,0,0,.32);
}
.mostbet-engagement__sub{
  margin:.1rem 0 .7rem;
  font-size:clamp(1.18rem, .95rem + .7vw, 1.42rem);
  line-height:1.25;
  font-weight:1100;
  color:#fff;
}
.mostbet-engagement__sub-sm{
  margin:1.1rem 0 .55rem;
  font-size:1.06rem;
  font-weight:1050;
  color:#fff;
}
.mostbet-engagement__p{
  margin:.6rem 0;
  color:rgba(234,242,255,.86);
  line-height:1.74;
}
.mostbet-engagement__aside{
  margin-top:1rem;
  border:1px dashed rgba(250,77,0,.42);
  background:rgba(250,77,0,.06);
  border-radius:18px;
  padding:.95rem 1.05rem;
}
.mostbet-engagement__aside-title{
  font-weight:1100;
  letter-spacing:.15px;
  margin-bottom:.25rem;
  color:#fff;
}
.mostbet-engagement__levels{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:.8rem;
  margin-top:.95rem;
}
.mostbet-engagement__level{
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(320px 160px at 0% 0%, rgba(250,77,0,.08), transparent 60%),
    rgba(255,255,255,.03);
  border-radius:16px;
  padding:.95rem 1rem;
}
.mostbet-engagement__level-name{
  font-weight:1100;
  margin-bottom:.3rem;
  color:#fff;
}
.mostbet-engagement__level-desc{
  margin:0;
  color:rgba(234,242,255,.80);
  font-size:.96rem;
  line-height:1.6;
}
.mostbet-engagement__list{
  margin:.8rem 0 .2rem;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}
.mostbet-engagement__list-item{
  position:relative;
  padding:.65rem .85rem .65rem 2.05rem;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.025);
  border-radius:14px;
  color:rgba(234,242,255,.86);
  line-height:1.6;
}
.mostbet-engagement__list-item::before{
  content:"›";
  position:absolute;
  left:.85rem;
  top:.6rem;
  width:1.05rem;
  height:1.05rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fa4d00;
  font-weight:1100;
  font-size:1.15rem;
  line-height:1;
}
.mostbet-engagement__list-item strong{
  color:#fff;
}
.mostbet-engagement__cta{
  margin-top:1.4rem;
  border:1px solid rgba(250,77,0,.28);
  background:
    radial-gradient(520px 240px at 18% 18%, rgba(250,77,0,.12), transparent 62%),
    rgba(255,255,255,.03);
  border-radius:22px;
  padding:1rem 1.1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  box-shadow:0 14px 42px rgba(0,0,0,.36);
}
.mostbet-engagement__cta-text{
  color:rgba(234,242,255,.88);
  font-weight:880;
  line-height:1.55;
  flex:1 1 auto;
}
.mostbet-engagement__cta-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.78rem 1.05rem;
  border-radius:999px;
  border:1px solid rgba(250,77,0,.58);
  background:
    radial-gradient(110px 70px at 20% 30%, rgba(255,255,255,.22), transparent 60%),
    linear-gradient(135deg, rgba(250,77,0,.98), rgba(250,77,0,.70));
  color:#081628;
  font-weight:1050;
  letter-spacing:.12px;
  white-space:nowrap;
  text-decoration:none;
  box-shadow:0 14px 38px rgba(250,77,0,.18), 0 12px 36px rgba(0,0,0,.28);
  transition:transform .12s ease, filter .12s ease;
}
.mostbet-engagement__cta-link:hover{
  transform:translateY(-1px);
  filter:saturate(1.04);
}

@media (max-width: 900px){
  .mostbet-engagement{ padding:2.4rem 0; }
  .mostbet-engagement__levels{ grid-template-columns:1fr; }
  .mostbet-engagement__cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .mostbet-engagement__cta-link{
    width:100%;
  }
}

@media (max-width: 560px){
  .mostbet-engagement__lead{ padding:1rem; }
  .mostbet-engagement__article{ padding:1rem; }
  .mostbet-engagement__list-item{
    padding:.6rem .75rem .6rem 1.85rem;
  }
}