:root {
  --wb-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.icms-body-toolbox{ display:none; }

/* ===== PAGE WIDTH ===== */
.container {
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   HERO
================================================================ */
.wb-hero {
  padding: 18px 0 20px;
  border-bottom: 1px solid #e4e6ed;
  margin-bottom: 24px;
}
.wb-hero h1 {
  font-size: 25px;
  font-weight: 700;
  color: #181818;
  margin: 0 0 8px 0;
  font-family: var(--wb-font);
  line-height: 1.3;
}
.wb-hero p {
  font-size: 16px;
  color: #2a2e38;
  margin: 0;
  font-family: var(--wb-font);
  line-height: 1.6;
}

/* ================================================================
   LAYOUT (main + sidebar)
================================================================ */
.wb-art-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 26px;
  align-items: start;
  margin-bottom: 32px;
  font-family: var(--wb-font);
}

/* ================================================================
   FEATURED ARTICLE
================================================================ */
.wb-art-section-hd {
  font-size: 17px;
  font-weight: 700;
  color: #181818;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding-bottom: 10px;
  border-bottom: 2px solid #193b56;
  margin: 0 0 16px;
  font-family: var(--wb-font);
}
.wb-featured {
  display: block;
  border: 1px solid #e4e6ed;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  margin-bottom: 22px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.wb-featured:hover {
  border-color: #468AFD;
  box-shadow: 0 6px 18px rgba(70, 138, 253, 0.13);
  transform: translateY(-2px);
}
.wb-featured-thumb {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #dde3ef;
  overflow: hidden;
}
.wb-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.wb-featured:hover .wb-featured-thumb img { transform: scale(1.03); }
.wb-featured-body { padding: 18px 20px 20px; }
.wb-featured-cat {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 8px;
  font-family: var(--wb-font);
}
.wb-featured-title {
  font-size: 22px;
  font-weight: 700;
  color: #181818;
  line-height: 1.32;
  margin: 0 0 9px;
  font-family: var(--wb-font);
  transition: color 0.15s;
}
.wb-featured:hover .wb-featured-title { color: #468AFD; }
.wb-featured-excerpt {
  font-size: 16px;
  color: #2a2e38;
  line-height: 1.6;
  margin: 0 0 12px;
  font-family: var(--wb-font);
}
.wb-featured-meta {
  font-size: 12.5px;
  color: #999;
  font-family: var(--wb-font);
}

/* ================================================================
   ARTICLE GRID (2-col cards)
================================================================ */
.wb-art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.wb-art-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e6ed;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.wb-art-card:hover {
  border-color: #468AFD;
  box-shadow: 0 4px 14px rgba(70, 138, 253, 0.12);
  transform: translateY(-2px);
}
.wb-art-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #dde3ef;
  overflow: hidden;
}
.wb-art-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.wb-art-card:hover .wb-art-card-thumb img { transform: scale(1.04); }
.wb-art-card-body {
  padding: 13px 15px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wb-art-card-cat {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
  font-family: var(--wb-font);
}
.wb-art-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #181818;
  line-height: 1.4;
  margin: 0 0 8px;
  font-family: var(--wb-font);
  transition: color 0.15s;
}
.wb-art-card:hover .wb-art-card-title { color: #468AFD; }
.wb-art-card-date {
  font-size: 12.5px;
  color: #999;
  margin-top: auto;
  font-family: var(--wb-font);
}

/* Hidden cards — revealed by Show more */
.wb-art-card--more { display: none; }
.wb-art-card--more.is-visible { display: flex; }

/* Show more toggle */
.wb-showmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.wb-showmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  background: #fff;
  color: #181818;
  border: 1.5px solid #193b56;
  font-family: var(--wb-font);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.wb-showmore:hover { background: #193b56; color: #fff; }
.wb-showmore-arrow { transition: transform 0.2s ease; }
.wb-showmore.is-expanded .wb-showmore-arrow { transform: rotate(180deg); }

/* Category colours (shared) */
.wb-cat-football  { color: #1a7a36; }
.wb-cat-analytics { color: #5b20a0; }
.wb-cat-nfl       { color: #b8430d; }

/* ================================================================
   SIDEBAR (promo codes — reused from homepage)
================================================================ */
.wb-art-side { font-family: var(--wb-font); }
.wb-side-block { margin-bottom: 24px; }
.wb-side-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #777;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 2px solid #193b56;
  font-family: var(--wb-font);
}

/* Topics collapsible — desktop default: static, always open */
.wb-topics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #193b56;
  text-align: left;
  cursor: default;
}
.wb-topics-chevron {
  flex-shrink: 0;
  color: #468AFD;
  display: none;
  transition: transform 0.25s ease;
}
.wb-topics-list { display: block; }
.wb-topics-list-inner { display: block; }

/* Category nav in sidebar */
.wb-side-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border: 1px solid #e4e6ed;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  margin-bottom: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: #2a2e38;
  font-family: var(--wb-font);
  transition: border-color 0.15s, background-color 0.15s;
}
.wb-side-cat:hover { border-color: #468AFD; background: #f8f9ff; color: #468AFD; }
.wb-side-cat--all {
  background: #193b56;
  border-color: #193b56;
  color: #fff;
}
.wb-side-cat--all:hover { background: #214c6e; border-color: #214c6e; color: #fff; }

/* ================================================================
   SEO TEXT (collapsible)
================================================================ */
.wb-seo {
  border: 1px solid #e4e6ed;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 22px;
  font-family: var(--wb-font);
  padding: 16px 20px 14px;
}
.wb-seo-title {
  font-size: 17px;
  font-weight: 700;
  color: #181818;
  margin: 0 0 12px;
  font-family: var(--wb-font);
}
.wb-seo-clip {
  position: relative;
  overflow: hidden;
  max-height: 272px; /* ~10 lines at 16px / 1.7 */
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.wb-seo.is-open .wb-seo-clip { max-height: 2400px; }
.wb-seo-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 88%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wb-seo.is-open .wb-seo-fade { opacity: 0; }
.wb-seo-inner {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2e38;
}
.wb-seo-inner > :first-child { margin-top: 0; }
.wb-seo-inner > :last-child { margin-bottom: 0; }
.wb-seo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 18px;
  border: 1.5px solid #193b56;
  border-radius: 6px;
  background: #fff;
  color: #193b56;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--wb-font);
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.wb-seo-toggle:hover { background: #193b56; color: #fff; }
.wb-seo-chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.wb-seo.is-open .wb-seo-chevron { transform: rotate(180deg); }
.wb-seo-inner h3 {
  font-size: 16px;
  font-weight: 700;
  color: #181818;
  margin: 20px 0 8px;
}
.wb-seo-inner p { margin: 0 0 12px; }
.wb-seo-inner ul { margin: 0 0 12px; padding-left: 20px; }
.wb-seo-inner li { margin-bottom: 6px; }
.wb-seo-inner strong { color: #181818; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
  .wb-art-layout { grid-template-columns: 1fr; gap: 28px; }
  .wb-hero h1 { font-size: 23px; }
  .wb-featured-title { font-size: 20px; }

  /* Sidebar on top */
  .wb-art-side { order: -1; }
  .wb-art-main { order: 0; }
  .wb-side-block.wb-topics { margin-bottom: 0; }

  /* Collapsible topics — closed by default */
  .wb-topics-head { cursor: pointer; margin-bottom: 0; }
  .wb-topics-chevron { display: block; }
  .wb-topics.is-open .wb-topics-chevron { transform: rotate(180deg); }
  .wb-topics-list {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .wb-topics.is-open .wb-topics-list { grid-template-rows: 1fr; }
  .wb-topics-list-inner { min-height: 0; overflow: hidden; padding-top: 10px; }
}
@media (max-width: 640px) {
  .wb-hero { padding: 14px 0 16px; margin-bottom: 18px; }
  .wb-hero h1 { font-size: 20px; line-height: 1.3; margin-bottom: 6px; }
  .wb-hero p { font-size: 15px; line-height: 1.5; }
  .wb-art-grid { grid-template-columns: 1fr; gap: 12px; }
  .wb-art-section-hd { font-size: 14.5px; letter-spacing: 0.3px; }
  .wb-featured-title { font-size: 18px; }
  .wb-featured-excerpt { font-size: 15px; }
  .wb-featured-body { padding: 15px 16px 17px; }
  .wb-seo-title { font-size: 16px; }
  .wb-seo-inner { font-size: 15px; }
  .wb-seo-clip { max-height: 255px; }
  .wb-showmore { width: 100%; justify-content: center; box-sizing: border-box; font-size: 13.5px; padding: 12px 20px; }
}