#shop-by-category .shop-by-category-title {
  text-align: center;
  margin-bottom: 50px;
}
#shop-by-category .shop-by-category-title h2 {
  font-family: var(--dec-font-family-ethereal);
  font-size: 30px;
  font-weight: 200;
  line-height: normal;
}
#shop-by-category .shop-by-category-images {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: flex-start;
}
#shop-by-category .shop-by-category-images a {
  text-decoration: none;
  flex-shrink: 1;
  max-width: 170px;
  width: 100%;
}
#shop-by-category .shop-by-category-images a .shop-by-category-image-container {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
#shop-by-category .shop-by-category-images a .shop-by-category-image-text {
  text-align: center;
  margin-top: 20px;
  color: var(--dec-black);
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1200px) {
  #shop-by-category .shop-by-category-images a .shop-by-category-image-text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #shop-by-category .shop-by-category-images {
    flex-wrap: wrap;
    gap: 25px 20px;
    width: 400px;
    max-width: 100%;
    justify-content: center;
  }
  #shop-by-category .shop-by-category-images a {
    flex: 0 0 calc(50% - 10px);
    min-width: 140px;
  }
  #shop-by-category .shop-by-category-images a .shop-by-category-image-container {
    margin: 0 auto;
    max-width: 120px;
    width: 100%;
  }
  #shop-by-category .shop-by-category-images a .shop-by-category-image-text {
    margin-top: 15px;
    color: var(--dec-dark-gold-1);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 425px) {
  #shop-by-category .shop-by-category-images a {
    min-width: 120px;
  }
}
