.blog-hub-shell {
  --blog-blue: #1978c8;
  --blog-blue-dark: #08385f;
  --blog-blue-deep: #0f5ea8;
  --blog-blue-soft: #f5f8fb;
  --blog-white: #ffffff;
  --blog-text: #17395d;
  --blog-muted: #6a88a5;
  --blog-border: #d7e5f2;
  --blog-card-shadow: 0 12px 30px rgba(20, 62, 96, 0.06);
  --blog-card-shadow-lg: 0 22px 54px rgba(15, 56, 96, 0.12);
  overflow: hidden;
  padding-bottom: 0;
  background: #fff;
  color: var(--blog-text);
}

.blog-hub-shell a,
.blog-hub-shell a:hover,
.blog-hub-shell a:focus {
  text-decoration: none;
}

.blog-hub__masthead {
  background: #f5f8fb;
}

.blog-hub__hero,
.blog-hub__main,
.blog-hub__section-inner {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.blog-hub__hero {
  padding-top: 44px;
  padding-bottom: 30px;
}

.blog-hub__main {
  padding-bottom: 56px;
  background: #f5f8fb;
}

.blog-hub__title {
  margin: 0;
  color: #143e67;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.08;
}

.blog-hub__topics {
  margin-top: 42px;
}

.blog-hub__topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-hub__topics-item {
  margin: 0;
}

.blog-hub__topics-item a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #e5eef6;
  border-radius: 4px;
  background: #fff;
  color: #547392;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-hub__topics-item.is-active a {
  border-color: #2a9cea;
  background: #2a9cea;
  color: #fff;
}

.blog-hub__topics-item--more a {
  padding-right: 30px;
  border-color: transparent;
  background: transparent;
  color: #2a8edd;
  position: relative;
}

.blog-hub__topics-item--more a:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.blog-hub__header,
.blog-hub__toolbar,
.blog-hub__attachment--before,
.blog-hub__attachment--after,
.blog-hub__footer {
  margin-bottom: 26px;
}

.blog-hub__toolbar {
  padding: 18px 20px;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  background: #fff;
}

.blog-hub__toolbar .views-exposed-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.blog-hub__toolbar .views-exposed-widget {
  float: none;
  padding: 0;
}

.blog-hub__toolbar .views-submit-button {
  margin-left: auto;
}

.blog-hub__toolbar label {
  display: none;
}

.blog-hub__toolbar input.form-text {
  width: 360px;
  max-width: 100%;
  height: 46px;
  padding: 0 15px;
  border: 1px solid #dce6f1;
  border-radius: 4px;
  box-shadow: none;
}

.blog-hub__toolbar input.form-submit,
.blog-hub__toolbar .btn {
  height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  background: var(--blog-blue);
  color: #fff;
  font-weight: 700;
}

.blog-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.blog-hub__grid > * {
  min-width: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--blog-card-shadow);
}

.blog-card__media {
  display: block;
  aspect-ratio: 1.6;
  overflow: hidden;
  background: linear-gradient(135deg, #d8e6f4, #f2f7fb);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d7e7f4, #f4f8fb);
}

.blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
}

.blog-card__meta {
  color: #9aaec1;
  font-size: 12px;
  line-height: 1.5;
}

.blog-card__title {
  margin: 0;
  color: var(--blog-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
}

.blog-card__title a {
  color: inherit;
}

.blog-card__text {
  color: #728ca4;
  font-size: 15px;
  line-height: 1.55;
}

.blog-card__link {
  display: none;
}

.blog-hub__empty {
  padding: 32px;
  border: 1px solid var(--blog-border);
  border-radius: 8px;
  background: #fff;
}

.blog-hub__pager {
  margin-top: 26px;
}

.blog-hub__pager .pagination,
.blog-hub__pager .pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-hub__pager .pagination > li > a,
.blog-hub__pager .pagination > li > span,
.blog-hub__pager .pager > li > a,
.blog-hub__pager .pager > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #557390;
  font-size: 16px;
}

.blog-hub__pager .pager-current,
.blog-hub__pager .pagination > .active > a,
.blog-hub__pager .pagination > .active > span {
  border-color: #1f7cc9;
  background: #1f7cc9;
  color: #fff;
}

