.blog-hub {
  padding-bottom: 48px;
}

.blog-hub [data-float-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--hover-lift, 0px), 0) translateY(56px);
  will-change: opacity, transform;
}

.blog-hub [data-float-reveal].is-visible {
  animation: floatRevealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--float-delay, 0ms);
}

.blog-hub-feed,
.blog-hub-cta {
  padding-top: 40px;
}

.blog-hub [data-float-reveal] {
  opacity: 0;
  transform: translateY(42px);
  will-change: opacity, transform;
}

.blog-hub [data-float-reveal].is-visible {
  animation: blogHubFloatRevealUp 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--float-delay, 0ms);
}

@keyframes blogHubFloatRevealUp {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-hub-cta {
  padding-top: 120px;
}

.blog-hub-cta > .container {
  width: 100%;
}

#blog-feed,
#news-feed {
  padding-top: 68px;
}

.blog-hub-cta__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.blog-hub-cta__panel {
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at top right, rgba(10, 99, 230, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.98));
}

.info-channel-page .blog-hub-cta__panel,
.blog-hub-cta__panel--dark {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  align-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at top center, rgba(105, 227, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(79, 143, 255, 0.2), transparent 32%),
    linear-gradient(150deg, var(--surface-dark), #102950);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.94);
}

.info-channel-page .blog-hub-cta__panel::before,
.blog-hub-cta__panel--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(59, 130, 246, 0.2), transparent 34%),
    linear-gradient(245deg, rgba(124, 58, 237, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(6, 182, 212, 0.14), transparent 58%);
  opacity: 0.72;
  pointer-events: none;
}

.info-channel-page .blog-hub-cta__copy,
.info-channel-page .blog-hub-cta__actions,
.blog-hub-cta__copy,
.blog-hub-cta__actions,
.blog-hub-cta__panel--dark .blog-hub-cta__copy,
.blog-hub-cta__panel--dark .blog-hub-cta__actions {
  position: relative;
  z-index: 2;
}

.info-channel-page .blog-hub-cta__copy,
.blog-hub-cta__panel--dark .blog-hub-cta__copy {
  justify-items: center;
  text-align: center;
}

.info-channel-page .blog-hub-cta__actions,
.blog-hub-cta__panel--dark .blog-hub-cta__actions {
  justify-content: center;
}

.info-channel-page .blog-hub-cta__copy p,
.blog-hub-cta__panel--dark .blog-hub-cta__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.info-channel-page .blog-hub-cta__actions .button-secondary,
.blog-hub-cta__panel--dark .blog-hub-cta__actions .button-secondary {
  border-color: #fff;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 26px rgba(12, 31, 59, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.42) inset;
}

.info-channel-page .blog-hub-cta__actions .button-secondary:hover,
.blog-hub-cta__panel--dark .blog-hub-cta__actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 16px 30px rgba(12, 31, 59, 0.1),
    0 0 16px rgba(105, 227, 255, 0.12);
}

@keyframes floatRevealUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--hover-lift, 0px), 0) translateY(56px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--hover-lift, 0px), 0) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-hub [data-float-reveal] {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.blog-hub-toolbar__intro p,
.blog-hub-cta__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.8;
}

.blog-hub-cta__copy {
  display: grid;
  gap: 24px;
}

.blog-hub-cta__copy .eyebrow,
.blog-hub-cta__copy h2 {
  white-space: nowrap;
}

.blog-hub-cta__copy p {
  line-height: 24px;
}

.blog-hub-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
}

.blog-hub-cta__actions .button {
  min-width: 168px;
}

.blog-hub-toolbar {
  display: grid;
  gap: 24px;
}

#blog-feed .blog-hub-toolbar,
#news-feed .blog-hub-toolbar {
  gap: 32px;
}

.blog-hub-list-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.blog-hub-list-head > div {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.blog-hub-list-head h1 {
  margin: 0;
  color: var(--text);
  font-size: 40px;
  line-height: 1.5;
}

.blog-hub-list-head p,
.blog-hub-search-row p {
  margin: 0;
  color: #536985;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.blog-hub-list-head .blog-hub-toolbar__intro {
  max-width: 760px;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
  white-space: normal;
}

.blog-hub-list-head .eyebrow {
  letter-spacing: 0;
}

.blog-hub-cta__copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.02;
  letter-spacing: 0;
}

.blog-hub-toolbar__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 16px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  justify-items: stretch;
}

#news-feed .blog-hub-toolbar__controls {
  grid-template-columns: minmax(0, 1fr) 420px auto;
  align-items: center;
}

#news-feed .help-search-panel {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}

