/* ============ RESET / BASE ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #121212;
  background: #ffffff;
  overflow-x: hidden; /* critical: prevent horizontal scroll */
}

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

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

:root{
  --red: #e1062b;
  --red2:#c70022;
  --white:#ffffff;
  --ink:#111;
  --muted:#5a5a5a;
  --bg:#ffffff;
  --soft:#fff1f3;
  --line:#f0f0f0;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --radius: 18px;
  --radius2: 12px;
  --container: 1140px;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Skip link */
.skip{
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip:focus{ left: 16px; }

/* ============ BUTTONS ============ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .2px;
  user-select: none;
  transition: transform .08s ease, background .15s ease, border-color .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn--sm{ padding: 9px 12px; font-weight: 800; }
.btn--lg{ padding: 14px 18px; }

.btn--block{ width: 100%; }

.btn--main{
  background: linear-gradient(180deg, var(--red), var(--red2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(225, 6, 43, .22);
}
.btn--main:hover{ opacity: .95; }

.btn--soft{
  background: var(--soft);
  color: var(--red);
  border-color: rgba(225,6,43,.22);
}
.btn--soft:hover{ background: #ffe6ea; }

.btn--ghost{
  background: #fff;
  border-color: rgba(0,0,0,.14);
  color: #111;
}
.btn--ghost:hover{ border-color: rgba(0,0,0,.22); }

/* ============ TOPBAR ============ */
.topbar{
  background: #0f0f10;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.topbar__left{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.topbar__right{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Pills */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.pill--soft{ background: rgba(255,255,255,.06); }
.dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #2cff7a;
  box-shadow: 0 0 0 3px rgba(44,255,122,.12);
}

/* ============ HEADER ============ */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 240px;
}
.brand__logo{
  width: 92px; /* big logo */
  height: 54px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.brand__logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand__meta{ display:flex; flex-direction:column; gap: 2px; }
.brand__title{ font-weight: 900; letter-spacing: .2px; }
.brand__sub{ color: var(--muted); font-size: 12px; font-weight: 700; }

.nav{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav__link{
  font-weight: 800;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #222;
}
.nav__link:hover{
  border-color: rgba(0,0,0,.10);
  background: #fafafa;
}
.nav__link--hot{
  color: var(--red);
  background: var(--soft);
  border-color: rgba(225,6,43,.18);
}
.header__cta{ display:flex; gap: 10px; align-items:center; }

/* ============ HERO ============ */
.hero{
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(225,6,43,.10), transparent 60%),
    radial-gradient(900px 420px at 85% 30%, rgba(225,6,43,.08), transparent 65%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  padding: 26px 0 26px;
}
.hero__badge{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid transparent;
}
.tag--main{ background: var(--red); color: #fff; }
.tag--light{ background: #fff; color: #111; border-color: rgba(0,0,0,.12); }

h1{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.5px;
}
.lead{
  margin: 0 0 14px;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.hero__mini{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
.miniKpi{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
}
.miniKpi b{ display:block; font-size: 12px; color:#111; }
.miniKpi span{ display:block; font-size: 12px; color: var(--muted); margin-top: 4px; }

.offerCard{
  border-radius: var(--radius);
  border: 1px solid rgba(225,6,43,.18);
  background: linear-gradient(180deg, #fff, #fff7f8);
  padding: 16px;
  box-shadow: 0 18px 30px rgba(225,6,43,.08);
}
.offerCard__top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.offerCard__top b{ font-size: 16px; }
.offerCard__top span{ color: var(--muted); font-weight: 800; font-size: 13px; }
.offerCard__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.offerCard__big{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 14px;
  padding: 12px;
}
.offerCard__k{ display:block; color: var(--muted); font-weight: 900; font-size: 12px; }
.offerCard__v{ display:block; font-weight: 1000; font-size: 30px; color: var(--red); letter-spacing: -0.6px; }
.offerCard__s{ display:block; color:#333; font-weight: 800; font-size: 12px; margin-top: 2px; }
.offerCard__p{
  margin: 12px 0 0;
  color: #2a2a2a;
  line-height: 1.55;
}

.fine{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.hero__side{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.sideCard{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
}
.sideCard__title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.sideCard p{
  margin: 0 0 12px;
  color: #2a2a2a;
  line-height: 1.6;
}
.sideCard--ghost{
  background: #0f0f10;
  color: #fff;
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.sideCard--ghost .bullet__dot{ background: var(--red); box-shadow: 0 0 0 3px rgba(225,6,43,.22); }

.bullets{ display:flex; flex-direction:column; gap: 10px; }
.bullet{ display:flex; gap: 10px; align-items:flex-start; }
.bullet__dot{ width: 9px; height: 9px; border-radius: 99px; margin-top: 4px; background: #2cff7a; }

/* ============ MAIN GRID ============ */
.section{ padding: 22px 0 34px; }

.grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  align-items:start;
}

.card{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  min-width: 0; /* critical for overflow */
}

.card h2{
  margin: 8px 0 10px;
  font-size: 20px;
  letter-spacing: -0.2px;
}
.card h3{
  margin: 14px 0 8px;
  font-size: 16px;
  letter-spacing: -0.1px;
}
.card p{
  margin: 0 0 10px;
  color: #2a2a2a;
  line-height: 1.7;
}

.list{
  margin: 0 0 12px;
  padding-left: 18px;
  color: #2a2a2a;
  line-height: 1.7;
}
.steps{
  margin: 0 0 12px;
  padding-left: 20px;
  line-height: 1.7;
}
.steps li{ margin-bottom: 6px; }

.tableWrap{
  overflow: auto; /* allow table scroll inside only */
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  margin: 10px 0 14px;
  -webkit-overflow-scrolling: touch;
}
.table{
  border-collapse: collapse;
  width: 100%;
  min-width: 680px; /* so table stays readable */
}
.table th, .table td{
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13px;
}
.table th{
  text-align: left;
  color: #111;
  font-weight: 900;
  background: #fafafa;
  position: sticky;
  top: 0;
}
.table td{ color: #222; font-weight: 700; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0 16px;
}
.panel{
  border-radius: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.panel b{ display:block; margin-bottom: 8px; }
.panel--pro{ border-color: rgba(44,255,122,.26); background: linear-gradient(180deg, #fff, #f6fff9); }
.panel--con{ border-color: rgba(225,6,43,.18); background: linear-gradient(180deg, #fff, #fff4f6); }

.cards3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 12px 0 12px;
}
.infoCard{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}
.infoCard b{ display:block; margin-bottom: 6px; }
.infoCard p{ margin: 0; color: #2a2a2a; }

/* CTA band */
.ctaBand{
  border: 1px solid rgba(225,6,43,.18);
  background: linear-gradient(180deg, #fff, #fff7f8);
  border-radius: 18px;
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 10px;
}
.ctaBand__text b{ display:block; font-size: 14px; }
.ctaBand__text span{ display:block; color: var(--muted); font-weight: 800; font-size: 12px; margin-top: 3px; }
.ctaBand--strong{
  background: linear-gradient(180deg, #fff, #ffeef2);
  border-color: rgba(225,6,43,.22);
}

/* Sidebar sticky */
.card--sticky{
  position: sticky;
  top: 84px;
}

.mini{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}
.mini__row{
  display:flex;
  gap: 10px;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,.10);
}
.mini__row:last-child{ border-bottom: 0; }
.mini__k{ color: var(--muted); font-weight: 900; font-size: 12px; }
.mini__v{ color: #111; font-weight: 800; font-size: 12px; text-align: right; max-width: 62%; }

.offer{
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(225,6,43,.18);
  background: linear-gradient(180deg, #fff, #fff7f8);
  padding: 14px;
}
.offer__top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.offer__top b{ font-weight: 1000; }
.offer__top span{ color: var(--muted); font-weight: 900; font-size: 12px; }

/* foot CTA with spacing */
.footCta{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px; /* <— spacing between buttons */
}
.footFine{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  text-align: center;
}

/* FAQ */
.faq details{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  margin: 10px 0;
  background: #fff;
}
.faq summary{
  cursor: pointer;
  font-weight: 900;
}
.faq p{ margin: 8px 0 0; color: #2a2a2a; }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: #0f0f10;
  color: #fff;
  margin-top: 20px;
}
.footer__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo{
  width: 78px;
  height: 46px;
  object-fit: contain;
}
.footer__brand b{ display:block; }
.footer__brand span{ display:block; color: rgba(255,255,255,.72); font-weight: 700; font-size: 12px; margin-top: 3px; }

.footer__links{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__links a{
  color: rgba(255,255,255,.80);
  font-weight: 800;
  font-size: 13px;
}
.footer__links a:hover{ color: #fff; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 12px 0 16px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
  flex-wrap: wrap;
}

/* ============ MODAL ============ */
.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.overlay.is-open{ opacity: 1; pointer-events: auto; }

.modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.modal.is-open{ opacity: 1; pointer-events: auto; }

.modal__box{
  width: min(520px, 100%);
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
}
.modal__close{
  position: absolute;
  right: 10px; top: 10px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  cursor: pointer;
}
.modal__title{
  margin: 4px 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.modal__desc{
  margin: 0 0 10px;
  color: #2a2a2a;
  line-height: 1.6;
}
.modal__bonus{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 12px;
}
.modal__bonus > div{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: #fff;
}
.modal__bonus b{ display:block; }
.modal__bonus span{
  display:block;
  font-weight: 1000;
  font-size: 24px;
  color: var(--red);
  margin-top: 4px;
}
.modal__bonus small{ display:block; color: var(--muted); font-weight: 800; margin-top: 3px; }

.modal__actions{
  display:grid;
  gap: 10px;
}
.modal__fine{
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

//* ============ CATFISH (mobile friendly) ============ */
/* FIX: do not block page scroll */
/* Catfish: remove red square / decorative block */
.catfish::before,
.catfish::after,
.catfish__box::before,
.catfish__box::after,
.catfish__inner::before,
.catfish__inner::after,
.catfish__content::before,
.catfish__content::after{
  content: none !important;
  display: none !important;
}

/* If there is a badge/label element */
.catfish .badge,
.catfish__badge,
.catfish__tag,
.catfish__mark{
  display: none !important;
}

/* If the red square is a background accent on some icon wrapper */
.catfish .icon,
.catfish .iconWrap,
.catfish__icon{
  background: transparent !important;
  box-shadow: none !important;
}

.catfish{
  pointer-events: none; /* always */
}

.catfish.is-open{
  pointer-events: none; /* keep none */
}

.catfish__box{
  pointer-events: auto;         /* clickable only box */
  touch-action: pan-y;          /* allow vertical scroll gestures */
  -webkit-user-select: none;
  user-select: none;
}

/* buttons & close are still clickable */
.catfish__actions .btn,
.catfish__close{
  touch-action: manipulation;
}

.catfish{
  position: fixed;
  left: 0; right: 0;
  bottom: 12px;
  z-index: 60;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .18s ease, transform .18s ease;
  padding: 0 12px;
}

.catfish.is-open{
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.catfish__box{
  width: min(980px, 100%);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  min-width: 0; /* important */
}

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

.catfish__icon{
  width: 40px; height: 40px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--red), var(--red2));
  box-shadow: 0 12px 22px rgba(225,6,43,.18);
}

.catfish__text{
  min-width: 0;
}

.catfish__text b{
  display: block;
  font-weight: 1000;
  /* allow wrapping on mobile instead of forcing one line */
  white-space: normal;
  line-height: 1.15;
}

.catfish__text span{
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
  white-space: normal;
  line-height: 1.25;
}

.catfish__actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.catfish__close{
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  cursor: pointer;
}

/* Mobile layout: stack content + full-width CTA */
@media (max-width: 540px){
  .catfish{
    bottom: 10px;
    padding: 0 10px;
  }

  .catfish__box{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }

  .catfish__left{
    align-items: flex-start;
  }

  .catfish__icon{
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .catfish__actions{
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  /* Make the main CTA fill available width */
  .catfish__actions .btn{
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
  }

  .catfish__close{
    flex: 0 0 38px;
  }
}

/* Extra-small: reduce paddings a bit */
@media (max-width: 360px){
  .catfish__box{ padding: 9px; }
  .catfish__actions .btn{ padding: 11px 12px; }
}


/* ============ RESPONSIVE ============ */
.hide-sm{ display: inline-flex; }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .card--sticky{ position: static; top: auto; }
  .hero__mini{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .hide-sm{ display: none; }
  .nav{ display: none; } /* compact header on mobile */
  .brand{ min-width: 0; }
  .brand__logo{ width: 104px; height: 60px; } /* keep logo big on mobile */
}

@media (max-width: 460px){
  .offerCard__grid{ grid-template-columns: 1fr; }
  .ctaBand{ flex-direction: column; align-items: stretch; }
  .footer__row{ flex-direction: column; align-items: flex-start; }
  .footer__links{ justify-content: flex-start; }
}
.betclic-toolkit-guide{
  padding:48px 0;
  background:#fafafa;
  color:#222;
  border-top:1px solid #f0f0f0;
  border-bottom:1px solid #f0f0f0;
}
.betclic-toolkit-guide .container{
  width:min(1140px, calc(100% - 32px));
  margin:0 auto;
}
.betclic-toolkit-guide__title{
  font-size:1.6rem;
  font-weight:900;
  color:#111;
  margin:0 0 1.4rem;
  line-height:1.25;
  letter-spacing:-0.3px;
}
.betclic-toolkit-guide__lead{
  background:linear-gradient(180deg,#fff,#fff7f8);
  border:1px solid rgba(225,6,43,.18);
  border-left:4px solid #e1062b;
  padding:1rem 1.2rem;
  border-radius:14px;
  margin-bottom:2rem;
  box-shadow:0 8px 18px rgba(225,6,43,.05);
}
.betclic-toolkit-guide__lead p{
  margin:0;
  font-size:.98rem;
  line-height:1.7;
  color:#2a2a2a;
}
.betclic-toolkit-guide__lead em{
  color:#e1062b;
  font-style:italic;
  font-weight:700;
}
.betclic-toolkit-guide__section{
  background:#fff;
  border:1px solid #f0f0f0;
  border-radius:16px;
  padding:1.3rem 1.2rem;
  margin-bottom:1.2rem;
  box-shadow:0 6px 14px rgba(0,0,0,.04);
}
.betclic-toolkit-guide__section--final{
  background:linear-gradient(180deg,#fff,#fff7f8);
  border-color:rgba(225,6,43,.18);
}
.betclic-toolkit-guide__h3{
  font-size:1.15rem;
  font-weight:900;
  color:#e1062b;
  margin:0 0 .9rem;
  line-height:1.35;
  letter-spacing:-0.2px;
}
.betclic-toolkit-guide__h4{
  font-size:1rem;
  font-weight:800;
  color:#111;
  margin:1.2rem 0 .6rem;
  letter-spacing:-0.1px;
}
.betclic-toolkit-guide__section p{
  font-size:.95rem;
  line-height:1.7;
  color:#2a2a2a;
  margin:0 0 .8rem;
}
.betclic-toolkit-guide__section p:last-child{
  margin-bottom:0;
}
.betclic-toolkit-guide__section p strong{
  color:#111;
  font-weight:800;
}
.betclic-toolkit-guide__section em{
  color:#c70022;
  font-style:italic;
  font-weight:600;
}
.betclic-toolkit-guide__list{
  margin:.6rem 0 1rem 1.3rem;
  padding:0;
}
.betclic-toolkit-guide__list li{
  font-size:.95rem;
  line-height:1.7;
  color:#2a2a2a;
  margin-bottom:.6rem;
  padding-left:.2rem;
  list-style:disc;
}
.betclic-toolkit-guide__list--ordered li{
  list-style:decimal;
}
.betclic-toolkit-guide__list li strong{
  color:#111;
  font-weight:800;
}
.betclic-toolkit-guide__cta-line{
  margin-top:1.2rem !important;
  padding:1rem 1.1rem;
  background:rgba(225,6,43,.06);
  border:1px solid rgba(225,6,43,.2);
  border-radius:10px;
  font-size:.9rem !important;
  color:#2a2a2a !important;
  font-weight:600;
  line-height:1.6 !important;
}

@media (min-width:600px){
  .betclic-toolkit-guide{
    padding:60px 0;
  }
  .betclic-toolkit-guide__title{
    font-size:1.9rem;
  }
  .betclic-toolkit-guide__h3{
    font-size:1.25rem;
  }
  .betclic-toolkit-guide__h4{
    font-size:1.05rem;
  }
  .betclic-toolkit-guide__lead{
    padding:1.2rem 1.4rem;
  }
  .betclic-toolkit-guide__lead p,
  .betclic-toolkit-guide__section p,
  .betclic-toolkit-guide__list li{
    font-size:1rem;
  }
  .betclic-toolkit-guide__section{
    padding:1.6rem 1.6rem;
  }
}

@media (min-width:980px){
  .betclic-toolkit-guide{
    padding:70px 0;
  }
  .betclic-toolkit-guide__title{
    font-size:2.1rem;
    margin-bottom:1.8rem;
  }
  .betclic-toolkit-guide__section{
    padding:1.8rem 2rem;
    margin-bottom:1.4rem;
  }
  .betclic-toolkit-guide__lead{
    padding:1.3rem 1.6rem;
    margin-bottom:2.4rem;
  }
}
