.seo-blog {
  color: rgb(var(--color-foreground));
  --page-width: 156rem;
  --seo-blog-accent-rgb: 255, 171, 0;
  --seo-blog-border: rgba(var(--color-foreground), 0.1);
  --seo-blog-surface: rgba(var(--color-background), 0.9);

  --color-background: 247, 248, 250;
  --gradient-background: #f7f8fa;
  --color-foreground: 0, 0, 0;
  --color-background-contrast: 169, 179, 201;
  --color-shadow: 26, 26, 26;
  --color-button: 255, 153, 0;
  --color-button-text: 26, 26, 26;
  --color-secondary-button: 247, 248, 250;
  --color-secondary-button-text: 26, 26, 26;
  --color-link: 26, 26, 26;
  --color-badge-foreground: 0, 0, 0;
  --color-badge-background: 247, 248, 250;
  --color-badge-border: 0, 0, 0;
  --payment-terms-background-color: rgb(247 248 250);

  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;

  --custom-radius: 13px;
  --font-body-family: Roboto, sans-serif;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;
  --font-heading-family: Roboto, sans-serif;
  --font-heading-style: normal;
  --font-heading-weight: 800;

  --duration-short: .1s;
  --duration-default: .2s;
  --duration-announcement-bar: .25s;
  --duration-medium: .3s;
  --duration-long: .5s;
  --duration-extra-long: .6s;
  --duration-extra-longer: .75s;
  --duration-extended: 3s;
}

.seo-blog,
.seo-blog-shell,
.seo-blog-layout,
.seo-blog-main,
.seo-blog-sidebar {
  min-width: 0;
}

.seo-blog__inner {
  display: grid;
  gap: 3.2rem;
  padding-top: 3rem;
  padding-bottom: 6rem;
}

.seo-blog-shell {
  display: grid;
  gap: 3rem;
}

.seo-blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(var(--color-foreground), 0.68);
  font-size: 1.3rem;
}

.seo-blog-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-short) ease;
}

.seo-blog-breadcrumbs a:hover,
.seo-blog-breadcrumbs a:focus-visible {
  color: rgb(var(--seo-blog-accent-rgb));
}

.seo-blog-breadcrumbs__divider {
  color: rgba(var(--color-foreground), 0.35);
}

.seo-blog-breadcrumbs__item--current {
  color: rgb(var(--color-foreground));
}

.seo-blog-hero,
.seo-blog-card,
.seo-blog-module,
.seo-blog-empty-state,
.seo-blog-pagination {
  border: 0.1rem solid var(--seo-blog-border);
  border-radius: 2.6rem;
  background:
    linear-gradient(180deg, rgba(var(--color-background), 1), rgba(var(--color-foreground), 0.02)),
    rgb(var(--color-background));
  box-shadow: 0 2rem 5rem rgba(var(--color-foreground), 0.05);
}

.seo-blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(28rem, 0.95fr);
  gap: 2.4rem;
  overflow: hidden;
  padding: clamp(2.4rem, 3vw, 3.8rem);
}

.seo-blog-hero::before,
.seo-blog-hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.seo-blog-hero::before {
  inset: -10rem auto auto -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(var(--seo-blog-accent-rgb), 0.18) 0%, rgba(var(--seo-blog-accent-rgb), 0) 72%);
}

.seo-blog-hero::after {
  inset: auto -8rem -9rem auto;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(var(--color-foreground), 0.08) 0%, rgba(var(--color-foreground), 0) 70%);
}

.seo-blog-hero__main,
.seo-blog-hero__summary {
  position: relative;
  z-index: 1;
}

.seo-blog-hero__main {
  display: grid;
  gap: 1.8rem;
  align-content: start;
}