.blog-hub__attachment--after .more-link,
.blog-hub__attachment--after .item-list,
.blog-hub__footer .more-link {
  text-align: center;
}

.blog-hub__attachment--after a,
.blog-hub__footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 34px;
  border: 1px solid #2a8edd;
  border-radius: 4px;
  color: #2a8edd;
  font-size: 16px;
  font-weight: 700;
}

.blog-hub__section {
  padding: 78px 0;
}

.blog-hub__bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.blog-hub__section--latest {
  background: #fff;
}

.blog-hub__section--cases {
  background:
    radial-gradient(circle at 15% 30%, rgba(64, 165, 255, 0.48), transparent 28%),
    radial-gradient(circle at 85% 62%, rgba(17, 118, 203, 0.42), transparent 34%),
    linear-gradient(90deg, #07375e 0%, #0d5e9f 34%, #1d8ce4 68%, #0c538d 100%);
}

.blog-hub__section--solutions,
.blog-hub__section--partners {
  background: #fff;
}

.blog-hub__section--cta {
  background:
    radial-gradient(circle at 18% 24%, rgba(64, 165, 255, 0.48), transparent 26%),
    radial-gradient(circle at 82% 40%, rgba(21, 144, 232, 0.28), transparent 32%),
    linear-gradient(90deg, #062f53 0%, #0960a6 42%, #1e91ea 70%, #0d5d9e 100%);
}

.blog-hub__section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.blog-hub__section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #2c9ceb;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.blog-hub__section-kicker:before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.blog-hub__section-head--light .blog-hub__section-kicker,
.blog-hub__section-kicker--light {
  color: rgba(85, 209, 255, 0.95);
}

.blog-hub__section-title {
  margin: 0;
  color: #143e67;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}

.blog-hub__section-head--light .blog-hub__section-title,
.blog-hub__section--cta .blog-hub__cta-title {
  color: #fff;
}

.blog-hub__section-text {
  max-width: 720px;
  margin: 14px 0 0;
  color: #7d95ac;
  font-size: 22px;
  line-height: 1.45;
}

.blog-hub__section-text--light,
.blog-hub__section--cta .blog-hub__cta-text {
  color: rgba(255, 255, 255, 0.76);
}

.blog-hub__section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 4px;
  background: #1978c8;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.blog-hub__section-link:after {
  content: "\2192";
  margin-left: 12px;
  font-size: 25px;
  line-height: 1;
}

.blog-hub__section-link--light {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.blog-hub__stream .view-title,
.blog-hub__stream .view-header,
.blog-hub__stream .view-filters,
.blog-hub__stream .pager,
.blog-hub__stream .pagination,
.blog-hub__stream .more-link,
.blog-hub__stream .attachment-before,
.blog-hub__stream .attachment-after,
.blog-hub__stream .view-footer {
  display: none !important;
}

.blog-hub__stream .view-content {
  margin: 0;
}

.blog-hub__stream .view-content > *,
.blog-hub__stream .view-content > [class*="col-"] {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.blog-hub__stream--news .view {
  overflow: hidden;
}

.blog-hub__stream--news .view-content,
.blog-hub__news-fallback {
  display: flex;
  align-items: stretch;
}

.blog-hub__stream--news .view-content > *,
.blog-hub__news-fallback > * {
  min-width: 0;
}

.blog-hub__stream--news .swiper-wrapper {
  box-sizing: border-box;
}

.blog-hub__stream--news .swiper-slide {
  height: auto;
}

.blog-hub__stream--news .swiper-scrollbar {
  display: none;
}

.blog-news-card,
.blog-hub__stream--news article,
.blog-hub__stream--news .node,
.blog-hub__stream--news .views-row {
  overflow: hidden;
  border-radius: 6px;
  background: #f7fafc;
  box-shadow: var(--blog-card-shadow);
}

.blog-news-card__media,
.blog-hub__stream--news .field-name-field-image,
.blog-hub__stream--news .views-field-field-image,
.blog-hub__stream--news .views-field-field-image img,
.blog-hub__stream--news article img {
  display: block;
  width: 100%;
}

.blog-news-card__media {
  aspect-ratio: 1.65;
  background: linear-gradient(135deg, #cadfed, #eef5fb);
}

.blog-news-card--warehouse .blog-news-card__media { background: linear-gradient(135deg, #627c98, #d4e3f0); }
.blog-news-card--executive .blog-news-card__media { background: linear-gradient(135deg, #473c3a, #cab6a5); }
.blog-news-card--scanner .blog-news-card__media { background: linear-gradient(135deg, #dbd4cf, #fee6d9); }
.blog-news-card--inventory .blog-news-card__media { background: linear-gradient(135deg, #8aa7c4, #e6eef6); }

.blog-hub__stream--news article img,
.blog-hub__stream--news .views-field-field-image img {
  aspect-ratio: 1.65;
  object-fit: cover;
}

.blog-news-card__body,
.blog-hub__stream--news article .content,
.blog-hub__stream--news .node > .content {
  padding: 16px 16px 18px;
}

.blog-news-card__meta,
.blog-hub__stream--news .submitted,
.blog-hub__stream--news .blog-card__meta {
  color: #9db0c3;
  font-size: 12px;
  line-height: 1.5;
}

.blog-news-card__meta span {
  margin: 0 7px;
}

.blog-news-card__title,
.blog-hub__stream--news h2,
.blog-hub__stream--news h3 {
  margin: 12px 0 0;
  color: #143e67;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.blog-news-card__text,
.blog-hub__stream--news .field-name-body,
.blog-hub__stream--news .views-field-body {
  margin-top: 10px;
  color: #728ca4;
  font-size: 15px;
  line-height: 1.5;
}

.blog-hub__cases-fallback,
.blog-hub__stream--cases .view-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-hub__cases-fallback > *:nth-child(n + 4),
.blog-hub__stream--cases .view-content > *:nth-child(n + 4) {
  display: none;
}

.blog-case-card,
.blog-hub__stream--cases article,
.blog-hub__stream--cases .node,
.blog-hub__stream--cases .views-row {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--blog-card-shadow-lg);
}

.blog-case-card__media,
.blog-hub__stream--cases .field-name-field-image,
.blog-hub__stream--cases .views-field-field-image {
  position: relative;
  aspect-ratio: 1.64;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35)),
    linear-gradient(135deg, #3f91d1, #7cc2f6);
}

.blog-case-card__tag {
  position: absolute;
  left: 16px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #ff951a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.blog-case-card__body,
.blog-hub__stream--cases article .content,
.blog-hub__stream--cases .node > .content {
  padding: 18px 18px 20px;
}

.blog-case-card__title,
.blog-hub__stream--cases h2,
.blog-hub__stream--cases h3 {
  margin: 0;
  color: #143e67;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.blog-case-card__text,
.blog-hub__stream--cases .field-name-body,
.blog-hub__stream--cases .views-field-body {
  margin-top: 12px;
  color: #6c86a0;
  font-size: 16px;
  line-height: 1.55;
}

.blog-case-card__link,
.blog-hub__stream--cases .blog-card__link,
.blog-hub__stream--cases .read-more,
.blog-hub__stream--cases .btn {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #1f84d5;
  font-size: 16px;
  font-weight: 700;
}

.blog-case-card__link:after,
.blog-hub__stream--cases .blog-card__link:after,
.blog-hub__stream--cases .read-more:after {
  content: "\2192";
  margin-left: 10px;
}

.blog-hub__solutions-fallback,
.blog-hub__stream--solutions .view-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.blog-hub__solutions-fallback > *:nth-child(n + 5),
.blog-hub__stream--solutions .view-content > *:nth-child(n + 5) {
  display: none;
}

.blog-solution-card,
.blog-hub__stream--solutions article,
.blog-hub__stream--solutions .node,
.blog-hub__stream--solutions .views-row {
  overflow: hidden;
  border-radius: 6px;
  background: #edf4fa;
  box-shadow: var(--blog-card-shadow);
}

.blog-solution-card__media,
.blog-hub__stream--solutions .field-name-field-image,
.blog-hub__stream--solutions .views-field-field-image {
  position: relative;
  aspect-ratio: 1.64;
  background: linear-gradient(135deg, #6d9cc7, #d3e1ee);
}

.blog-solution-card--yard .blog-solution-card__media { background: linear-gradient(135deg, #4e6ba0, #9dc0e7); }
.blog-solution-card--port .blog-solution-card__media { background: linear-gradient(135deg, #7d8ca4, #d8e5f0); }
.blog-solution-card--cctv .blog-solution-card__media { background: linear-gradient(135deg, #7d7d7d, #e5e5e5); }
.blog-solution-card--audit .blog-solution-card__media { background: linear-gradient(135deg, #caa37e, #f3dec9); }

.blog-solution-card__price {
  position: absolute;
  right: 14px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: #ff951a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.blog-solution-card__body,
.blog-hub__stream--solutions article .content,
.blog-hub__stream--solutions .node > .content {
  padding: 18px 18px 20px;
}

.blog-solution-card__title,
.blog-hub__stream--solutions h2,
.blog-hub__stream--solutions h3 {
  margin: 0;
  color: #143e67;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.34;
}

.blog-solution-card__text,
.blog-hub__stream--solutions .field-name-body,
.blog-hub__stream--solutions .views-field-body {
  margin-top: 12px;
  color: #758ea6;
  font-size: 15px;
  line-height: 1.5;
}

.blog-solution-card__link,
.blog-hub__stream--solutions .blog-card__link,
.blog-hub__stream--solutions .read-more,
.blog-hub__stream--solutions .btn {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: #1f84d5;
  font-size: 16px;
  font-weight: 700;
}

.blog-solution-card__link:after,
.blog-hub__stream--solutions .blog-card__link:after,
.blog-hub__stream--solutions .read-more:after {
  content: "\2192";
  margin-left: 10px;
}

.blog-logo-row,
.blog-hub__stream--clients .view-content {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.blog-logo-row > *:nth-child(n + 6),
.blog-hub__stream--clients .view-content > *:nth-child(n + 6) {
  display: none;
}

.blog-logo-row__item,
.blog-hub__stream--clients .views-row,
.blog-hub__stream--clients .swiper-slide,
.blog-hub__stream--clients article,
.blog-hub__stream--clients .node {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 12px 10px;
}

.blog-logo-row__item {
  color: #1d2730;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.blog-hub__stream--clients img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
}

.blog-hub__cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.blog-hub__cta-title {
  max-width: 610px;
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.14;
}

.blog-hub__cta-text {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.55;
}

.blog-subscribe-form {
  max-width: 660px;
  margin-top: 30px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.blog-subscribe-form__field label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
}

.blog-subscribe-form__field input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 18px;
}

.blog-subscribe-form__field input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.blog-subscribe-form__check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.blog-subscribe-form__check input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.blog-subscribe-form__button,
.blog-hub__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-top: 26px;
  padding: 0 30px;
  border: 0;
  border-radius: 4px;
  background: #ff9f1a;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}

.blog-subscribe-form__button {
  width: 100%;
}

.blog-hub__contact-list {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.blog-hub__contact-list a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

@media (max-width: 1599px) {
  .blog-hub__title,
  .blog-hub__section-title,
  .blog-hub__cta-title {
    font-size: 48px;
  }

  .blog-hub__section-text,
  .blog-hub__cta-text {
    font-size: 20px;
  }
}

@media (max-width: 1399px) {
  .blog-hub__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-hub__title,
  .blog-hub__section-title,
  .blog-hub__cta-title {
    font-size: 42px;
  }

  .blog-hub__section-link {
    min-height: 54px;
    font-size: 19px;
  }

  .blog-hub__solutions-fallback,
  .blog-hub__stream--solutions .view-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .blog-hub__hero,
  .blog-hub__main,
  .blog-hub__section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-hub__title,
  .blog-hub__section-title,
  .blog-hub__cta-title {
    font-size: 36px;
  }

  .blog-hub__section-text,
  .blog-hub__cta-text {
    font-size: 18px;
  }

  .blog-hub__stream--news .view-content > *,
  .blog-hub__news-fallback > * {
    width: 312px;
  }

  .blog-hub__cases-fallback,
  .blog-hub__stream--cases .view-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hub__solutions-fallback,
  .blog-hub__stream--solutions .view-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-logo-row,
  .blog-hub__stream--clients .view-content {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blog-hub__cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .blog-hub__hero {
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .blog-hub__main {
    padding-bottom: 46px;
  }

  .blog-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .blog-hub__section {
    padding: 58px 0;
  }

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

  .blog-hub__section-link {
    min-width: 0;
  }

  .blog-logo-row,
  .blog-hub__stream--clients .view-content {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .blog-hub__hero,
  .blog-hub__main,
  .blog-hub__section-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .blog-hub__hero {
    padding-top: 30px;
    padding-bottom: 18px;
  }

  .blog-hub__main {
    padding-bottom: 36px;
  }

  .blog-hub__title,
  .blog-hub__section-title,
  .blog-hub__cta-title {
    font-size: 28px;
  }

  .blog-hub__topics {
    margin-top: 28px;
  }

  .blog-hub__topics-list {
    gap: 8px;
  }

  .blog-hub__topics-item a {
    min-height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }

  .blog-hub__toolbar {
    padding: 14px;
  }

  .blog-hub__toolbar .views-exposed-form {
    align-items: stretch;
    flex-direction: column;
  }

  .blog-hub__toolbar .views-submit-button {
    margin-left: 0;
  }

  .blog-hub__toolbar input.form-text,
  .blog-hub__toolbar input.form-submit,
  .blog-hub__toolbar .btn {
    width: 100%;
  }

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

  .blog-hub__section {
    padding: 44px 0;
  }

  .blog-hub__section-kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .blog-hub__section-link,
  .blog-subscribe-form__button,
  .blog-hub__cta-button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 16px;
  }

  .blog-hub__stream--news .view-content,
  .blog-hub__news-fallback,
  .blog-hub__cases-fallback,
  .blog-hub__stream--cases .view-content,
  .blog-hub__solutions-fallback,
  .blog-hub__stream--solutions .view-content,
  .blog-logo-row,
  .blog-hub__stream--clients .view-content {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .blog-hub__stream--news .view-content::-webkit-scrollbar,
  .blog-hub__news-fallback::-webkit-scrollbar,
  .blog-hub__cases-fallback::-webkit-scrollbar,
  .blog-hub__stream--cases .view-content::-webkit-scrollbar,
  .blog-hub__solutions-fallback::-webkit-scrollbar,
  .blog-hub__stream--solutions .view-content::-webkit-scrollbar,
  .blog-logo-row::-webkit-scrollbar,
  .blog-hub__stream--clients .view-content::-webkit-scrollbar {
    display: none;
  }

  .blog-hub__stream--news .view-content > *,
  .blog-hub__news-fallback > * {
    width: 270px;
    flex: 0 0 270px;
    scroll-snap-align: start;
  }

  .blog-hub__cases-fallback > *,
  .blog-hub__stream--cases .view-content > * {
    width: min(340px, calc(100vw - 44px));
    flex: 0 0 min(340px, calc(100vw - 44px));
    scroll-snap-align: start;
  }

  .blog-hub__solutions-fallback > *,
  .blog-hub__stream--solutions .view-content > * {
    width: 290px;
    flex: 0 0 290px;
    scroll-snap-align: start;
  }

  .blog-logo-row__item,
  .blog-hub__stream--clients .view-content > * {
    width: 170px;
    flex: 0 0 170px;
    scroll-snap-align: start;
  }

  .blog-subscribe-form {
    padding: 20px;
  }

  .blog-subscribe-form__field input {
    height: 50px;
    font-size: 16px;
  }

  .blog-hub__contact-list {
    gap: 14px;
    margin-top: 22px;
  }

  .blog-hub__contact-list a {
    font-size: 18px;
  }
}

@media (max-width: 479px) {
  .blog-hub__hero,
  .blog-hub__main,
  .blog-hub__section-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .blog-hub__title,
  .blog-hub__section-title,
  .blog-hub__cta-title {
    font-size: 24px;
  }

  .blog-hub__section-text,
  .blog-hub__cta-text {
    font-size: 15px;
  }

  .blog-card__body,
  .blog-news-card__body,
  .blog-case-card__body,
  .blog-solution-card__body {
    padding: 14px 14px 16px;
  }

  .blog-card__title,
  .blog-news-card__title,
  .blog-case-card__title,
  .blog-solution-card__title {
    font-size: 16px;
  }

  .blog-card__text,
  .blog-news-card__text,
  .blog-case-card__text,
  .blog-solution-card__text {
    font-size: 14px;
  }
}
