.resource-hub-hero,
.resource-article-hero {
  background: #f4f7fb;
  padding: 70px 0;
}

.resource-hub-hero .description {
  max-width: 680px;
}

.resource-hub-listing-heading {
  margin-bottom: 40px;
  text-align: center;
}

.topic-category-listing-section.bg-white,
.resource-hub-listing.bg-white {
  background-color: #fff;
}

.topic-category-listing-section.bg-sky-blue,
.resource-hub-listing.bg-sky-blue,
.resource-topic-articles.bg-sky-blue {
  background-color: var(--sky-blue-color);
}

.topic-category-listing-section.bg-light-gray,
.resource-hub-listing.bg-light-gray {
  background-color: #f4f7fb;
}

.resource-hub-filters {
  background: #fff;
  border: 1px solid rgba(10, 77, 101, 0.2);
  border-radius: 10px;
  box-shadow: none;
  margin-bottom: 48px;
  overflow: hidden;
  padding: 0;
}

.resource-hub-filters__banner {
  background: #fff;
  border: 0;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
  padding: 18px 24px 0;
  text-align: center;
  text-transform: lowercase;
}

.resource-hub-filters__intro {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  margin: 14px auto 20px;
  max-width: 900px;
  padding: 0 24px;
  text-align: center;
}

.resource-filter-grid {
  display: grid;
  gap: 10px 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0 24px;
}

.resource-hub-filters .resource-filter-pill {
  align-items: center;
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  color: var(--primary-color);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--secondary-font);
  font-size: 13px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.2;
  min-height: 42px;
  padding: 8px 10px;
  text-align: center;
  width: 100%;
}

.resource-hub-filters .resource-filter-pill.is-selected {
  background: var(--secondary-light-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.resource-hub-filters .resource-filter-pill.is-active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.resource-filter-pills,
.resource-article-badges,
.resource-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-card-badges {
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 14px;
}

.resource-filter-pill,
.resource-article-badges a,
.resource-card-badge {
  background: #f7fafc;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #1f2937;
  display: inline-flex;
  font-size: 14px;
  line-height: 1;
  padding: 10px 16px;
  text-decoration: none;
}

button.resource-card-badge,
a.resource-card-badge {
  cursor: pointer;
  font-family: inherit;
}

.resource-card-badge:hover,
.resource-article-badges a:hover {
  background: #f58220;
  border-color: #f58220;
  color: #fff;
}

.resource-filter-actions {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 0;
  padding: 0 24px 24px;
}

.resource-filter-actions--standalone {
  margin-bottom: 28px;
}

.resource-filter-actions[hidden],
.resource-filter-actions--standalone[hidden] {
  display: none;
}

.resource-filter-apply {
  align-items: center;
  background: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 999px;
  color: var(--secondary-color);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.2;
  min-height: 40px;
  padding: 8px 18px;
  text-transform: lowercase;
}

.resource-filter-apply:hover {
  background: var(--secondary-light-color);
}

.resource-filter-apply-count {
  align-items: center;
  background: var(--secondary-light-color);
  border: 1px solid var(--secondary-color);
  border-radius: 999px;
  color: var(--secondary-color);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  min-height: 28px;
  padding: 5px 10px;
}

.resource-filter-clear {
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  color: var(--primary-color);
  cursor: pointer;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  min-height: 40px;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: lowercase;
}

.resource-filter-clear:hover {
  background: var(--primary-color-light);
  color: var(--primary-color);
}

@media (max-width: 1199px) {
  .resource-filter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .resource-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .resource-filter-grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 16px;
  }

  .resource-hub-filters__banner {
    font-size: 15px;
    padding: 16px 16px 0;
  }

  .resource-hub-filters__intro {
    font-size: 18px;
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .resource-hub-filters .resource-filter-pill {
    font-size: 12px;
    min-height: 38px;
    padding: 7px 8px;
  }

  .resource-filter-actions {
    padding: 0 16px 20px;
  }

  .resource-filter-apply,
  .resource-filter-clear {
    font-size: 13px;
    min-height: 36px;
    padding: 7px 14px;
  }

  .resource-filter-apply-count {
    font-size: 12px;
    min-height: 24px;
    padding: 4px 8px;
  }
}

.resource-hub-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.resource-card[hidden] {
  display: none;
}

.resource-card-image {
  background: #e2e8f0;
  display: block;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.resource-card-image img {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

.resource-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.resource-card-title {
  font-size: 22px;
  margin: 0 0 12px;
}

.resource-card-title a {
  color: inherit;
  text-decoration: none;
}

.resource-card-title a:hover {
  color: #f58220;
}

.resource-card-link {
  color: inherit;
  text-decoration: none;
}

.resource-card-link:hover {
  color: #f58220;
}

.resource-card-meta {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 0;
}

.resource-card-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
}

.resource-card-actions .resource-card-btn {
  flex: 1;
  justify-content: center;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}

.resource-card-actions .resource-card-btn-read {
  flex: 0 1 auto;
  margin-left: 0;
  width: 100%;
}

.resource-hub-no-results {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  margin-top: 28px;
  padding: 36px;
  text-align: center;
}

.resource-hub-cta,
.resource-sidebar-cta {
  background: #092f57;
  border-radius: 16px;
  color: #fff;
}

.resource-hub-cta {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
  padding: 32px;
}

.resource-hub-cta h2,
.resource-sidebar-cta h2 {
  color: #fff;
  margin-top: 0;
}

.resource-breadcrumb {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--secondary-font);
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.resource-breadcrumb a,
.resource-breadcrumb span[aria-current="page"] {
  font-weight: 600;
}

.resource-breadcrumb span[aria-hidden="true"] {
  font-weight: 400;
  opacity: 0.7;
}

.resource-breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.resource-breadcrumb a:hover {
  color: var(--secondary-color);
}

.resource-breadcrumb span[aria-current="page"] {
  color: #1f2937;
}

.resource-hub-breadcrumb-section {
  padding-bottom: 0;
  padding-top: 32px;
}

.resource-hub-breadcrumb-section .resource-breadcrumb {
  margin-bottom: 0;
}

.resource-article-meta {
  color: #475569;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.resource-article-layout {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.resource-sidebar-cta {
  padding: 28px;
  position: sticky;
  top: 30px;
}

.resource-official-sources {
  border-top: 1px solid #e2e8f0;
  margin-top: 36px;
  padding-top: 28px;
}

/* ── Resource Hub single article (flexible + fallback) ──────────────────── */

.resource-hub-article-banner.inner-hero-banner,
.resource-hub-article-banner.hero-banner-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.resource-hub-article-banner.inner-hero-banner .resource-breadcrumb,
.resource-hub-article-banner.hero-banner-section .resource-breadcrumb {
  margin-bottom: 16px;
}

.resource-hub-article-banner.inner-hero-banner .resource-breadcrumb a,
.resource-hub-article-banner.hero-banner-section .resource-breadcrumb a,
.resource-hub-article-banner.inner-hero-banner .resource-breadcrumb span[aria-current="page"],
.resource-hub-article-banner.hero-banner-section .resource-breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
}

.resource-hub-article-banner.inner-hero-banner .resource-breadcrumb span[aria-hidden="true"],
.resource-hub-article-banner.hero-banner-section .resource-breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.75);
}