.seo-blog-hero__eyebrow,
.seo-blog-section-heading__eyebrow {
  margin: 0;
  color: rgba(var(--color-foreground), 0.62);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.seo-blog-hero h1,
.seo-blog-section-heading h2,
.seo-blog-module__header h2,
.seo-blog-empty-state h2 {
  margin: 0;
  line-height: 1.08;
}

.seo-blog-hero h1 {
  font-size: clamp(3.4rem, 4.6vw, 5.8rem);
}

.seo-blog-hero__description {
  color: rgba(var(--color-foreground), 0.76);
  font-size: 1.6rem;
  line-height: 1.8;
}

.seo-blog-hero__description > :first-child,
.seo-blog-newsletter__text > :first-child {
  margin-top: 0;
}

.seo-blog-hero__description > :last-child,
.seo-blog-newsletter__text > :last-child {
  margin-bottom: 0;
}

.seo-blog-hero__summary {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.seo-blog-hero__summary-card {
  display: grid;
  gap: 0.8rem;
  padding: 2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-radius: 2rem;
  background: rgba(var(--color-background), 0.84);
  backdrop-filter: blur(1rem);
}

.seo-blog-hero__summary-label,
.seo-blog-hero__summary-text,
.seo-blog-section-heading__count {
  margin: 0;
  color: rgba(var(--color-foreground), 0.62);
  font-size: 1.3rem;
}

.seo-blog-hero__summary-value {
  margin: 0;
  font-size: clamp(3rem, 3.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
}

.seo-blog-hero__summary-value--compact {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.2;
}

.seo-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(28rem, 34rem);
  gap: 3rem;
  align-items: start;
}

.seo-blog-layout--no-sidebar {
  grid-template-columns: minmax(0, 1fr);
}

.seo-blog-main {
  display: grid;
  gap: 2.4rem;
}

.seo-blog-tags {
  padding: 8px 0;
  overflow: hidden;
}

.seo-blog-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.seo-blog-tags__link,
.seo-blog-product-card__cta,
.seo-blog-empty-state__link,
.seo-blog-pagination .pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.6rem;
  padding: 0 1.6rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.12);
  border-radius: 999px;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform var(--duration-short) ease,
    box-shadow var(--duration-short) ease,
    border-color var(--duration-short) ease,
    background var(--duration-short) ease,
    color var(--duration-short) ease;
}

.seo-blog-tags__link:hover,
.seo-blog-tags__link:focus-visible,
.seo-blog-product-card__cta:hover,
.seo-blog-product-card__cta:focus-visible,
.seo-blog-empty-state__link:hover,
.seo-blog-empty-state__link:focus-visible,
.seo-blog-pagination .pagination__item:hover,
.seo-blog-pagination .pagination__item:focus-visible {
  transform: translateY(-0.2rem);
  border-color: rgba(var(--seo-blog-accent-rgb), 0.42);
  background: rgba(var(--seo-blog-accent-rgb), 0.08);
  color: rgb(var(--seo-blog-accent-rgb));
  box-shadow: 0 1.4rem 3rem rgba(var(--seo-blog-accent-rgb), 0.16);
}

.seo-blog-tags__link.is-active,
.seo-blog-pagination .pagination__item--current {
  border-color: rgba(var(--seo-blog-accent-rgb), 0.45);
  background: rgba(var(--seo-blog-accent-rgb), 0.12);
  color: rgb(var(--seo-blog-accent-rgb));
}

.seo-blog-featured,
.seo-blog-list {
  display: grid;
  gap: 1.8rem;
}

.seo-blog-section-heading,
.seo-blog-module__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.6rem;
}

.seo-blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.seo-blog-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
}

.seo-blog-card__media,
.seo-blog-sidebar-post__media,
.seo-blog-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.05);
}

.seo-blog-card__media-main,
.seo-blog-sidebar-post__media-main,
.seo-blog-product-card__media-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-blog-card__media {
  aspect-ratio: 16 / 11;
}

.seo-blog-card__media--featured {
  aspect-ratio: auto;
  min-height: 100%;
}

