.brnd-more_recepies_gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1270px;
  margin: auto;
}
.brnd-more_recepies_gallery-bg-wrap {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  display: flex;
  align-content: stretch;
  justify-content: center;
  align-items: center;
}

.brnd-more_recepies_gallery-items {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}

.brnd-more_recepies_gallery-item-wrap {
  width: 290px;
  height: 320px;
  position: relative;
  z-index: 1;
  margin: 8px;
}
.brnd-more_recepies_gallery-item-img {
  width: 290px;
  height: 155px;
  background-size: cover;
  background-position: center center;
}
.brnd-more_recepies_gallery-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  margin: 4px 0;
  padding: 8px 0;
  height: 30px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.brnd-more_recepies_gallery-item-text {
  display: block;
  font-family: var(--brnd-primary-font-family);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  height: 65px;
  margin-bottom: 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: right;
  color: var(--brnd-dark-gray);
}
.brnd-more_recepies_gallery-item-link {
  width: fit-content;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px var(--brnd-primary-blue);
  color: var(--brnd-primary-blue);
  border-radius: 100px;
}

@media screen and (max-width: 1238px) {
  .brnd-more_recepies_gallery-items {
    justify-content: space-around;
  }
}

@media screen and (max-width: 425px) {
  .brnd-more_recepies_gallery-item-wrap {
    width: 100%;
      height: auto;
  }
    .brnd-more_recepies_gallery-item-img{
        width: 100%;
        height: 200px;
    }
    .brnd-more_recepies_gallery-items{
        gap:20px;
    }
}