.resource-hub-article-banner.inner-hero-banner .resource-breadcrumb a:hover,
.resource-hub-article-banner.hero-banner-section .resource-breadcrumb a:hover {
  color: var(--secondary-color);
}

.resource-hub-article-banner .resource-article-badges {
  margin-bottom: 24px;
  margin-top: 0;
}

.resource-hub-article-banner .resource-article-meta {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

.resource-hub-article-banner.hero-banner-section .resource-article-badges a,
.resource-hub-article-banner.inner-hero-banner .resource-article-badges a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.resource-hub-article-banner.hero-banner-section .resource-article-badges a:hover,
.resource-hub-article-banner.inner-hero-banner .resource-article-badges a:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}

.single-resource-hub .site-main,
.single-resource-hub .site-main.resource-hub-single-flexible {
  overflow: visible;
}

.single-resource-hub .simple-content-section,
.single-resource-hub .simple-content-section .container,
.single-resource-hub .simple-content-section .simple-content-row {
  overflow: visible;
}

.single-resource-hub .inner-hero-banner .banner_title_large.heading,
.single-resource-hub .inner-hero-banner .heading.big,
.single-resource-hub .hero-banner-section .banner_title_large.heading {
  color: #fff;
  font-size: clamp(32px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 18px;
}

.single-resource-hub .simple-content-section .product-overview-content-block .heading,
.single-resource-hub .simple-content-section .simple-content-row .heading {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.single-resource-hub .simple-content-section .product-overview.simple-content h2,
.single-resource-hub .simple-content-section .product-overview-content-block .simple-content h2,
.single-resource-hub .resource-article-content.simple-content h2 {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.35;
  margin: 28px 0 14px;
}

.single-resource-hub .simple-content-section .product-overview.simple-content h3,
.single-resource-hub .simple-content-section .product-overview-content-block .simple-content h3,
.single-resource-hub .resource-article-content.simple-content h3 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  margin: 24px 0 12px;
}

.single-resource-hub .simple-content-section .product-overview.simple-content h4,
.single-resource-hub .simple-content-section .product-overview-content-block .simple-content h4,
.single-resource-hub .resource-article-content.simple-content h4 {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  margin: 20px 0 10px;
}

.single-resource-hub .simple-content-section .product-overview.simple-content h5,
.single-resource-hub .simple-content-section .product-overview-content-block .simple-content h5,
.single-resource-hub .resource-article-content.simple-content h5 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin: 18px 0 8px;
}

