/*
Theme Name: Child Hueman Theme
Theme URI: http://example.com/twenty-fifteen-child/
description: >-
  Child Hueman Theme
Author: Sean Roberts
Author URI: http://example.com
Template: hueman
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: Hueman-child
*/

/* Template Pages: Blog, Guides, Strategy, and hub pages */

/* Keep sticky hub/filter bars below the top theme menu. */
:root {
  --cppt-sticky-nav-offset: 56px;
}

.blog-index-page .blog-hero {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  color: #fff;
  padding: 56px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 12px;
}

.blog-index-page .blog-hero-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.blog-index-page .blog-hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #fff;
}

.blog-index-page .blog-hero-subtitle {
  font-size: 17px;
  margin: 0 0 26px;
  opacity: .95;
}

.blog-index-page .blog-search-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.blog-index-page .blog-search-input,
.blog-index-page .blog-search-btn {
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
}

.blog-index-page .blog-search-input {
  flex: 1;
}

.blog-index-page .blog-search-btn {
  background: #0a6f67;
  color: #fff;
  cursor: pointer;
}

.blog-index-page .section-title {
  font-size: 27px;
  margin: 0 0 24px;
  border-bottom: 3px solid #0d9488;
  padding-bottom: 10px;
}

.blog-index-page .category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 42px;
}

.blog-index-page .category-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.blog-index-page .category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .18);
}

.blog-index-page .category-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.blog-index-page .category-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform .28s ease, box-shadow .28s ease;
}

.blog-index-page .category-icon i {
  font-size: 24px;
  line-height: 1;
  color: var(--icon-color, #0f766e);
  transition: transform .28s ease;
}

.blog-index-page .category-card:hover .category-icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 24px rgba(255, 255, 255, .42);
}

.blog-index-page .category-card:hover .category-icon i {
  animation: cpptIconBounce .45s ease;
}

.blog-index-page .category-header.analysis {
  --icon-color: #2563eb;
  background: linear-gradient(135deg, #2f80ff, #5b7cff);
}

.blog-index-page .category-header.ai {
  --icon-color: #0369a1;
  background: linear-gradient(135deg, #22d3ee, #0ea5e9);
}

.blog-index-page .category-header.mindset {
  --icon-color: #db2777;
  background: linear-gradient(135deg, #ff3f9a, #f43f5e);
}

.blog-index-page .category-header.academy {
  --icon-color: #5b21b6;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.blog-index-page .category-header.matched {
  --icon-color: #0f766e;
  background: linear-gradient(135deg, #34d399, #14b8a6);
}

.blog-index-page .category-header.trading {
  --icon-color: #b45309;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.blog-index-page .category-header.must {
  --icon-color: #be123c;
  background: linear-gradient(135deg, #fb7185, #f43f5e);
}

.blog-index-page .category-header.winning {
  --icon-color: #92400e;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.blog-index-page .category-header.all {
  --icon-color: #334155;
  background: linear-gradient(135deg, #64748b, #475569);
}

.blog-index-page .category-card h3 {
  margin: 14px 14px 8px;
  font-size: 18px;
}

.blog-index-page .category-card p {
  margin: 0 14px 14px;
  color: #6b7280;
}

.blog-index-page .articles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 36px;
}

.blog-index-page .article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.blog-index-page .article-image {
  height: 180px;
  overflow: hidden;
}

.blog-index-page .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-index-page .article-content {
  padding: 18px;
}

.blog-index-page .article-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  margin-bottom: 10px;
}

.blog-index-page .article-date {
  color: #0d9488;
  font-weight: 600;
}

.blog-index-page .article-category {
  color: #6b7280;
}

.blog-index-page .article-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
}

.blog-index-page .article-excerpt {
  color: #6b7280;
}

.blog-index-page .read-more {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
}

.blog-index-page .blog-pagination {
  text-align: center;
  margin: 28px 0 40px;
}

.blog-index-page .blog-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin: 0 3px;
}

.blog-index-page .blog-pagination .current {
  background: #0d9488;
  color: #fff;
  border-color: #0d9488;
}

.blog-index-page .expert-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-index-page .expert-card {
  background: #fff;
  border-left: 4px solid #0d9488;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.blog-index-page .expert-link {
  color: #0d9488;
  text-decoration: none;
  font-weight: 600;
}

@keyframes cpptIconBounce {
  0% { transform: translateY(0); }
  35% { transform: translateY(-3px); }
  70% { transform: translateY(1px); }
  100% { transform: translateY(0); }
}

.guides-hub-page .guides-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 28px;
  border-radius: 12px;
}

.guides-hub-page .guides-hero-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.guides-hub-page .guides-hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}

