.custom-blog {
  background-color: #eeeeee;
  background-position: center center;
  background-repeat: no-repeat;
  border-width: 0;
  border-color: #eae9e9;
  border-style: solid;
}

.custom-blog-row {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 40px;
}

.custom-blog-column {
  width: 100%;
}

.custom-blog-column .custom-blog-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(238, 238, 238);
  border-radius: 10px;
  overflow: hidden;
  padding: 10px 15px;
  height: 100%;
}

.custom-blog-wrapper .custom-blog-wrapper__content {
  margin: 20px auto;
}

.custom-blog-wrapper .custom-blog-wrapper__content-image-container {
  margin: auto;
  max-width: 48px;
  height: 48px;
  border-radius: 100%;
  overflow: hidden;
}

.custom-blog-wrapper .custom-blog-wrapper__content-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-blog-wrapper .custom-blog-wrapper__content-text-container {
  font-size: 16px;
  text-align: center;
  margin-top: 9px;
}

.heading {
  font-size: 36px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
}

@media only screen and (min-width: 1051px) {
  .custom-blog-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 46px;
  }

  .heading {
    margin-bottom: 31px;
  }
}

.rating-spinner {
  display: flex;
  justify-content: center;
}
