:root {
  --eb-navy: #253762;
  --eb-navy-deep: #0b1733;
  --eb-text: #142654;
  --eb-muted: #53648c;
  --eb-green: #008c64;
  --eb-green-dark: #007853;
  --eb-line: #d6dce8;
  --eb-bg: #f3f4f7;
  --eb-card: #ffffff;
  --eb-shadow: 0 2px 8px rgba(20, 38, 84, 0.18);
  --eb-page: 1124px;
}

body.eb-page {
  margin: 0;
  background: var(--eb-bg);
  color: var(--eb-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

.eb-page a {
  color: inherit;
  text-decoration: none;
}

.eb-page img {
  display: block;
  max-width: 100%;
}

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

.eb-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 28, 62, 0.14);
}

.eb-header__bar {
  background: var(--eb-navy);
  color: #fff;
}

.eb-header__bar-inner {
  min-height: 65px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.eb-logo {
  width: 184px;
  flex: 0 0 auto;
}

.eb-logo img {
  height: auto;
  width: 100%;
}

.eb-icon-button {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
}

.eb-header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  color: #fff !important;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.eb-button--dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.78);
}

.eb-button--primary {
  background: var(--eb-green);
  border-color: var(--eb-green);
}

.eb-button--primary:hover {
  background: var(--eb-green-dark);
  border-color: var(--eb-green-dark);
}

.eb-nav-shell {
  background: #fff;
}

.eb-nav-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.eb-main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.eb-main-nav::-webkit-scrollbar {
  display: none;
}

.eb-main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: var(--eb-text);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.eb-main-nav a.is-active {
  font-weight: 800;
}

.eb-main-nav .has-badge span {
  position: absolute;
  left: 18px;
  top: 2px;
  padding: 2px 8px;
  border-radius: 5px;
  background: #c02fe2;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.eb-nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.eb-nav-tools a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.eb-nav-tools img {
  max-height: 20px;
}

.eb-nav-tools span {
  position: absolute;
  top: -7px;
  right: -6px;
  min-width: 16px;
  min-height: 16px;
  border-radius: 99px;
  background: #ef603c;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  display: grid;
  place-items: center;
}

.eb-hero {
  padding: 28px 0 14px;
}

.eb-hero__viewport {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--eb-navy-deep);
  box-shadow: var(--eb-shadow);
}

.eb-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.eb-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.eb-hero__slide picture,
.eb-hero__slide img {
  width: 100%;
  height: 100%;
}

.eb-hero__slide img {
  object-fit: cover;
}

.eb-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 13, 32, 0.82) 0%, rgba(5, 13, 32, 0.54) 38%, rgba(5, 13, 32, 0.05) 74%);
}

.eb-hero__copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(28px, 4vw, 48px);
  width: min(560px, calc(100% - 56px));
  transform: translateY(-50%);
  color: #fff;
}

.eb-hero__copy h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 43px);
  line-height: 1.08;
  letter-spacing: 0;
}

.eb-hero__copy p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

.eb-hero__dots {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  display: flex;
  gap: 7px;
}

.eb-hero__dots button {
  width: 20px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.46);
}

.eb-hero__dots button.is-active {
  background: #fff;
}

.eb-strip--compact {
  padding: 14px 0 4px;
}

.eb-chip-rail,
.eb-card-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 1px 10px;
}

.eb-chip-rail::-webkit-scrollbar,
.eb-card-rail::-webkit-scrollbar {
  display: none;
}

.eb-chip {
  position: relative;
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--eb-line);
  border-radius: 5px;
  background: #fff;
  color: var(--eb-text);
  box-shadow: var(--eb-shadow);
  white-space: nowrap;
  font-weight: 500;
}