.guides-hub-page .guides-hero-subtitle {
  font-size: 18px;
  opacity: .88;
  margin: 0;
  line-height: 1.6;
}

.guides-hub-page .guides-filter-nav {
  margin-bottom: 36px;
  position: sticky;
  top: var(--cppt-sticky-nav-offset);
  z-index: 5;
  background: #f8fafc;
  padding: 10px 0;
  border-bottom: 2px solid #e2e8f0;
}

.guides-hub-page .guides-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.guides-hub-page .guides-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.guides-hub-page .guides-filter-btn i {
  font-size: 12px;
}

.guides-hub-page .guides-filter-btn:hover,
.guides-hub-page .guides-filter-btn.is-active {
  background: #3730a3;
  color: #fff;
  border-color: #3730a3;
}

.guides-hub-page .guides-filter-btn:focus-visible {
  outline: 3px solid #a5b4fc;
  outline-offset: 2px;
}

.guides-hub-page .guides-sections-wrap {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.guides-hub-page .guides-section.is-hidden {
  display: none;
}

.guides-hub-page .guides-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.guides-hub-page .guides-section-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
}

.guides-hub-page .guides-section-meta {
  flex: 1;
  min-width: 0;
}

.guides-hub-page .guides-section-heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 3px;
  line-height: 1.2;
  border: none;
  padding: 0;
}

