#recipeList {
  /* Adjust according to your existing styles */
  padding: 2vh 2vw;
  background-color: #dde8ee;
  flex-direction: column;
}

#sections-container {
  overflow: hidden;
}

section {
  overflow-x: auto;
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

section::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}


#sections-container section h2 {
  padding-left: 2px;
  text-transform: uppercase;

}

.recipes-container {
  display: flex;
  flex-direction: row;
  padding: 0;
}

.recipe-item {
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;

}

.feedback,
.recipe-item {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  margin: 0 .5% .5% 0;
  box-sizing: border-box;
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 2px dotted #9fa6ad;
  min-height: 150px;
}

.recipe-item img {
  width: 100%;
  height: 16vh;
  border-radius: 8px;
  object-fit: cover;
}


h2,
p {
  margin: 4px 0;
}

#recipeList h3 {
  padding-left: 2px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  height: 3em;
  margin-bottom: 0;
}

.meta-data-tags {
  display: flex;
  flex-wrap: wrap;
}

.meta-data-source {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}

.meta-data {
  margin-top: 1vh;
}

.tag {
  display: inline-block;
  background-color: #e9e9e9;
  border-radius: 2px;
  padding: 4px 6px;
  margin: 2px 2px 0 0;
  font-size: 0.8em;
}

i {
  width: 20px;
  text-align: center;
  color: #9fa6ad;
}



@media (orientation: landscape) {

  #recipeList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* media queries for wider screens */
@media (orientation: landscape) and (min-width: 600px) {

  .recipe-item,
  .feedback {
    width: 32.8%;
  }
}

@media (orientation: landscape) and (min-width: 1100px) {

  .recipe-item,
  .feedback {
    width: 24.5%;
  }
}