.seo-blog-card__media-main {
  height: 100%;
  min-height: 100%;
  padding: clamp(1.8rem, 2.2vw, 2.6rem);
}

.seo-blog-card__media:not(.seo-blog-card__media--featured) .seo-blog-card__media-main {
  aspect-ratio: 16 / 11;
}

.seo-blog-sidebar-post__media {
  inline-size: 10.4rem;
  block-size: 10.4rem;
  max-inline-size: 100%;
  border-radius: 1.8rem;
  justify-self: start;
  align-self: start;
}

.seo-blog-sidebar-post__media-main,
.seo-blog-product-card__media-main {
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.seo-blog-product-card__media {
  inline-size: 9.6rem;
  block-size: 9.6rem;
  max-inline-size: 100%;
  border-radius: 1.8rem;
  justify-self: start;
  align-self: start;
}

.seo-blog-card__media-blur,
.seo-blog-sidebar-post__media-blur,
.seo-blog-product-card__media-blur {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(2rem);
  transform: scale(1.08);
  opacity: 0.34;
}

.seo-blog-card__media-main--placeholder,
.seo-blog-sidebar-post__media-main--placeholder,
.seo-blog-product-card__media-main--placeholder {
  background: rgba(var(--color-background), 0.72);
}

.seo-blog-card__media-main img,
.seo-blog-sidebar-post__media-main img,
.seo-blog-product-card__media-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-short) ease;
}

.seo-blog-card__media:hover img,
.seo-blog-card__media:focus-visible img,
.seo-blog-sidebar-post__media:hover img,
.seo-blog-sidebar-post__media:focus-visible img,
.seo-blog-product-card__media:hover img,
.seo-blog-product-card__media:focus-visible img {
  transform: scale(1.03);
}

.seo-blog-card__tag-badge,
.seo-blog-sidebar-post__tag-badge {
  position: absolute;
  inset: 1.4rem auto auto 1.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 3.4rem;
  max-width: calc(100% - 2.8rem);
  padding: 0 1.2rem;
  border-radius: 999px;
  background: rgba(var(--color-background), 0.92);
  color: rgb(var(--seo-blog-accent-rgb));
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seo-blog-card__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2rem;
}

.seo-blog-card__body--featured {
  padding: clamp(2.4rem, 2.8vw, 3.2rem);
}

.seo-blog-card__content {
  display: grid;
  gap: 1rem;
}

.seo-blog-card__author {
  margin: 0;
  color: rgba(var(--color-foreground), 0.62);
  font-size: 1.3rem;
  font-weight: 600;
}

.seo-blog-card__title,
.seo-blog-sidebar-post__title,
.seo-blog-product-card__title {
  margin: 0;
  line-height: 1.28;
}

.seo-blog-card__title {
  font-size: 2rem;
}

.seo-blog-card__title--featured {
  font-size: clamp(2.8rem, 3.4vw, 4.6rem);
  line-height: 1.08;
}

.seo-blog-card__title a,
.seo-blog-sidebar-post__title a,
.seo-blog-product-card__title a {
  color: rgb(var(--color-foreground));
  text-decoration: none;
  transition: color var(--duration-short) ease;
}

.seo-blog-card__title a:hover,
.seo-blog-card__title a:focus-visible,
.seo-blog-sidebar-post__title a:hover,
.seo-blog-sidebar-post__title a:focus-visible,
.seo-blog-product-card__title a:hover,
.seo-blog-product-card__title a:focus-visible {
  color: rgb(var(--seo-blog-accent-rgb));
}

.seo-blog-card__excerpt,
.seo-blog-newsletter__text {
  color: rgba(var(--color-foreground), 0.72);
}

.seo-blog-card__excerpt {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.72;
}

.seo-blog-card__excerpt--featured {
  font-size: 1.65rem;
  line-height: 1.8;
}