.eb-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.eb-chip > span {
  position: absolute;
  top: -10px;
  right: 9px;
  padding: 2px 5px;
  border-radius: 3px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.eb-chip.has-flag > span {
  background: var(--eb-green);
}

.eb-chip.has-hot > span {
  background: #ef4b2d;
}

.eb-section {
  padding: 14px 0;
}

.eb-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.eb-section__head h2 {
  margin: 0;
  color: var(--eb-text);
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: 0;
}

.eb-rail-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.eb-circle {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8ca0c2;
  border-radius: 50%;
  background: #fff;
  color: var(--eb-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.eb-bonus-card {
  flex: 0 0 520px;
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-bonus-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.eb-bonus-card div {
  padding: 16px 20px;
}

.eb-bonus-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.15;
  color: var(--eb-text);
}

.eb-bonus-card p {
  margin: 0 0 34px;
  color: var(--eb-muted);
  font-size: 14px;
}

.eb-bonus-card .eb-button {
  min-height: 40px;
}

.eb-card-rail--live {
  gap: 16px;
}

.eb-live-card {
  flex: 0 0 370px;
  min-height: 168px;
  padding: 12px 12px 8px;
  border-radius: 6px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 35, 78, 0.72), rgba(17, 55, 16, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(218, 238, 255, 0.88), rgba(26, 84, 145, 0.18) 35%, rgba(8, 28, 59, 0.88) 70%);
  box-shadow: var(--eb-shadow);
}

.eb-live-card--basket {
  background:
    linear-gradient(180deg, rgba(16, 35, 78, 0.7), rgba(80, 44, 10, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(255, 233, 180, 0.82), rgba(183, 93, 20, 0.24) 38%, rgba(8, 28, 59, 0.9) 78%);
}

.eb-live-card--tennis {
  background:
    linear-gradient(180deg, rgba(16, 35, 78, 0.72), rgba(13, 58, 48, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(227, 255, 231, 0.82), rgba(18, 126, 92, 0.24) 38%, rgba(8, 28, 59, 0.9) 78%);
}

.eb-live-card__meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 4px 8px;
  margin: -12px 0 7px -12px;
  background: #fff;
  color: var(--eb-text);
  font-size: 14px;
}

.eb-live-card__meta span {
  color: var(--eb-green);
  font-weight: 800;
}

.eb-live-card__league {
  width: max-content;
  max-width: 80%;
  margin: 0 0 14px;
  padding: 7px 16px;
  border-radius: 0 0 4px 0;
  background: var(--eb-navy);
  color: #fff;
  font-size: 14px;
}

.eb-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 6px 0;
  font-size: 17px;
}

.eb-score-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eb-score-row span {
  min-width: 22px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(37, 55, 98, 0.86);
  text-align: center;
}

.eb-score-row.is-winning {
  font-weight: 800;
}

.eb-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 16px;
}

.eb-live-card--basket .eb-quotes {
  grid-template-columns: repeat(2, 1fr);
}

.eb-quotes span {
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  color: var(--eb-text);
  text-align: center;
  line-height: 1.08;
}

.eb-quotes img {
  width: 13px;
  height: 15px;
}

.eb-quotes--empty span {
  background: rgba(255, 255, 255, 0.16);
}

.eb-virtual-rail {
  gap: 12px;
}

.eb-virtual-card {
  flex: 0 0 255px;
  min-height: 84px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-virtual-card img {
  grid-row: 1 / span 2;
  width: 46px;
  height: 42px;
  object-fit: contain;
}

.eb-virtual-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
}

.eb-virtual-card p {
  margin: 0;
  color: #7c8baa;
  font-weight: 800;
  line-height: 1;
}

.eb-virtual-card p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
}

.eb-virtual-card .is-alert {
  color: #df1f3d;
}

.eb-editorial-rail {
  gap: 14px;
}