.single-resource-hub .simple-content-section .product-overview.simple-content h6,
.single-resource-hub .simple-content-section .product-overview-content-block .simple-content h6,
.single-resource-hub .resource-article-content.simple-content h6 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 16px 0 8px;
}

.single-resource-hub .simple-content-section .product-overview.simple-content p,
.single-resource-hub .simple-content-section .product-overview-content-block .simple-content p {
  color: var(--paragraph);
  font-size: 18px;
  line-height: 1.7;
}

/* Keep theme defaults for full-width-content + cta-section on resource-hub singles */
.single-resource-hub .full-width-content .heading {
  color: var(--primary-color);
  font-size: var(--font-36);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.single-resource-hub .full-width-content .simple-content h2 {
  color: var(--primary-color);
  font-size: var(--font-32);
  font-weight: 600;
  line-height: 1.356;
  margin: 0 0 30px;
}

.single-resource-hub .full-width-content .simple-content h3 {
  color: var(--primary-color);
  font-size: var(--font-28);
  font-weight: 600;
  line-height: 1.356;
  margin: 0 0 30px;
}

.single-resource-hub .full-width-content .simple-content h4 {
  color: var(--primary-color);
  font-size: var(--font-24);
  font-weight: 600;
  line-height: 1.356;
  margin: 0 0 30px;
}

.single-resource-hub .full-width-content .simple-content h5,
.single-resource-hub .full-width-content .simple-content h6 {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-weight: 600;
  margin: 0 0 30px;
}

.single-resource-hub .full-width-content .simple-content p {
  color: var(--paragraph);
  font-size: var(--font-18);
  line-height: 1.667;
}

.single-resource-hub .cta-section .small-heading {
  color: var(--white);
  font-size: var(--font-36);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 25px;
}

.single-resource-hub .cta-section .description,
.single-resource-hub .cta-section .description p {
  color: var(--white);
  font-size: var(--font-18);
  line-height: 1.667;
}

.single-resource-hub .cta-section .small-description,
.single-resource-hub .cta-section .small-description p {
  color: var(--white);
}

.single-resource-hub .simple-content-section .simple-content-row {
  align-items: flex-start;
  position: relative;
}

.single-resource-hub .simple-content-section .simple-content-row .right-block {
  align-self: flex-start;
  height: fit-content;
  position: static;
  top: auto;
  z-index: 2;
}

.single-resource-hub .simple-content-section .simple-content-row .right-block.is-sticky-fixed {
  position: fixed;
}

.single-resource-hub .simple-content-section .simple-content-row .right-block.is-sticky-bottom {
  bottom: 0;
  position: absolute;
  right: 0;
  top: auto;
}

.single-resource-hub .resource-hub-sidebar-placeholder {
  display: none;
  flex-shrink: 0;
}

.single-resource-hub .simple-content-section .simple-content-row .right-block .widget-box,
.single-resource-hub .simple-content-section .simple-content-row .right-block .widget-box:last-child {
  margin-bottom: 24px;
  padding: 32px 28px;
  position: static;
  top: auto;
}

.single-resource-hub .simple-content-section .simple-content-row .right-block .widget-box:last-child {
  margin-bottom: 0;
}

.single-resource-hub .right-block .widget-box .heading,
.single-resource-hub .right-block .widget-box .widget-title,
.single-resource-hub .right-block .widget-box .wp-block-heading {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

.single-resource-hub .right-block .widget-box.dark .heading,
.single-resource-hub .right-block .widget-box.dark .widget-title,
.single-resource-hub .right-block .widget-box.dark .wp-block-heading {
  color: #fff;
}

.single-resource-hub .right-block .widget-box > * {
  margin-bottom: 24px;
}

.single-resource-hub .right-block .widget-box > *:last-child {
  margin-bottom: 0;
}

.single-resource-hub .right-block .widget-box .widget-description li,
.single-resource-hub .right-block .widget-box ul li {
  line-height: 1.5;
  margin: 0 0 12px;
  padding-left: 18px;
  position: relative;
}

.single-resource-hub .right-block .widget-box .widget-description li::before,
.single-resource-hub .right-block .widget-box ul li::before {
  background-color: var(--secondary-color);
  height: 5px;
  top: 0.65em;
  width: 5px;
}

.single-resource-hub .right-block .widget-box.dark .widget-description li::before,
.single-resource-hub .right-block .widget-box.dark ul li::before {
  background-color: #fff;
}

.single-resource-hub .right-block .widget-box .widget-description li:last-child,
.single-resource-hub .right-block .widget-box ul li:last-child {
  margin-bottom: 0;
}

.single-resource-hub .right-block .widget-box li a {
  color: inherit;
  font-size: 16px;
  text-decoration: none;
}

.single-resource-hub .right-block .widget-box li a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.single-resource-hub .right-block .widget-box.dark li a:hover {
  color: #fff;
  opacity: 0.85;
  text-decoration: underline;
}

.resource-related-articles {
  background: #f8fafc;
}

.resource-related-articles .heading-group .heading {
  color: var(--primary-color);
}

/* ── Resource Topic taxonomy page ───────────────────────────────────────── */

/* Breadcrumb inside dark hero – separators and current term in white */
.resource-topic-hero .resource-breadcrumb {
  margin-bottom: 20px;
}

.resource-topic-hero .resource-breadcrumb a,
.resource-topic-hero .resource-breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.9);
}