.seo-blog-card__meta,
.seo-blog-sidebar-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  color: rgba(var(--color-foreground), 0.62);
  font-size: 1.3rem;
}

.seo-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.seo-blog-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 1.8rem;
}

.seo-blog-module {
  display: grid;
  gap: 1.8rem;
  padding: 2.2rem;
}

.seo-blog-sidebar-posts,
.seo-blog-product-list {
  display: grid;
}

.seo-blog-sidebar-posts {
  gap: 1.8rem;
}

.seo-blog-product-list {
  gap: 1.2rem;
}

.seo-blog-sidebar-post,
.seo-blog-product-card {
  display: grid;
  gap: 1.4rem;
  padding: 1.2rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-radius: 2rem;
  background: rgba(var(--color-background), 0.84);
}

.seo-blog-sidebar-post {
  grid-template-columns: 10.4rem minmax(0, 1fr);
  align-items: start;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.seo-blog-sidebar-post__body,
.seo-blog-product-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
}

.seo-blog-sidebar-post__body {
  min-block-size: 10.4rem;
}

.seo-blog-sidebar-post__title {
  font-size: 1.6rem;
}

.seo-blog-sidebar-post__title a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.seo-blog-sidebar-post__media {
  background: transparent;
}

.seo-blog-sidebar-post__media-blur {
  display: none;
}

.seo-blog-sidebar-post__media-main {
  padding: 0;
}

.seo-blog-sidebar-post__media-main img {
  object-fit: cover;
}

.seo-blog-product-card {
  grid-template-columns: 9.6rem minmax(0, 1fr);
  align-items: start;
}

.seo-blog-product-card__title {
  font-size: 1.6rem;
}

.seo-blog-product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: baseline;
}

.seo-blog-product-card__price {
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  font-weight: 700;
}

.seo-blog-product-card__compare {
  color: rgba(var(--color-foreground), 0.54);
  font-size: 1.3rem;
  text-decoration: line-through;
}

.seo-blog-product-card__cta {
  margin-top: auto;
  width: fit-content;
  padding-inline: 1.4rem;
  font-size: 1.3rem;
}

.seo-blog-newsletter__text {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.72;
}

.seo-blog-newsletter__form {
  display: grid;
  gap: 1rem;
}

.seo-blog-newsletter__field-group {
  display: grid;
  gap: 1rem;
}

.seo-blog-newsletter__input {
  min-height: 5rem;
  padding: 0 1.6rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.14);
  border-radius: 1.6rem;
  background: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font: inherit;
}

.seo-blog-newsletter__input::placeholder {
  color: rgba(var(--color-foreground), 0.5);
}

.seo-blog-newsletter__input:focus-visible {
  outline: 0.2rem solid rgba(var(--seo-blog-accent-rgb), 0.28);
  outline-offset: 0.2rem;
}

.seo-blog-newsletter__button {
  min-height: 5rem;
  border-radius: 1.6rem;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text)) !important;
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(var(--color-button), var(--alpha-button-background)) !important;
}
.seo-blog-newsletter__button::after{
  content:unset !important;
}
.seo-blog-newsletter__message {
  margin: 0;
  padding: 1.2rem 1.4rem;
  border-radius: 1.4rem;
  font-size: 1.35rem;
}

.seo-blog-newsletter__message--success {
  background: rgba(58, 158, 100, 0.12);
  color: rgb(40, 122, 77);
}

.seo-blog-newsletter__message--error {
  background: rgba(196, 72, 72, 0.12);
  color: rgb(153, 55, 55);
}

.seo-blog-pagination {
  padding: 1.8rem 2rem;
}

.seo-blog-pagination .pagination-wrapper {
  margin: 0;
}

.seo-blog-pagination .pagination {
  justify-content: center;
}

.seo-blog-pagination .pagination__list {
  justify-content: center;
  gap: 0.8rem;
}

.seo-blog-pagination .pagination__item {
  min-width: 4.6rem;
  padding-inline: 1.2rem;
}