.eb-editorial-card {
  flex: 0 0 520px;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-editorial-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.eb-editorial-card div {
  padding: 24px;
}

.eb-editorial-card h3 {
  margin: 0 0 10px;
  color: var(--eb-text);
  font-size: 21px;
  line-height: 1.15;
}

.eb-editorial-card p {
  margin: 0;
  color: var(--eb-text);
  font-size: 16px;
  line-height: 1.35;
}

.eb-feature {
  padding-top: 18px;
}

.eb-wide-promo {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
  overflow: hidden;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-wide-promo > img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.eb-wide-promo div {
  padding: 30px;
}

.eb-wide-promo span {
  display: block;
  margin-bottom: 12px;
  color: var(--eb-text);
  font-size: 25px;
  font-weight: 800;
}

.eb-wide-promo h2 {
  margin: 0 0 10px;
  color: var(--eb-text);
  font-size: 31px;
  line-height: 1.1;
}

.eb-wide-promo p {
  margin: 0 0 12px;
  color: var(--eb-text);
  line-height: 1.45;
}

.eb-wide-promo small {
  display: block;
  margin-bottom: 24px;
  color: var(--eb-muted);
}

.eb-wide-promo strong {
  width: max-content;
}

.eb-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.eb-app-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 135px;
  padding: 20px;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-app-card img {
  width: 100px;
  max-height: 78px;
  object-fit: contain;
}

.eb-app-card h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.eb-slot-banner {
  position: relative;
  display: block;
  min-height: 245px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--eb-navy-deep);
}

.eb-slot-banner picture,
.eb-slot-banner img {
  width: 100%;
  height: 100%;
}

.eb-slot-banner img {
  min-height: 245px;
  object-fit: cover;
}

.eb-slot-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 15, 34, 0.72), rgba(3, 15, 34, 0.18) 56%, rgba(3, 15, 34, 0));
}

.eb-slot-banner div {
  position: absolute;
  z-index: 1;
  left: 48px;
  top: 50%;
  width: min(520px, calc(100% - 96px));
  transform: translateY(-50%);
  color: #fff;
}

.eb-slot-banner h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 31px;
}

.eb-slot-banner p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.28;
}

.eb-trust-rail {
  gap: 14px;
}

.eb-trust-card {
  flex: 0 0 345px;
  min-height: 222px;
  padding: 24px;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-trust-card img {
  width: 92px;
  height: 76px;
  object-fit: contain;
  margin-bottom: 12px;
}

.eb-trust-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.15;
}

.eb-trust-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.eb-seo {
  padding: 30px 0 66px;
}

.eb-accordion {
  overflow: hidden;
  border: 1px solid var(--eb-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--eb-shadow);
}

.eb-accordion > button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 26px;
  border: 0;
  background: #fff;
  color: var(--eb-text);
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.eb-accordion > button img {
  width: 16px;
  transition: transform 180ms ease;
}

.eb-accordion:not(.is-open) > button img {
  transform: rotate(-90deg);
}

.eb-accordion__content {
  padding: 0 26px 26px;
  color: var(--eb-text);
}

.eb-accordion:not(.is-open) .eb-accordion__content {
  display: none;
}

.eb-accordion__content h1 {
  margin: 10px 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.eb-accordion__content h2 {
  margin: 24px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.eb-accordion__content p {
  margin: 0 0 12px;
  line-height: 1.55;
}

.eb-footer {
  background: #fff;
  color: var(--eb-text);
}

.eb-prefooter {
  padding: 48px 0 42px;
}

.eb-prefooter__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 30px 24px;
}

.eb-prefooter section {
  min-width: 0;
}

.eb-prefooter h3 {
  margin: 0 0 12px;
  color: var(--eb-text);
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
}

.eb-prefooter a,
.eb-prefooter p {
  display: block;
  margin: 0 0 9px;
  color: var(--eb-text);
  font-size: 16px;
  line-height: 1.25;
}

.eb-footer-cta {
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--eb-green);
  color: #fff !important;
  font-weight: 800;
}

.eb-footer__legal {
  background: var(--eb-navy);
  color: #fff;
  padding: 34px 0;
}

.eb-footer__legal h3 {
  margin: 28px 0 14px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}

.eb-footer__legal p {
  margin: 18px 0 0;
  color: #fff;
  line-height: 1.45;
}

.eb-responsible,
.eb-payment-row,
.eb-cert-row,
.eb-footer__brand-row,
.eb-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.eb-responsible img {
  max-height: 48px;
  max-width: 160px;
}

.eb-payment-row img {
  max-width: 88px;
  max-height: 34px;
  padding: 5px;
  border-radius: 4px;
  background: #fff;
}

