/* Shared layout for the information pages: deposit limits, responsible gambling, BetStop, help centre */

/* ============ hero ============ */
.info-hero { background: var(--ink); }
.info-hero__inner { display: flex; align-items: flex-start; gap: 64px; min-height: 567px; padding-block: 80px; }
.info-hero__left { display: flex; flex-direction: column; gap: 24px; flex: 1; min-width: 0; }
.info-hero__title {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 84px;
  letter-spacing: -.03em;
  color: var(--white);
}
.info-hero__title--sm { font-size: 72px; line-height: 68px; }
.info-hero__lede { font-size: 18px; line-height: 29px; color: var(--slate); }

/* ============ limit control panel ============ */
.limit-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 480px;
  flex: none;
  padding: 24px;
  background: var(--bone);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.limit-panel__title { font-family: var(--font-display); font-size: 18px; line-height: 20px; letter-spacing: 1px; color: var(--ink-soft); }
.limit-panel__current { font-size: 14px; line-height: 20px; color: #475569; }
.limit-panel__current strong { color: var(--ink-soft); }
.limit-panel__note { font-size: 12px; line-height: 18px; color: var(--grey); }
.limit-panel__cancel { font-size: 12px; font-weight: 700; color: var(--red-text); text-decoration: underline; }
.limit-form { display: flex; flex-direction: column; gap: 16px; }
.limit-periods { display: flex; flex-direction: column; gap: 12px; }
.limit-period {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 57px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--r-12);
  box-shadow: inset 0 0 0 1px var(--line-light);
  cursor: pointer;
  transition: box-shadow var(--t);
}
.limit-period:hover { box-shadow: inset 0 0 0 1px var(--red); }
.limit-period input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.limit-period:has(input:checked) { box-shadow: inset 0 0 0 1.5px var(--red); }
.limit-period:has(input:focus-visible) { outline: 2px solid var(--red); outline-offset: 2px; }
.limit-period__label, .limit-period__field { pointer-events: none; }
.limit-period__label { font-family: var(--font-display); font-size: 12px; line-height: 13.06px; letter-spacing: .06em; color: var(--ink-soft); }
.limit-period__field {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bone);
  border-radius: var(--r-8);
  box-shadow: inset 0 0 0 1px var(--line-light);
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  color: var(--ink-soft);
}
.limit-period__value { color: var(--grey); }
.limit-panel .field__label { color: var(--ink-soft); }
.limit-panel .field__control {
  min-height: 50px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.limit-panel .field__control input { color: var(--ink-soft); }
.limit-panel .field__control input::placeholder { color: var(--grey); }
.limit-result {
  padding: 12px 16px;
  border-radius: var(--r-8);
  font-size: 13px;
  line-height: 19px;
  background: rgba(16, 185, 129, .14);
  color: #04724d;
}
.limit-result--pending { background: rgba(225, 29, 72, .1); color: #a5102f; }

/* ============ content blocks ============ */
.info-block__inner { display: flex; flex-direction: column; gap: 24px; padding-block: 96px; }
.info-block__title { font-family: var(--font-display); font-size: 48px; line-height: 52.22px; color: var(--ink-soft); }
.info-block__title--light { color: var(--white); }
.info-block__title--ink { color: var(--ink); }
.info-block__sub { font-family: var(--font-display); font-size: 28px; line-height: 30.46px; color: var(--ink-soft); margin-top: 16px; }
.info-block__sub--lead { font-size: 28px; margin-top: 0; }
.info-block__lede { font-size: 18px; line-height: 29px; color: var(--grey); max-width: 900px; }
.info-block__lede--slate { color: var(--slate); }
.info-block__lede--ink { color: var(--white); }
.info-block__body { font-size: 16px; line-height: 26px; color: var(--grey); max-width: 900px; }
.info-block__body--slate { color: var(--slate); }
.info-block__note { font-size: 14px; line-height: 22px; color: var(--grey); }
.section--dark .info-block__note { color: var(--slate); }

.info-cols { display: flex; gap: 24px; align-items: stretch; }
.info-cols--3 > * { flex: 1; }
.info-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 24px;
  background: var(--white);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-light);
  color: var(--ink-soft);
}
.section--dark .info-card { background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-dark); color: var(--white); }
.info-card--ink { background: var(--ink); box-shadow: none; color: var(--white); }
.info-card--action { transition: transform var(--t), box-shadow var(--t); }
.info-card--action:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--red), 0 8px 20px rgba(9, 10, 15, .08); }
.info-card__title { font-family: var(--font-display); font-size: 14px; line-height: 15.23px; letter-spacing: .06em; color: var(--red-text); }
.info-card__title--lg { font-family: var(--font-display); font-size: 18px; line-height: 20px; letter-spacing: 0; color: inherit; }
.info-card__badge { font-family: var(--font-display); font-size: 32px; line-height: 35px; color: var(--red); }
.info-card__body { font-size: 14px; line-height: 22px; color: var(--grey); }
.info-card--ink .info-card__body, .section--dark .info-card__body { color: var(--slate); }
.info-list { display: flex; flex-direction: column; gap: 8px; }
.info-list li { position: relative; padding-left: 16px; font-size: 15px; line-height: 24px; color: var(--grey); }
.info-list li::before { content: '•'; position: absolute; left: 0; color: var(--red); }
.section--dark .info-list li { color: var(--slate); }