.guides-hub-page .guides-section-desc {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.guides-hub-page .guides-view-all-link {
  font-size: 14px;
  font-weight: 600;
  color: #3730a3;
  text-decoration: none;
  white-space: nowrap;
  margin-left: auto;
}

.guides-hub-page .guides-view-all-link:hover {
  text-decoration: underline;
}

.guides-hub-page .guides-badge-academy { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.guides-hub-page .guides-badge-matched { background: linear-gradient(135deg, #34d399, #14b8a6); color: #064e3b; }
.guides-hub-page .guides-badge-trading { background: linear-gradient(135deg, #f59e0b, #f97316); color: #431407; }
.guides-hub-page .guides-badge-winning { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #78350f; }
.guides-hub-page .guides-badge-mindset { background: linear-gradient(135deg, #ff3f9a, #f43f5e); }
.guides-hub-page .guides-badge-ai { background: linear-gradient(135deg, #22d3ee, #0ea5e9); color: #0c4a6e; }
.guides-hub-page .guides-badge-analysis { background: linear-gradient(135deg, #2f80ff, #5b7cff); }
.guides-hub-page .guides-badge-must { background: linear-gradient(135deg, #fb7185, #f43f5e); }
.guides-hub-page .guides-badge-shared { background: linear-gradient(135deg, #6366f1, #4338ca); }

.guides-hub-page .guides-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.guides-hub-page .guides-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.guides-hub-page .guides-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
}

.guides-hub-page .guides-card-link {
  display: block;
  text-decoration: none;
}

.guides-hub-page .guides-card-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #e2e8f0;
}

.guides-hub-page .guides-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.guides-hub-page .guides-card:hover .guides-card-img-wrap img {
  transform: scale(1.05);
}

.guides-hub-page .guides-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.guides-hub-page .guides-card-category-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  letter-spacing: .3px;
}

.guides-hub-page .guides-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guides-hub-page .guides-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}

.guides-hub-page .guides-card-title a {
  text-decoration: none;
  color: #0f172a;
}

.guides-hub-page .guides-card-title a:hover {
  color: #3730a3;
}

.guides-hub-page .guides-card-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 12px;
  flex: 1;
}

.guides-hub-page .guides-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #3730a3;
  text-decoration: none;
  margin-top: auto;
}

.guides-hub-page .guides-card-cta:hover {
  text-decoration: underline;
}

.guides-hub-page .guides-card-cta i {
  font-size: 11px;
  transition: transform .2s ease;
}

.guides-hub-page .guides-card:hover .guides-card-cta i {
  transform: translateX(3px);
}

.guides-hub-page .guides-empty-msg {
  color: #6b7280;
  font-style: italic;
  padding: 8px 0;
}

.guides-hub-page .guides-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guides-hub-page .guides-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dbe4f3;
  background: #f8fbff;
  color: #312e81;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.guides-hub-page .guides-link-card:hover {
  transform: translateY(-3px);
  border-color: #a5b4fc;
  box-shadow: 0 10px 20px rgba(49, 46, 129, .12);
}

.strategy-hub-page .strategy-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 36px;
  border-radius: 12px;
}

.strategy-hub-page .strategy-hero-wrap {
  max-width: 740px;
  margin: 0 auto;
}

.strategy-hub-page .strategy-hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}

.strategy-hub-page .strategy-hero-subtitle {
  font-size: 18px;
  opacity: .88;
  margin: 0;
  line-height: 1.6;
}

.strategy-hub-page .strategy-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.strategy-hub-page .strategy-accordion-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .08);
  border: 1px solid #e2e8f0;
  background: #fff;
}

.strategy-hub-page .strategy-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: #fff;
  position: relative;
}

.strategy-hub-page .strategy-accordion-trigger:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: -3px;
}

.strategy-hub-page .strategy-accordion-trigger.hub { background: linear-gradient(135deg, #2f80ff, #5b7cff); }
.strategy-hub-page .strategy-accordion-trigger.winning { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #78350f; }
.strategy-hub-page .strategy-accordion-trigger.matched { background: linear-gradient(135deg, #34d399, #14b8a6); color: #064e3b; }
.strategy-hub-page .strategy-accordion-trigger.trading { background: linear-gradient(135deg, #f59e0b, #f97316); color: #431407; }
.strategy-hub-page .strategy-accordion-trigger.mindset { background: linear-gradient(135deg, #ff3f9a, #f43f5e); }
.strategy-hub-page .strategy-accordion-trigger.ai { background: linear-gradient(135deg, #22d3ee, #0ea5e9); color: #0c4a6e; }
.strategy-hub-page .strategy-accordion-trigger.analysis { background: linear-gradient(135deg, #2f80ff, #5b7cff); }
.strategy-hub-page .strategy-accordion-trigger.must { background: linear-gradient(135deg, #fb7185, #f43f5e); }

.strategy-hub-page .strategy-acc-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  font-size: 20px;
}

.strategy-hub-page .strategy-acc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.strategy-hub-page .strategy-acc-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.strategy-hub-page .strategy-acc-desc {
  font-size: 13px;
  opacity: .82;
}

.strategy-hub-page .strategy-acc-count {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
  white-space: nowrap;
  flex-shrink: 0;
}

.strategy-hub-page .strategy-acc-chevron {
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .35s ease;
}

.strategy-hub-page .strategy-accordion-item.is-open .strategy-acc-chevron {
  transform: rotate(180deg);
}

.strategy-hub-page .strategy-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.strategy-hub-page .strategy-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 22px 0;
}

.strategy-hub-page .strategy-article-card {
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.strategy-hub-page .strategy-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .1);
}

.strategy-hub-page .strategy-article-img {
  height: 150px;
  overflow: hidden;
}

.strategy-hub-page .strategy-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.strategy-hub-page .strategy-article-card:hover .strategy-article-img img {
  transform: scale(1.04);
}

.strategy-hub-page .strategy-article-body {
  padding: 14px;
}

.strategy-hub-page .strategy-article-date {
  font-size: 11px;
  color: #0d9488;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.strategy-hub-page .strategy-article-title {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 8px;
}

.strategy-hub-page .strategy-article-title a {
  text-decoration: none;
  color: #0f172a;
}

.strategy-hub-page .strategy-article-title a:hover {
  color: #0d9488;
}

.strategy-hub-page .strategy-article-excerpt {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 10px;
  line-height: 1.5;
}

.strategy-hub-page .strategy-read-more {
  font-size: 13px;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
}

.strategy-hub-page .strategy-read-more:hover {
  text-decoration: underline;
}

.strategy-hub-page .strategy-view-all-wrap {
  padding: 16px 22px 20px;
  text-align: right;
  border-top: 1px solid #f1f5f9;
  margin-top: 16px;
}

.strategy-hub-page .strategy-view-all {
  font-size: 14px;
  font-weight: 600;
  color: #0d9488;
  text-decoration: none;
}

.strategy-hub-page .strategy-view-all:hover {
  text-decoration: underline;
}

.strategy-hub-page .strategy-no-posts {
  padding: 24px 22px;
  color: #6b7280;
  font-style: italic;
}

.sport-tipsters-page .sport-tipsters-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
  color: #fff;
  padding: 56px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 28px;
}

.sport-tipsters-page .sport-tipsters-hero-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.sport-tipsters-page .sport-tipsters-hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}

.sport-tipsters-page .sport-tipsters-hero-subtitle {
  font-size: 17px;
  margin: 0;
  opacity: .9;
}

.sport-tipsters-page .sport-tipsters-hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.sport-tipsters-page .sport-tipsters-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.sport-tipsters-page .sport-tipsters-hero-cta-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 700;
  text-decoration: none;
}

.sport-tipsters-page .sport-tipsters-hero-cta-secondary:hover,
.sport-tipsters-page .sport-tipsters-hero-cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.sport-tipsters-page .sport-tipsters-filter-nav {
  position: sticky;
  top: var(--cppt-sticky-nav-offset);
  z-index: 5;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 34px;
  padding: 10px 0;
}

.sport-tipsters-page .sport-tipsters-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sport-tipsters-page .sport-tipsters-filter-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  padding: 8px 14px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.sport-tipsters-page .sport-tipsters-filter-btn:hover,
.sport-tipsters-page .sport-tipsters-filter-btn.is-active {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}

.sport-tipsters-page .sport-tipsters-sections-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sport-tipsters-page .sport-tipsters-section.is-hidden {
  display: none;
}

.sport-tipsters-page .sport-tipsters-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sport-tipsters-page .sport-tipsters-section-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.sport-tipsters-page .sport-tipsters-section-meta {
  flex: 1;
  min-width: 0;
}

.sport-tipsters-page .sport-tipsters-section-heading {
  margin: 0 0 4px;
  font-size: 24px;
  border: 0;
  padding: 0;
}

.sport-tipsters-page .sport-tipsters-section-desc {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.sport-tipsters-page .sport-tipsters-view-all-link {
  margin-left: auto;
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 700;
}

.sport-tipsters-page .sport-tipsters-view-all-link:hover {
  text-decoration: underline;
}

.sport-tipsters-page .sport-badge-winning { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #78350f; }
.sport-tipsters-page .sport-badge-failed { background: linear-gradient(135deg, #f87171, #dc2626); }
.sport-tipsters-page .sport-badge-newspaper { background: linear-gradient(135deg, #64748b, #334155); }
.sport-tipsters-page .sport-badge-picking { background: linear-gradient(135deg, #22c55e, #0f766e); }
.sport-tipsters-page .sport-badge-expert { background: linear-gradient(135deg, #8b5cf6, #4f46e5); }
.sport-tipsters-page .sport-badge-links { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.sport-tipsters-page .sport-badge-shared { background: linear-gradient(135deg, #6366f1, #4338ca); }
.sport-tipsters-page .sport-badge-trading { background: linear-gradient(135deg, #10b981, #047857); }

.sport-tipsters-page .sport-tipsters-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sport-tipsters-page .sport-tipsters-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sport-tipsters-page .sport-tipsters-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.sport-tipsters-page .sport-tipsters-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
}

.sport-tipsters-page .sport-tipsters-card-img-wrap {
  height: 170px;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

.sport-tipsters-page .sport-tipsters-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.sport-tipsters-page .sport-tipsters-card:hover .sport-tipsters-card-img-wrap img {
  transform: scale(1.05);
}

.sport-tipsters-page .sport-tipsters-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
}

.sport-tipsters-page .sport-tipsters-card-category-pill {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.sport-tipsters-page .sport-tipsters-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sport-tipsters-page .sport-tipsters-card-title {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.sport-tipsters-page .sport-tipsters-card-title a {
  color: #0f172a;
  text-decoration: none;
}

.sport-tipsters-page .sport-tipsters-card-title a:hover {
  color: #1d4ed8;
}

.sport-tipsters-page .sport-tipsters-card-excerpt {
  font-size: 13px;
  line-height: 1.5;
  color: #6b7280;
  margin: 0 0 12px;
  flex: 1;
}

.sport-tipsters-page .sport-tipsters-card-cta {
  color: #1d4ed8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sport-tipsters-page .sport-tipsters-card-cta:hover {
  text-decoration: underline;
}

.sport-tipsters-page .sport-tipsters-empty-msg {
  color: #64748b;
  font-style: italic;
  margin: 8px 0 0;
}

.sport-tipsters-page .sport-tipsters-expert-panels .tfe-top-panels {
  margin-top: 4px;
}

.sport-tipsters-page .sport-tipsters-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sport-tipsters-page .sport-tipsters-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #dbe4f3;
  background: #f8fbff;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sport-tipsters-page .sport-tipsters-link-card:hover {
  transform: translateY(-3px);
  border-color: #93c5fd;
  box-shadow: 0 10px 20px rgba(30, 58, 138, .12);
}

.sport-tipsters-page .sport-tipsters-content-slot {
  margin: 10px 0;
}

.sport-tipsters-page .sport-tipsters-content-slot-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

.sport-tipsters-page .sport-tipsters-content-slot-inner > :first-child {
  margin-top: 0;
}

.sport-tipsters-page .sport-tipsters-content-slot-inner > :last-child {
  margin-bottom: 0;
}

.sport-tipsters-page .sport-tipsters-content-slot-inner h2,
.sport-tipsters-page .sport-tipsters-content-slot-inner h3,
.sport-tipsters-page .sport-tipsters-content-slot-inner h4 {
  color: #0f172a;
}

.sport-tipsters-page .sport-tipsters-content-slot-inner p,
.sport-tipsters-page .sport-tipsters-content-slot-inner li {
  color: #334155;
}

.guides-hub-page .guides-content-slot {
  margin: 10px 0;
}

.guides-hub-page .guides-content-slot-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

.guides-hub-page .guides-content-slot-inner > :first-child {
  margin-top: 0;
}

.guides-hub-page .guides-content-slot-inner > :last-child {
  margin-bottom: 0;
}

.guides-hub-page .guides-content-slot-inner h2,
.guides-hub-page .guides-content-slot-inner h3,
.guides-hub-page .guides-content-slot-inner h4 {
  color: #0f172a;
}

.guides-hub-page .guides-content-slot-inner p,
.guides-hub-page .guides-content-slot-inner li {
  color: #334155;
}

@media (prefers-reduced-motion: reduce) {
  .blog-index-page .category-card,
  .blog-index-page .category-icon,
  .blog-index-page .category-icon i,
  .strategy-hub-page .strategy-accordion-body,
  .strategy-hub-page .strategy-acc-chevron,
  .strategy-hub-page .strategy-article-card,
  .strategy-hub-page .strategy-article-img img,
  .sport-tipsters-page .sport-tipsters-card,
  .sport-tipsters-page .sport-tipsters-card-img-wrap img,
  .sport-tipsters-page .sport-tipsters-filter-btn,
  .sport-tipsters-page .sport-tipsters-link-card,
  .guides-hub-page .guides-filter-btn,
  .guides-hub-page .guides-card,
  .guides-hub-page .guides-card-img-wrap img,
  .guides-hub-page .guides-card-cta i,
  .guides-hub-page .guides-link-card {
    transition: none;
    animation: none;
  }
}

@media (max-width: 1200px) {
  .sport-tipsters-page .sport-tipsters-card-grid,
  .guides-hub-page .guides-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .blog-index-page .articles-list {
    grid-template-columns: 1fr;
  }

  .strategy-hub-page .strategy-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sport-tipsters-page .sport-tipsters-card-grid,
  .sport-tipsters-page .sport-tipsters-card-grid-3,
  .guides-hub-page .guides-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sport-tipsters-page .sport-tipsters-links-grid,
  .guides-hub-page .guides-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-index-page .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-index-page .expert-cards {
    grid-template-columns: 1fr;
  }

  .blog-index-page .category-card-latest {
    display: none;
  }

  .blog-index-page .category-card p {
    display: none;
  }

  .blog-index-page .category-card h3 {
    margin: 14px;
    font-size: 16px;
  }

  .blog-index-page .blog-hero-title,
  .strategy-hub-page .strategy-hero-title,
  .sport-tipsters-page .sport-tipsters-hero-title {
    font-size: 30px;
    color: #fff;
  }

  .sport-tipsters-page .sport-tipsters-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sport-tipsters-page .sport-tipsters-hero-cta,
  .sport-tipsters-page .sport-tipsters-hero-cta-secondary {
    width: 100%;
  }

  .guides-hub-page .guides-hero-title {
    font-size: 30px;
  }

  .guides-hub-page .guides-card-grid {
    grid-template-columns: 1fr;
  }

  .guides-hub-page .guides-view-all-link {
    margin-left: 0;
    width: 100%;
  }

  .guides-hub-page .guides-section-header {
    gap: 10px;
  }

  .guides-hub-page .guides-filter-list {
    gap: 6px;
  }

  .guides-hub-page .guides-filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .strategy-hub-page .strategy-acc-desc,
  .strategy-hub-page .strategy-acc-count {
    display: none;
  }

  .strategy-hub-page .strategy-article-grid {
    grid-template-columns: 1fr;
    padding: 14px 14px 0;
  }

  .strategy-hub-page .strategy-view-all-wrap {
    padding: 14px 14px 16px;
  }

  .strategy-hub-page .strategy-accordion-trigger {
    padding: 14px 16px;
    gap: 12px;
  }

  .strategy-hub-page .strategy-acc-title {
    font-size: 16px;
  }

  .sport-tipsters-page .sport-tipsters-section-heading,
  .guides-hub-page .guides-section-heading {
    font-size: 20px;
  }

  .sport-tipsters-page .sport-tipsters-view-all-link {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .sport-tipsters-page .sport-tipsters-card-grid,
  .sport-tipsters-page .sport-tipsters-card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sport-tipsters-page .sport-tipsters-links-grid {
    grid-template-columns: 1fr;
  }

  .sport-tipsters-page .sport-tipsters-card-img-wrap {
    height: 110px;
  }

  .sport-tipsters-page .sport-tipsters-card-excerpt {
    display: none;
  }

  .sport-tipsters-page .sport-tipsters-card-title {
    font-size: 13px;
  }

  .sport-tipsters-page .sport-tipsters-card-cta {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .guides-hub-page .guides-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guides-hub-page .guides-links-grid {
    grid-template-columns: 1fr;
  }

  .guides-hub-page .guides-card-excerpt {
    display: none;
  }

  .guides-hub-page .guides-card-img-wrap {
    height: 120px;
  }

  .guides-hub-page .guides-filter-nav,
  .sport-tipsters-page .sport-tipsters-filter-nav,
  .blog-index-page .blog-filter-nav,
  .jump-page .jump-pill-nav {
    position: static;
    top: auto;
  }
}

/* Blog index: topic filter nav */

.blog-index-page .blog-filter-nav {
  position: sticky;
  top: var(--cppt-sticky-nav-offset);
  z-index: 5;
  background: #f8fafc;
  padding: 10px 0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 34px;
}

.blog-index-page .blog-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.blog-index-page .blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.blog-index-page .blog-filter-btn i {
  font-size: 12px;
}

.blog-index-page .blog-filter-btn:hover,
.blog-index-page .blog-filter-btn.is-active {
  background: #0d9488;
  color: #fff;
  border-color: #0d9488;
}

.blog-index-page .blog-filter-btn:focus-visible {
  outline: 3px solid #99f6e4;
  outline-offset: 2px;
}

.blog-index-page .blog-empty-msg {
  color: #6b7280;
  font-style: italic;
  padding: 20px 0;
}

@media (prefers-reduced-motion: reduce) {
  .blog-index-page .blog-filter-btn {
    transition: none;
  }
}

/* =====================================================
   Jump Page template
   ===================================================== */

.jump-page .jump-hero {
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 0;
  border-radius: 12px;
}

.jump-page .jump-hero-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.jump-page .jump-hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}

.jump-page .jump-hero-subtitle {
  font-size: 18px;
  opacity: .88;
  margin: 0;
  line-height: 1.6;
  color: #fff;
}

.jump-page .jump-pill-nav {
  position: sticky;
  top: var(--cppt-sticky-nav-offset);
  z-index: 5;
  background: #f8fafc;
  padding: 10px 0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 36px;
}

.jump-page .jump-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.jump-page .jump-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #374151;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.jump-page .jump-pill-btn i {
  font-size: 12px;
}

.jump-page .jump-pill-btn:hover,
.jump-page .jump-pill-btn:focus-visible {
  background: #0d9488;
  color: #fff;
  border-color: #0d9488;
  text-decoration: none;
  transform: translateY(-1px);
}

.jump-page .jump-pill-btn:focus-visible {
  outline: 3px solid #99f6e4;
  outline-offset: 2px;
}

.jump-page .jump-page-content {
  padding-top: 8px;
}

@media (max-width: 768px) {
  .jump-page .jump-hero-title {
    font-size: 30px;
  }

  .jump-page .jump-hero {
    padding: 40px 16px;
  }

  .jump-page .jump-pill-list {
    gap: 6px;
  }

  .jump-page .jump-pill-btn {
    font-size: 12px;
    padding: 7px 14px;
  }

  .guides-hub-page .guides-filter-nav,
  .sport-tipsters-page .sport-tipsters-filter-nav,
  .blog-index-page .blog-filter-nav,
  .jump-page .jump-pill-nav {
    position: static;
    top: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jump-page .jump-pill-btn {
    transition: none;
  }
}

body.single-tipster p {
  margin-bottom: 1em !important;
}

.compare-seo-intro {
  margin: 20px 0 16px;
}

.compare-seo-faq {
  margin: 24px 0;
}

.comparison-action-section {
  text-align: center;
  margin: 30px 0;
}

.compare-tipsters-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0066cc;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin: 15px 0;
}

.compare-tipsters-btn:hover,
.compare-tipsters-btn:focus-visible {
  background-color: #0053a6;
  color: #fff;
  text-decoration: none;
}

.comparison-action-note {
  color: #666;
  font-size: .9em;
  margin-top: 10px;
}

.sport-hub-link {
  display: inline-block;
  margin: 10px 0;
}

.cppt-inline-content-link {
  color: #0066cc;
  text-decoration: underline;
}

.cppt-recent-post-snippet {
  padding: 5px;
}

#credit.cppt-credit-hidden {
  display: none;
}

.cppt-footer-customize-note {
  text-transform: none;
  text-align: right;
}

.cppt-footer-customize-link {
  color: #fff;
  text-decoration: underline;
}

/* =====================================================
   Homepage Hub template
   ===================================================== */

.home-hub-page .home-hero {
  color: #fff;
  padding: 64px 20px;
  margin-bottom: 0;
  border-radius: 12px;
}

.home-hub-page .home-hero-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-hub-page .home-hero-title {
  margin: 0 0 12px;
  font-size: 42px;
  line-height: 1.12;
  color: #fff;
  font-weight: 800;
}

.home-hub-page .home-hero-subtitle {
  margin: 0 auto 24px;
  max-width: 740px;
  font-size: 18px;
  line-height: 1.6;
  opacity: .9;
  color: #fff;
}

.home-hub-page .home-hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.home-hub-page .home-hero-search input[type='search'] {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .95);
  color: #0f172a;
  font-size: 15px;
}

.home-hub-page .home-hero-search button {
  min-height: 48px;
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.home-hub-page .home-hero-search button:hover,
.home-hub-page .home-hero-search button:focus-visible {
  background: #020617;
}

.home-hub-page .home-tipster-hub {
  margin: 0 0 28px;
  padding: 28px 0 8px;
}

.home-hub-page .home-tipster-hub-header {
  text-align: center;
  margin-bottom: 22px;
}

.home-hub-page .home-tipster-hub-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
  line-height: 1.3;
}

.home-hub-page .home-tipster-hub-subtitle {
  font-size: 15px;
  color: #475569;
  margin: 0;
}

.home-hub-page .home-tipster-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.home-hub-page .home-tipster-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 16px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #f8fafc;
  color: #1e293b;
  text-decoration: none;
  text-align: center;
  transition: box-shadow .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
  will-change: transform;
}

.home-hub-page .home-tipster-card:hover,
.home-hub-page .home-tipster-card:focus-visible {
  background: #eff6ff;
  border-color: #93c5fd;
  box-shadow: 0 8px 24px rgba(29, 78, 216, .15);
  text-decoration: none;
  color: #1e3a8a;
  transform: translateY(-5px);
}

.home-hub-page .home-tipster-card-icon {
  font-size: 36px;
  line-height: 1;
  display: block;
  transition: transform .22s ease;
}

.home-hub-page .home-tipster-card:hover .home-tipster-card-icon,
.home-hub-page .home-tipster-card:focus-visible .home-tipster-card-icon {
  transform: scale(1.2);
}

.home-hub-page .home-tipster-card-title {
  font-size: 15px;
  font-weight: 800;
  color: inherit;
  display: block;
}

.home-hub-page .home-tipster-card-desc {
  font-size: 13px;
  color: #64748b;
  display: block;
  line-height: 1.4;
}

.home-hub-page .home-tipster-card:hover .home-tipster-card-desc,
.home-hub-page .home-tipster-card:focus-visible .home-tipster-card-desc {
  color: #3b82f6;
}

.home-hub-page .home-tipster-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 10px 0 4px;
}

.home-hub-page .home-tipster-secondary a {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 999px;
  background: transparent;
  transition: background .18s ease, color .18s ease;
}

.home-hub-page .home-tipster-secondary a:hover,
.home-hub-page .home-tipster-secondary a:focus-visible {
  color: #1d4ed8;
  background: #dbeafe;
  text-decoration: none;
}

.home-hub-page .home-pill-nav {
  position: sticky;
  top: var(--cppt-sticky-nav-offset);
  z-index: 5;
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 34px;
  padding: 10px 0;
}

.home-hub-page .home-pill-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-hub-page .home-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #cbd5e1;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  padding: 8px 14px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.home-hub-page .home-pill-btn:hover,
.home-hub-page .home-pill-btn:focus-visible {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  text-decoration: none;
}

.home-hub-page .home-page-content {
  padding-top: 8px;
}

@media (max-width: 900px) {
  .home-hub-page .home-tipster-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-hub-page .home-hero {
    padding: 42px 16px;
  }

  .home-hub-page .home-hero-title {
    font-size: 31px;
  }

  .home-hub-page .home-hero-subtitle {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .home-hub-page .home-hero-search {
    grid-template-columns: 1fr;
  }

  .home-hub-page .home-pill-nav {
    position: static;
    top: auto;
  }
}

@media (max-width: 520px) {
  .home-hub-page .home-tipster-cards {
    grid-template-columns: 1fr;
  }

  .home-hub-page .home-tipster-hub-title {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hub-page .home-pill-btn {
    transition: none;
  }
}
