.elementor-2462 .elementor-element.elementor-element-f55a965{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b3865b0 */:root {
  --white:        #ffffff;
  --off-white:    #f8f7f4;
  --black:        #0d0d0d;
  --orange:       #e85c0d;
  --orange-hover: #ff6e1f;
  --orange-pale:  #fff4ed;
  --gray-100:     #f2f1ee;
  --gray-200:     #e2e0db;
  --gray-400:     #999490;
  --gray-600:     #57534e;
  --gray-800:     #292524;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--black);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--orange);
}
.topbar-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
}
.topbar-logo span { color: var(--orange); }
.topbar-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── ARTICLE WRAPPER ── */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 32px 80px;
}

/* ── CATEGORY CHIP ── */
.category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.category::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

/* ── ARTICLE TITLE ── */
.article-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 28px;
}
.article-title em {
  font-style: normal;
  color: var(--orange);
}

/* ── META ROW ── */
.meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.meta-row .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gray-400);
}
.meta-item {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}
.meta-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

/* ── HERO IMAGE ── */
.hero-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--gray-200);
  aspect-ratio: 3/2;
  background: var(--gray-100);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── INTRO BLOCK ── */
.intro-block {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 36px;
}
.intro-block p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-800);
}
.intro-block strong { color: var(--black); font-weight: 700; }
.intro-block a.kw {
  color: var(--orange);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.intro-block a.kw:hover { color: var(--orange-hover); }

/* ── SECTION HEADING ── */
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 18px;
}
.section-heading h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* ── PROSE ── */
.prose {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.prose strong { color: var(--black); font-weight: 700; }
.prose a.kw {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color .2s;
}
.prose a.kw:hover { color: var(--orange-hover); }

/* ── SUB HEADINGS (H3) ── */
.sub-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--black);
  margin: 28px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-heading::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FACTORS GRID ── */
.factors-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
}
.factor-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  border-bottom: 1px solid var(--gray-200);
  transition: background .2s;
}
.factor-row:last-child { border-bottom: none; }
.factor-row:hover { background: var(--orange-pale); }
.factor-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gray-400);
  border-right: 1px solid var(--gray-200);
  transition: background .2s, color .2s;
}
.factor-row:hover .factor-num {
  background: var(--orange);
  color: var(--white);
}
.factor-content {
  padding: 16px 20px;
}
.factor-content strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.factor-content span {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── BETTING TYPES LIST ── */
.bet-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 36px;
}
.bet-type-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 16px 18px;
  transition: background .2s, border-color .2s;
}
.bet-type-card:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
}
.bet-type-card strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.bet-type-card span {
  font-family: 'Lora', serif;
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ── EXAMPLE BLOCK ── */
.example-block {
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  padding: 30px 28px;
  margin-bottom: 36px;
}
.example-block .ex-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.example-block p {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #ccc;
}
.example-block a.kw {
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.example-block a.kw:hover { color: var(--orange-hover); }
.example-block strong { color: var(--white); }

/* ── RESPONSIBLE BETTING LIST ── */
.resp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
  transition: background .2s;
}
.resp-item:hover { background: var(--orange-pale); }
.resp-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CLOSING BLOCK ── */
.closing-block {
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
}
.closing-block p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-800);
}
.closing-block strong { color: var(--black); font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .topbar { padding: 12px 20px; }
  .article-wrap { padding: 40px 20px 60px; }
  .bet-types { grid-template-columns: 1fr; }
  .meta-row { gap: 12px; }
}

/* ── FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu  { animation: fadeUp .65s ease both; }
.d1  { animation-delay: .08s; }
.d2  { animation-delay: .16s; }
.d3  { animation-delay: .24s; }
.d4  { animation-delay: .32s; }
.d5  { animation-delay: .40s; }/* End custom CSS */