.info-flow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.info-flow__step {
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--r-8);
  box-shadow: inset 0 0 0 1px var(--line-light);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--ink-soft);
}
.info-flow__step--stop { background: var(--red); color: var(--white); box-shadow: none; }
.info-flow__arrow { color: var(--grey); }

.status-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.status-card__title { font-family: var(--font-display); font-size: 13px; letter-spacing: 1px; color: var(--red-text); }
.status-card__grid { display: flex; gap: 24px; flex-wrap: wrap; }
.status-card__grid div { display: flex; flex-direction: column; gap: 4px; }
.status-card__label { font-family: var(--font-display); font-size: 11px; letter-spacing: 1px; color: var(--slate); }
.status-card__value { font-family: var(--font-display); font-size: 18px; line-height: 20px; }
.status-card__value--stop { color: var(--red-text); }
.status-card__value--ok { color: var(--green-bright); }

.change-list { display: flex; flex-direction: column; gap: 16px; }
.change-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.change-card__title { font-family: var(--font-display); font-size: 22px; line-height: 24px; color: var(--white); }
.change-card__body { font-size: 14px; line-height: 22px; color: var(--slate); }
.change-card__panel {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--ink);
  border-radius: var(--r-8);
}
.change-card__label { font-size: 11px; letter-spacing: .06em; color: var(--slate); }
.change-card__value { flex: 1; font-size: 14px; font-weight: 600; color: var(--white); }
.change-card__state { font-family: var(--font-display); font-size: 11px; letter-spacing: 1px; }
.change-card__state--ok { color: var(--green-bright); }
.change-card__state--wait { color: var(--red-text); }

.rule-summary { display: flex; gap: 24px; flex-wrap: wrap; }
.rule-summary span {
  padding: 8px 14px;
  border-radius: var(--r-6);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line-dark);
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
}

/* ============ mobile ============ */
@media (max-width: 1199px) {
  .info-hero__inner { flex-direction: column; gap: 24px; min-height: 0; padding-block: 32px; }
  .info-hero__title { font-size: 44px; line-height: 44px; }
  .info-hero__title--sm { font-size: 40px; line-height: 42px; }
  .info-hero__lede { font-size: 15px; line-height: 24px; }
  .limit-panel { width: auto; padding: 24px; }
  .limit-periods { flex-direction: column; }

  .info-block__inner { gap: 20px; padding-block: 40px; }
  .info-block__title { font-size: 28px; line-height: 30.5px; }
  .info-block__sub { font-size: 22px; line-height: 24px; }
  .info-block__lede { font-size: 15px; line-height: 25px; }
  .info-cols { flex-direction: column; gap: 16px; }
  .status-card__grid { flex-direction: column; gap: 12px; }
  .rule-summary { flex-direction: column; gap: 8px; }
}

/* ============ BetStop page ============ */
.info-block__title--xl { font-size: 56px; line-height: 58.8px; }
.info-hero__note { font-size: 12px; line-height: 16px; color: var(--slate); }

.bs-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 460px;
  flex: none;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px var(--line-dark);
  text-align: center;
}
.bs-diagram__node {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  border-radius: var(--r-8);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--white);
}
.bs-diagram__node--on { background: var(--red); }
.bs-diagram__line { width: 1px; height: 24px; background: var(--line-dark); }
.bs-diagram__scope {
  width: 100%;
  padding: 14px;
  border-radius: var(--r-8);
  box-shadow: inset 0 0 0 1px var(--line-dark);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: .06em;
  color: var(--slate);
}

.bs-steps { display: flex; gap: 24px; align-items: stretch; }
.bs-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 32px;
  background: var(--white);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.bs-step__num { font-family: var(--font-display); font-size: 80px; line-height: 80px; color: var(--red-text); }