.seo-blog-pagination .pagination__item-arrow {
  padding-inline: 0;
  width: 4.6rem;
}

.seo-blog-pagination .pagination__item svg {
  width: 1.4rem;
  height: 1.4rem;
}

.seo-blog-pagination .pagination__item:focus-visible {
  outline: none;
}

.seo-blog-empty-state {
  display: grid;
  justify-items: start;
  gap: 1.2rem;
  padding: 2.4rem;
}

.seo-blog-empty-state p {
  margin: 0;
  color: rgba(var(--color-foreground), 0.72);
  font-size: 1.5rem;
  line-height: 1.7;
}

@media screen and (max-width: 1199px) {
  .seo-blog-hero {
    grid-template-columns: 1fr;
  }

  .seo-blog-hero__summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-blog-card--featured {
    grid-template-columns: 1fr;
  }

  .seo-blog-card__media--featured .seo-blog-card__media-main {
    min-height: 32rem;
  }

  .seo-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 989px) {
  .seo-blog-layout {
    grid-template-columns: 1fr;
  }

  .seo-blog-sidebar {
    position: static;
    top: auto;
  }
}

@media screen and (max-width: 749px) {
  .seo-blog__inner {
    gap: 2.4rem;
    padding-top: 2.2rem;
    padding-bottom: 4.4rem;
  }

  .seo-blog-hero,
  .seo-blog-module,
  .seo-blog-pagination,
  .seo-blog-empty-state {
    border-radius: 2.2rem;
  }

  .seo-blog-hero {
    padding: 2rem;
  }

  .seo-blog-hero__summary {
    grid-template-columns: 1fr;
  }

  .seo-blog-tags__list {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .seo-blog-tags__list::-webkit-scrollbar {
    display: none;
  }

  .seo-blog-tags__link {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .seo-blog-section-heading,
  .seo-blog-module__header {
    align-items: start;
    flex-direction: column;
  }

  .seo-blog-card__body,
  .seo-blog-card__body--featured,
  .seo-blog-module {
    padding: 1.8rem;
  }

  .seo-blog-card__title {
    font-size: 1.85rem;
  }

  .seo-blog-card__title--featured {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .seo-blog-card__excerpt,
  .seo-blog-card__excerpt--featured,
  .seo-blog-newsletter__text {
    font-size: 1.45rem;
  }

  .seo-blog-grid {
    grid-template-columns: 1fr;
  }

  .seo-blog-sidebar-post {
    grid-template-columns: 9.2rem minmax(0, 1fr);
  }

  .seo-blog-product-card {
    grid-template-columns: 8.8rem minmax(0, 1fr);
  }

  .seo-blog-sidebar-post__media {
    inline-size: 9.2rem;
    block-size: 9.2rem;
  }

  .seo-blog-sidebar-post__body {
    min-block-size: 9.2rem;
  }

  .seo-blog-product-card__media {
    inline-size: 8.8rem;
    block-size: 8.8rem;
  }

  .seo-blog-pagination .pagination__list {
    gap: 0.6rem;
  }

  .seo-blog-pagination .pagination__item {
    min-width: 4rem;
    min-height: 4rem;
    padding-inline: 1rem;
    font-size: 1.3rem;
  }
}

h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    font-weight: var(--font-heading-weight);
    letter-spacing: calc(var(--font-heading-scale) * .06rem);
    letter-spacing: initial;
    color: rgb(var(--color-foreground));
    line-height: calc(1 + .3 / max(1, var(--font-heading-scale)));
    word-break: break-word;
}

@media only screen and (min-width: 750px) {
  .hxl {
    font-size: calc(var(--font-heading-scale) * 6.2rem);
  }
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 4rem);
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 5.2rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media only screen and (min-width: 750px) {

  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {

  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}

@media only screen and (min-width: 750px) {

  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

@media only screen and (min-width: 750px) {

  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}