#news-feed .help-search-field {
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 42px;
  border-radius: 999px;
}

#news-feed .help-search-field--collapsible {
  gap: 0;
  width: 42px;
  min-width: 42px;
  height: 42px;
  overflow: hidden;
  padding: 0;
  transition: width 0.22s ease, min-width 0.22s ease, box-shadow 0.22s ease;
}

#news-feed .help-search-field--collapsible.is-open {
  gap: 14px;
  width: 420px;
  min-width: min(420px, 100%);
  min-height: 42px;
  height: 42px;
  padding: 0 4px 0 16px;
  border-radius: 999px;
  box-shadow:
    0 14px 34px rgba(14, 37, 69, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

#news-feed .help-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: #5874a6;
  cursor: pointer;
}

#news-feed .help-search-trigger svg {
  color: currentColor;
}

#news-feed .help-search-field--collapsible.is-open .help-search-trigger {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

#news-feed .help-search-field--collapsible input {
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

#news-feed .help-search-field--collapsible.is-open input {
  width: auto;
  opacity: 1;
  pointer-events: auto;
}

#news-feed .help-search-status {
  margin: 0;
  color: var(--text-muted);
  white-space: nowrap;
}

.blog-hub-search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 0 18px;
  min-height: 56px;
  border-radius: 22px;
  border: 1px solid rgba(127, 154, 205, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(18, 42, 74, 0.05);
}

.blog-hub-search--collapsible {
  gap: 0;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  overflow: hidden;
  padding: 0;
  border-radius: 999px;
  background: #ffffff;
  transition: width 0.22s ease, min-width 0.22s ease, border-radius 0.22s ease, box-shadow 0.22s ease;
}

.blog-hub-search--collapsible.is-open {
  width: min(420px, 46vw);
  min-width: 260px;
  border-radius: 999px;
}

.blog-hub-search__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: #5874a6;
  cursor: pointer;
}

.blog-hub-search-row {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 16px;
  min-width: 0;
}

.blog-hub-search svg {
  width: 18px;
  height: 18px;
  color: #5874a6;
  flex: 0 0 18px;
}

.blog-hub-search__trigger svg {
  color: currentColor;
}

.blog-hub-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}

.blog-hub-search--collapsible input {
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.blog-hub-search--collapsible.is-open input {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  padding-right: 16px;
}

.blog-hub-search input::placeholder {
  color: #91a0bc;
  font-weight: 400;
}

.blog-hub-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-filter,
.blog-page {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #44597f;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.blog-filter {
  max-width: min(260px, 100%);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(12, 24, 44, 0.06);
  box-shadow: none;
}

.blog-filter::before,
.blog-page::before {
  content: '';
  display: inline-flex;
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: rgba(68, 89, 127, 0.34);
}

.blog-hub-filters .blog-filter::before {
  content: none;
  display: none;
}

.blog-filter:hover,
.blog-page:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(23, 104, 255, 0.12);
  color: #27406a;
  box-shadow: 0 14px 28px rgba(18, 42, 74, 0.08);
}

.blog-filter:hover {
  box-shadow: none;
}

.blog-filter.is-active,
.blog-page.is-active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1768ff, #0f48c7 68%, #133891);
  border-color: transparent;
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(23, 104, 255, 0.22),
    0 0 0 1px rgba(105, 227, 255, 0.16) inset;
}

.blog-filter.is-active {
  box-shadow: none;
}

.blog-filter:hover::before,
.blog-page:hover::before {
  background: rgba(39, 64, 106, 0.7);
}

.blog-filter.is-active::before,
.blog-page.is-active::before {
  background: rgba(255, 255, 255, 0.9);
}

