.products-by-category-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.products-by-category-section .section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3.6rem;
}
.products-by-category-section .section__heading {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 0 2.8rem;
}
.products-by-category-section .section__thumbnail-wrap {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border-radius: 50%;
}
.products-by-category-section .section__thumbnail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.products-by-category-section .section__title {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-heading);
}
.products-by-category-section .section__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.8rem;
}
.products-by-category-section .products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem 0.2rem;
  width: 100%;
}

/*  */

.products-by-category-section .section__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0.2rem;
}
.products-by-category-section .section__action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(var(--color-bg-contrast-muted-rgb) / 0.08);
  height: 7.2rem;
  padding: 0 2.8rem;
}
.products-by-category-section .section__action .button__text {
  display: block;
}
.products-by-category-section .section__action .button__label {
  display: block;
}
.products-by-category-section .section__action .button__icon {
  display: flex;
  flex-shrink: 0;
}
.products-by-category-section .section__action .button__icon .icon {
  width: 2rem;
  height: 2rem;
}