.eb-cert-row img {
  max-width: 150px;
  max-height: 58px;
  padding: 4px;
  border-radius: 4px;
  background: #fff;
}

.eb-footer__brand-row {
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.eb-social span {
  font-weight: 800;
}

.eb-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.eb-footer__logo {
  max-width: 148px;
  background: #fff;
  border-radius: 4px;
  padding: 6px 10px;
}

.eb-company {
  font-size: 13px;
}

@media (max-width: 980px) {
  .eb-wrap {
    width: min(100% - 24px, var(--eb-page));
  }

  .eb-header__menu {
    display: inline-flex;
  }

  .eb-logo {
    width: 150px;
  }

  .eb-nav-row {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .eb-nav-tools {
    display: none;
  }

  .eb-hero__viewport {
    height: 260px;
  }

  .eb-bonus-card,
  .eb-editorial-card {
    flex-basis: 455px;
    grid-template-columns: 170px 1fr;
  }

  .eb-prefooter__grid {
    grid-template-columns: repeat(3, minmax(150px, 1fr));
  }
}

@media (max-width: 700px) {
  .eb-header__bar-inner {
    min-height: 58px;
    gap: 12px;
  }

  .eb-logo {
    width: 122px;
  }

  .eb-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .eb-header__actions {
    margin-left: 4px;
    gap: 6px;
  }

  .eb-header__actions .eb-button--dark {
    display: none !important;
  }

  .eb-header__actions .eb-button--primary {
    width: 92px;
    padding: 0 8px;
  }

  .eb-main-nav {
    gap: 14px;
  }

  .eb-main-nav a {
    font-size: 15px;
  }

  .eb-hero {
    padding-top: 18px;
  }

  .eb-hero__viewport {
    height: 330px;
  }

  .eb-hero__slide::after {
    background: linear-gradient(180deg, rgba(5, 13, 32, 0.82), rgba(5, 13, 32, 0.56) 55%, rgba(5, 13, 32, 0.12));
  }

  .eb-hero__copy {
    left: 20px;
    right: 20px;
    bottom: 24px;
    top: auto;
    width: min(315px, calc(100% - 40px)) !important;
    max-width: 315px !important;
    transform: none;
  }

  .eb-hero__copy h1 {
    font-size: 29px;
    max-width: 10.5ch;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .eb-hero__copy p {
    font-size: 16px;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .eb-hero__dots {
    top: 16px;
    right: 16px;
  }

  .eb-section__head h2 {
    font-size: 24px;
  }

  .eb-bonus-card,
  .eb-editorial-card {
    flex-basis: 86vw;
    grid-template-columns: 1fr;
  }

  .eb-bonus-card img,
  .eb-editorial-card img {
    height: 160px;
    min-height: 160px;
  }

  .eb-bonus-card p {
    margin-bottom: 18px;
  }

  .eb-live-card {
    flex-basis: 86vw;
  }

  .eb-virtual-card,
  .eb-trust-card {
    flex-basis: 82vw;
  }

  .eb-wide-promo,
  .eb-app-grid {
    grid-template-columns: 1fr;
  }

  .eb-wide-promo > img {
    min-height: 210px;
  }

  .eb-wide-promo div {
    padding: 22px;
  }

  .eb-app-card {
    grid-template-columns: 86px 1fr;
    gap: 14px;
  }

  .eb-slot-banner div {
    left: 22px;
    width: calc(100% - 44px);
  }

  .eb-slot-banner h2 {
    font-size: 27px;
  }

  .eb-slot-banner p {
    font-size: 18px;
  }

  .eb-prefooter__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eb-prefooter {
    padding: 32px 0;
  }

  .eb-footer__brand-row {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .eb-header__menu {
    width: 34px;
    height: 34px;
  }

  .eb-logo {
    width: 112px;
  }

  .eb-chip {
    min-height: 39px;
    padding: 0 12px;
  }

  .eb-section__head {
    align-items: flex-end;
  }

  .eb-rail-actions {
    gap: 7px;
  }

  .eb-accordion > button {
    padding: 0 18px;
    font-size: 18px;
  }

  .eb-accordion__content {
    padding: 0 18px 22px;
  }
}
