.index-section .custom-blog-post h1+ul {
  padding: 0;
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}
.index-section .custom-blog-post h1+ul>li {
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  padding: 0 10px;
  margin-bottom: 20px;
  list-style: none;
}
.index-section .custom-blog-post .article-data-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  --border-radius: var(--product-card-corner-radius);
  --border-width: var(--product-card-border-width);
  --border-opacity: var(--product-card-border-opacity);
  --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--product-card-shadow-blur-radius);
  --shadow-opacity: var(--product-card-shadow-opacity);
  --shadow-visible: var(--product-card-shadow-visible);
  --image-padding: var(--product-card-image-padding);
  --text-alignment: var(--product-card-text-alignment);
}
.index-section .custom-blog-post .article-data-wrapper:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(var(--border-width) * 2 + 100%);
  height: calc(var(--border-width) * 2 + 100%);
  top: calc(var(--border-width) * -1);
  left: calc(var(--border-width) * -1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) rgba(var(--color-shadow),var(--shadow-opacity));
}
.index-section .custom-blog-post ul {
  list-style: none;
  padding: 0 16px;
  margin: 10px 0 0;
}
.index-section .custom-blog-post h1+ul>li ul:last-child {
  padding-bottom: 20px;
}
.custom-blog-post a {
  text-decoration: none;
  color: var(--custom-primary-button-color);
}
.custom-blog-post .article-data-wrapper p {
  padding: 0 16px;
  margin: 0;
}
.custom-blog-post .article-image {
  position: relative;
  padding-top: 80%;
  height: 0;
}
.custom-blog-post .article-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.index-section .custom-blog-post .article-title {
  padding: 0 16px;
}
.custom-blog-post a + br {
  display: none;
}
@media (max-width: 989px) {
  .index-section .custom-blog-post h1+ul>li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 749px) {
  .index-section .custom-blog-post h1+ul {
    margin: 0 -7px;
  }
  .index-section .custom-blog-post h1+ul>li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 7px;
    margin-bottom: 14px;
  }
  .index-section .custom-blog-post .article-title {
    padding: 0 16px;
    margin-bottom: 10px;
  }
}