.bs-step__title { font-family: var(--font-display); font-size: 22px; line-height: 24px; color: var(--ink-soft); }
.bs-step__body { font-size: 15px; line-height: 24px; color: var(--grey); }

.bs-scope {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.bs-scope__label { font-family: var(--font-display); font-size: 14px; letter-spacing: .06em; color: var(--grey); }
.bs-scope__mark {
  padding: 8px 16px;
  background: var(--red);
  border-radius: var(--r-6);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .06em;
  color: var(--white);
}

.bs-split { display: flex; align-items: flex-start; gap: 48px; }
.bs-split__list { display: flex; flex-direction: column; gap: 16px; flex: 1; min-width: 0; max-width: 884px; }
.bs-rules { display: flex; flex-direction: column; }
.bs-rules li + li { margin-top: 24px; padding-top: 24px; box-shadow: inset 0 1px 0 var(--line-dark); }
.bs-rules li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 24px;
  color: var(--slate);
}
.bs-rules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.bs-callout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 412px;
  flex: none;
  padding: 32px;
  background: #111622;
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--red);
}
.bs-callout .btn { margin-top: 4px; }
.bs-callout__kicker { font-family: var(--font-display); font-size: 13px; line-height: 14.14px; letter-spacing: 1px; color: var(--slate); }
.bs-callout__title { font-family: var(--font-display); font-size: 28px; line-height: 34px; color: var(--white); }
.bs-callout__body { font-size: 15px; line-height: 24px; color: var(--slate); }

@media (max-width: 1199px) {
  .bs-split { flex-direction: column; gap: 32px; }
  .bs-callout { width: auto; align-self: stretch; }
  .info-block__title--xl { font-size: 32px; line-height: 35px; }
  .bs-diagram { width: auto; padding: 24px; }
  .bs-steps { flex-direction: column; gap: 16px; }
  .bs-step { padding: 24px; }
  .bs-step__num { font-size: 48px; line-height: 48px; }
  .bs-scope { flex-direction: column; gap: 12px; text-align: center; }
  .bs-callout { padding: 24px; }
  .bs-callout__title { font-size: 22px; line-height: 24px; }
}

/* ============ responsible gambling page ============ */
.rg-num { font-family: var(--font-display); font-size: 80px; line-height: 80px; color: var(--red); }
.rg-num--ink { color: var(--ink); }

.help-now {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 400px;
  flex: none;
  padding: 24px;
  background: var(--bone);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.help-now__title { font-family: var(--font-display); font-size: 24px; line-height: 26px; color: var(--ink-soft); }
.help-now__name { font-size: 14px; font-weight: 700; line-height: 18.2px; color: var(--ink-soft); }
.help-now__line { font-family: var(--font-display); font-size: 32px; line-height: 42px; color: var(--ink-soft); }
.help-now__note { font-size: 13px; line-height: 17px; color: var(--grey); }
.help-now__site {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 8px;
}
.help-now__site:hover { color: var(--red); }

.rg-tips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 32px; max-width: 1000px; }
.rg-tips li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 26px;
  color: var(--grey);
}
.rg-tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
}
.rg-tips--warn li::before { border-radius: 50%; }

.rg-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.rg-tool {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.rg-tool--wide { grid-column: 1 / -1; }
.rg-tool__title { font-family: var(--font-display); font-size: 28px; line-height: 30.46px; color: var(--white); }
.rg-tool__body { font-size: 16px; line-height: 26px; color: var(--slate); }
.rg-tool__quote {
  padding: 12px 16px;
  background: var(--ink);
  border-left: 3px solid var(--red);
  border-radius: var(--r-8);
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
}
.rg-tool__panel { padding: 16px; background: var(--ink); border-radius: var(--r-12); }
.rg-tool__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 12px;
}
.rg-tool__panel-state { font-family: var(--font-display); font-size: 12px; letter-spacing: 1px; color: var(--red-text); }
.rg-cycle { display: flex; gap: 8px; }
.rg-cycle span {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: var(--r-6);
  box-shadow: inset 0 0 0 1px var(--line-dark);
  font-size: 14px;
  color: var(--slate);
}
.rg-cycle .is-on { background: var(--red); color: var(--white); box-shadow: none; }