.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.blog-hub-card {
  display: grid;
  grid-template-columns: minmax(138px, 0.34fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 100%;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(12, 24, 44, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-hub-card--article {
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
}

.blog-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 99, 230, 0.14);
  box-shadow: 0 22px 44px rgba(14, 37, 69, 0.12);
}

.blog-hub-card__cover,
.blog-hub-card__image {
  position: relative;
  min-height: 100%;
  min-width: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.blog-hub-card__image {
  overflow: hidden;
  padding: 0;
  flex-direction: row;
  justify-content: flex-start;
}

.blog-hub-card__image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hub-card__cover::before,
.blog-hub-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.blog-hub-card__cover .blog-hub-card__tag,
.blog-hub-card__cover .blog-hub-card__date,
.blog-hub-card__image span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-hub-card__date {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.blog-hub-card__body {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  height: 100%;
  gap: 16px;
  padding: 24px;
}

.blog-hub-card--article .blog-hub-card__body {
  grid-template-rows: auto 1fr auto;
}

.blog-hub-card__content {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.blog-hub-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.blog-hub-card__meta span {
  display: block;
  max-width: 100%;
  min-width: 0;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10, 99, 230, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  line-height: 26px;
}

.blog-hub-card__meta span {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-hub-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(12, 24, 44, 0.08);
  min-width: 0;
}

.blog-hub-card:not(.blog-hub-card--article) .blog-hub-card__foot {
  display: none;
}

.blog-hub-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.blog-hub-card__tags span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(83, 105, 133, 0.08);
  background: rgba(243, 247, 252, 0.82);
  color: #607089;
  font-size: 11px;
  font-weight: 600;
  line-height: 26px;
}

.blog-hub-card__tags span {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-hub-card__published,
.blog-hub-card__path {
  color: #6a7890;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-hub-card__path {
  color: #536985;
  font-weight: 600;
  word-break: normal;
}

.blog-hub-card__foot time {
  color: #6a7890;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}

.blog-hub-card__body h3,
.blog-hub-card__content h3 {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 22px;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-hub-card__body p,
.blog-hub-card__content p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.68;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-hub-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.blog-hub-card__link::after {
  content: '->';
  font-size: 13px;
  transform: translateY(1px);
}

.blog-hub-empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 36px 24px;
  border-radius: 24px;
  border: 1px dashed rgba(10, 99, 230, 0.22);
  background: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.blog-hub-empty[hidden] {
  display: none;
}

.blog-hub-empty strong {
  color: var(--text);
  font-size: 18px;
}

.blog-hub-empty span {
  color: var(--text-soft);
  font-size: 14px;
}

.blog-hub-card__cover--aurora {
  background:
    radial-gradient(circle at top left, rgba(45, 220, 255, 0.45), transparent 30%),
    linear-gradient(135deg, #072042, #0a63e6 55%, #51d7ff);
}

.blog-hub-card__cover--amber {
  background: linear-gradient(135deg, #5b3410, #d9841d 52%, #ffd98b);
}

.blog-hub-card__cover--mint {
  background: linear-gradient(135deg, #0b3240, #0f8e7d 48%, #9ef7db);
}

.blog-hub-card__cover--cobalt {
  background: linear-gradient(135deg, #081b43, #2556ff 52%, #90b7ff);
}

.blog-hub-card__cover--violet {
  background: linear-gradient(135deg, #241052, #6e43d6 52%, #c2b2ff);
}

.blog-hub-card__cover--cyan {
  background: linear-gradient(135deg, #093346, #1198c8 45%, #7ef4ff);
}

.blog-hub-card__cover--plum {
  background: linear-gradient(135deg, #2e1238, #a02cc4 48%, #f0a8ff);
}

.blog-hub-card__cover--rose {
  background: linear-gradient(135deg, #4b1437, #d6438f 52%, #ffc1df);
}

.blog-hub-card__cover--navy {
  background: linear-gradient(135deg, #0d1938, #27407e 52%, #91b2ff);
}

.blog-hub-card__cover--teal {
  background: linear-gradient(135deg, #082f2e, #118a7e 52%, #8bfff0);
}

.blog-hub-card__cover--sunset {
  background: linear-gradient(135deg, #4a180d, #ec6230 50%, #ffd0a7);
}

.blog-hub-card__cover--graphite {
  background: linear-gradient(135deg, #1e2430, #3f4a63 48%, #b8c1d4);
}

.blog-hub-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.blog-hub-pagination .blog-page {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(12, 24, 44, 0.06);
  box-shadow: 0 8px 18px rgba(14, 37, 69, 0.05);
}

.blog-hub-pagination .blog-page::before {
  content: none;
  display: none;
}

.blog-hub-pagination .blog-page.is-active {
  background: linear-gradient(135deg, #1768ff, #0f48c7 68%, #133891);
  border-color: transparent;
}

.blog-page--nav {
  min-width: 92px;
  padding-inline: 18px;
}

.blog-page:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.blog-page:disabled:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(12, 24, 44, 0.08);
  color: var(--text-soft);
}

.blog-hub-cta__actions {
  align-items: center;
  justify-content: flex-start;
  margin-top: 0;
}

@media (max-width: 920px) {
  .blog-hub-cta__panel {
    grid-template-columns: 1fr;
  }

  .blog-hub-toolbar {
    display: grid;
    gap: 20px;
  }

  .blog-hub-list-head {
    align-items: start;
    flex-direction: column;
  }

  .blog-hub-list-head p {
    white-space: normal;
  }

  .blog-hub-toolbar__controls {
    grid-template-columns: 1fr;
    justify-items: stretch;
    padding: 10px;
    border-radius: 24px;
  }

  #blog-feed .blog-hub-toolbar__controls {
    padding: 0;
  }

  #news-feed .blog-hub-toolbar__controls {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  #news-feed .help-search-panel {
    width: 100%;
    min-width: 0;
    justify-content: stretch;
  }

  #news-feed .help-search-field--collapsible {
    width: 100%;
    min-width: 0;
    height: 48px;
    min-height: 48px;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
  }

  #news-feed .help-search-field--collapsible.is-open {
    width: 100%;
    min-width: 0;
  }

  #news-feed .help-search-field--collapsible input {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }

  #news-feed .help-search-field--collapsible .help-search-trigger,
  #news-feed .help-search-field--collapsible.is-open .help-search-trigger {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  .blog-hub-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .blog-hub-filters::-webkit-scrollbar {
    display: none;
  }

  .blog-hub-filters .blog-filter {
    flex: 0 0 auto;
  }

  .blog-hub-search {
    min-width: 100%;
  }

  .blog-hub-search--collapsible {
    width: 100%;
    min-width: 0;
    gap: 0;
    padding: 0;
  }

  .blog-hub-search--collapsible.is-open {
    width: 100%;
    min-width: 0;
  }

  #blog-feed .blog-hub-search--collapsible {
    height: 48px;
    min-height: 48px;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
  }

  #blog-feed .blog-hub-search--collapsible .blog-hub-search__trigger,
  #blog-feed .blog-hub-search--collapsible.is-open .blog-hub-search__trigger {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
  }

  #blog-feed .blog-hub-search--collapsible input {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }

  #blog-result-count {
    display: none;
  }

  .blog-hub-cta__actions {
    justify-content: flex-start;
  }

  .blog-hub-grid {
    grid-template-columns: 1fr;
  }

  .blog-hub-card {
    grid-template-columns: minmax(132px, 0.28fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-hub [data-float-reveal] {
    transform: translateY(28px);
  }

  .blog-hub-feed,
  .blog-hub-cta {
    padding-top: 22px;
  }

  #blog-feed,
  #news-feed {
    padding-top: 68px;
  }

  .blog-hub-cta__panel {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .blog-hub-cta > .container {
    width: 100%;
  }

  .blog-hub-cta__panel,
  .blog-hub-cta__copy,
  .blog-hub-cta__actions {
    min-width: 0;
  }

  .blog-hub-cta__copy {
    gap: 14px;
  }

  .blog-hub-cta__copy .eyebrow,
  .blog-hub-cta__copy h2,
  .blog-hub-cta__copy p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .blog-hub-cta__copy h2 {
    font-size: 32px;
    line-height: 1.35;
  }

  .blog-hub-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .blog-hub-cta__actions .button {
    width: 100%;
    min-width: 0;
  }

  .blog-hub-list-head h1 {
    font-size: 32px;
  }

  .blog-hub-search {
    min-height: 48px;
    border-radius: 20px;
  }

  .blog-hub-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-hub-card__cover,
  .blog-hub-card__image {
    min-height: 74px;
    flex-direction: row;
    align-items: center;
  }

  .blog-hub-card__body {
    padding: 24px;
  }

  .blog-hub-card__meta span:first-child,
  .blog-hub-card__tags span:first-child {
    max-width: 100%;
  }

  .blog-hub-card__body h3 {
    font-size: 21px;
  }

  .blog-hub-filters {
    gap: 8px;
    padding: 4px;
    border-radius: 20px;
  }

  .blog-hub-search-row {
    width: 100%;
    justify-content: flex-end;
    gap: 12px;
  }

  .blog-hub-search--collapsible.is-open {
    width: 100%;
    min-width: 0;
  }

  .blog-filter,
  .blog-page {
    max-width: 100%;
    min-height: 40px;
    padding: 0 14px 0 13px;
    font-size: 13px;
  }

  .blog-hub-pagination {
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
  }

  .blog-hub-pagination .blog-page {
    flex: 0 0 40px;
    width: 40px;
    min-width: 0;
    min-height: 40px;
    padding: 0;
    border-radius: 999px;
  }

  .blog-hub-pagination .blog-page--number {
    order: 1;
  }

  .blog-hub-pagination .blog-page--nav {
    order: 2;
    flex: 1 1 calc(50% - 6px);
    width: auto;
    max-width: 148px;
    min-height: 44px;
    padding: 0 16px;
  }
}

.blog-filter__label {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