.resource-topic-hero .resource-breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.75);
}

.resource-topic-hero .resource-breadcrumb a:hover {
  color: var(--secondary-color);
}

.resource-topic-hero .description p {
  max-width: 680px;
}


.resource-topic-list .list-description ul {
  list-style: disc;
  padding-left: 22px;
}

.resource-topic-list .list-description ul li {
  margin-bottom: 8px;
}

.resource-topic-list .list-description ul li a {
  color: #f58220;
  text-decoration: none;
}

.resource-topic-list .list-description ul li a:hover {
  text-decoration: underline;
}

/* ── Topic Category Listing Section ─────────────────────────────────────── */

.topic-category-listing-section {
  padding: 70px 0;
}

.topic-category-listing-section .tcl-heading-group {
  margin-bottom: 48px;
  text-align: center;
}

/* Grid layout */
.tcl-grid {
  display: grid;
  gap: 28px;
}

.tcl-grid.tcl-col-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tcl-grid.tcl-col-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tcl-grid.tcl-col-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Card */
.tcl-card {
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.tcl-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.tcl-card:hover .tcl-card-image img {
  transform: scale(1.04);
}

.tcl-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tcl-card-image-link {
  display: block;
  overflow: hidden;
}

/* Image */
.tcl-card-image {
  background: #e2e8f0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.tcl-card-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.tcl-card-image-placeholder {
  background: linear-gradient(135deg, #dde4ef 0%, #c8d3e6 100%);
  height: 100%;
  width: 100%;
}

/* Body */
.tcl-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 24px;
}

.tcl-card-title {
  color: #0d2b4e;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.tcl-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tcl-card-title a:hover {
  color: #f58220;
}

.tcl-card-desc {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.tcl-card-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  gap: 10px;
}

.tcl-card-count {
  background: #f0f4f9;
  border-radius: 999px;
  color: #64748b;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  white-space: nowrap;
}

.tcl-card-link.icon-info-link {
  align-items: center;
  color: #f58220;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 5px;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.tcl-card-link.icon-info-link:hover {
  color: #d46e10;
  gap: 8px;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  .resource-hub-grid,
  .resource-article-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-article-sidebar {
    grid-column: 1 / -1;
  }

  .resource-sidebar-cta {
    position: static;
  }

  .single-resource-hub .simple-content-section .simple-content-row .right-block {
    position: static;
    top: auto;
  }

  .single-resource-hub .simple-content-section .product-overview-content-block .heading,
  .single-resource-hub .simple-content-section .simple-content-row .heading {
    font-size: 24px;
  }

  .single-resource-hub .simple-content-section .product-overview.simple-content h2,
  .single-resource-hub .simple-content-section .product-overview-content-block .simple-content h2 {
    font-size: 26px;
  }

  .single-resource-hub .simple-content-section .product-overview.simple-content h3,
  .single-resource-hub .simple-content-section .product-overview-content-block .simple-content h3 {
    font-size: 22px;
  }

  .single-resource-hub .full-width-content .simple-content h2 {
    font-size: var(--font-36);
  }

  .single-resource-hub .cta-section .small-heading {
    font-size: var(--font-36);
  }

  .tcl-grid.tcl-col-3,
  .tcl-grid.tcl-col-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .resource-hub-grid,
  .resource-article-layout {
    grid-template-columns: 1fr;
  }

  .resource-hub-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-card-actions {
    flex-direction: column;
  }

  .resource-card-actions .resource-card-btn,
  .resource-card-actions .resource-card-btn-read {
    flex: 1 1 auto;
    margin-left: 0;
    width: 100%;
  }

  .tcl-grid.tcl-col-2,
  .tcl-grid.tcl-col-3,
  .tcl-grid.tcl-col-4 {
    grid-template-columns: 1fr;
  }

  .topic-category-listing-section {
    padding: 48px 0;
  }
}