.rg-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--r-20);
  box-shadow: inset 0 0 0 1px var(--line-light);
}
.rg-check__title { font-family: var(--font-display); font-size: 24px; line-height: 26px; color: var(--ink-soft); }
.rg-check__lede { font-size: 15px; color: var(--grey); }
.rg-check__list { display: flex; flex-direction: column; gap: 8px; }
.rg-check__list li { font-size: 15px; line-height: 24px; color: var(--ink-soft); }
.rg-check__num { font-weight: 800; color: var(--red); }
.rg-check__line { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.rg-check__label { font-size: 14px; font-weight: 700; color: var(--grey); }
.rg-check__phone { font-family: var(--font-display); font-size: 20px; color: var(--red-text); }

.activity { width: 100%; border-collapse: collapse; }
.activity th {
  padding: 12px 16px;
  text-align: left;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--slate);
  font-weight: 700;
}
.activity td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--white);
  box-shadow: inset 0 -1px 0 var(--line-dark);
}
.activity__loss { color: var(--red); font-weight: 700; }
.activity__win { color: var(--green-bright); font-weight: 700; }

.rg-duties { display: flex; flex-direction: column; gap: 16px; }
.rg-duty {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.rg-duty__title { font-family: var(--font-display); font-size: 24px; line-height: 26px; color: var(--white); }
.rg-duty__body { font-size: 16px; line-height: 26px; color: var(--slate); }

.rg-registry { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 32px; }
.rg-registry dt { font-family: var(--font-display); font-size: 13px; letter-spacing: 1px; color: var(--red-text); margin-bottom: 4px; }
.rg-registry dd { font-size: 14px; line-height: 22px; color: var(--ink-soft); }
.rg-phone { font-family: var(--font-display); font-size: 32px; line-height: 35px; color: var(--red); }

@media (max-width: 1199px) {
  .help-now { width: auto; padding: 24px; }
  .rg-num { font-size: 48px; line-height: 48px; }
  .rg-tips, .rg-tools, .rg-registry { grid-template-columns: 1fr; }
  .rg-tool { padding: 24px; }
  .rg-tool__title { font-size: 22px; line-height: 24px; }
  .rg-check { padding: 24px; }
  .activity { display: block; overflow-x: auto; }
}


/* ---- 03 self-exclusion: one 820px column, not a row of cards ----
   The mockup stacks three blocks and drops a dark inset card in the middle. */
.rg-stack { display: flex; flex-direction: column; gap: 32px; width: 100%; max-width: 820px; }
.rg-stack__row { display: flex; flex-direction: column; gap: 12px; }
.rg-stack__title { font-family: var(--font-display); font-size: 24px; line-height: 24px; color: var(--white); }
.rg-stack__body { font-size: 16px; line-height: 24px; color: var(--white); }
.rg-stack__link {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 15.23px;
  color: var(--ink);
  transition: opacity var(--t);
}
.rg-stack__link:hover { opacity: .7; }

.betstop-inset {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--ink);
  border-radius: var(--r-16);
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.betstop-inset__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.betstop-inset__kicker {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 17.41px;
  letter-spacing: .02em;
  color: var(--red-text);
}
.betstop-inset__title { font-family: var(--font-display); font-size: 28px; line-height: 28px; color: var(--white); }
.betstop-inset__body { font-size: 15px; line-height: 24px; color: #cbd5e1; }

/* ---- 07 getting help: rows split by a hairline ---- */
.rg-rows { display: flex; flex-direction: column; width: 100%; max-width: 820px; }
.rg-rows__row { display: flex; flex-direction: column; gap: 12px; padding-block: 32px; }
.rg-rows__row:first-child { padding-top: 0; }
.rg-rows__row + .rg-rows__row { box-shadow: inset 0 1px 0 var(--line-light); }
.rg-rows__title { font-family: var(--font-display); font-size: 24px; line-height: 24px; color: var(--ink-soft); }
.rg-rows__phone { font-family: var(--font-display); font-size: 32px; line-height: 35px; color: var(--red-text); }
.rg-rows__body { font-size: 16px; line-height: 24px; color: var(--ink-soft); }

@media (max-width: 1199px) {
  .rg-stack__title, .rg-rows__title { font-size: 20px; line-height: 22px; }
  .betstop-inset { padding: 20px; }
  .betstop-inset__title { font-size: 22px; line-height: 24px; }
  .betstop-inset__head { flex-wrap: wrap; gap: 12px; }
}

/* Section number and title sit on one row in the mockup: 107px number, 32px gap. */
.info-block__head { display: flex; align-items: center; gap: 32px; }
.info-block__head .rg-num { flex: none; min-width: 107px; }
@media (max-width: 1199px) {
  .info-block__head { align-items: baseline; gap: 16px; }
  .info-block__head .rg-num { min-width: 0; }
}
/* the dot follows the divider padding on every rule after the first */
.bs-rules li + li::before { top: 33px; }
