.randomer > ol {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (min-width: 425px) {
  .randomer > ol {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .randomer > ol {
    gap: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .randomer > ol {
    justify-content: space-between;
  }
}
.randomer > ol li {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(50% - 7.5px);
}
@media screen and (min-width: 1024px) {
  .randomer > ol li {
    border-radius: 14px;
    width: calc(33.3333333333% - 20px);
    height: 280px;
  }
}
@media screen and (min-width: 1440px) {
  .randomer > ol li:nth-child(1), .randomer > ol li:nth-child(3), .randomer > ol li:nth-child(5), .randomer > ol li:nth-child(6) {
    width: calc(30% - 20px);
  }
  .randomer > ol li:nth-child(2), .randomer > ol li:nth-child(4) {
    width: calc(40% - 20px);
  }
}
.randomer > ol li .randomer-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.randomer > ol li .randomer-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.randomer > ol li .randomer-item .random-item-content {
  padding: 15px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white-color);
  gap: 12px;
  transition: var(--transition-all-fast);
}
@media screen and (min-width: 1024px) {
  .randomer > ol li .randomer-item .random-item-content {
    padding: 30px;
  }
}
.randomer > ol li .randomer-item .random-item-content .random-item-category {
  font-size: 0.8em;
}
.randomer > ol li .randomer-item .random-item-content .random-item-title {
  font-size: var(--heading-size-3);
  font-weight: bold;
}
.randomer > ol li .randomer-item:hover .random-item-content {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}