#lucene-search-results {}


#lucene-search-results .results-group {
  margin-bottom: 50px;
  border-bottom: 0px dotted #ddd;
}

#lucene-search-results h3 {
  font-size: 1.2rem;
  margin: 35px 0 55px;
}

#lucene-search-results .results-items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;

}

#lucene-search-results .result {
  flex: 0 0 calc(25% - 30px);
  border-left: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  margin-bottom: 30px;
  transition: all 500ms;
  background-color: white;
}

#lucene-search-results .result:hover {
  transform: scale(1.05);
}

#lucene-search-results .result:hover .btn {
  background-color: var(--red);
  text-decoration: none;
  color: white !important;
}



#lucene-search-results .preview {
  text-align: center;
  flex: 0 0 90px;
  width: 100%;
  max-height: 90px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lucene-search-results .preview img {
  max-height: 100%;
  max-width: 100%;
}

#lucene-search-results .content {
  flex: 1;
}

#lucene-search-results h4 {
  font-size: 1rem;
  text-align: center;
}

#lucene-search-results .description {
  font-size: 0.9rem;
  margin-bottom: 25px;

}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #lucene-search-results .result {
    flex: 0 0 calc(33% - 30px);
  }
}


@media screen and (min-width: 576px) and (max-width: 767px) {
  #lucene-search-results .result {
    flex: 0 0 calc(50% - 30px);
  }
}

@media screen and (max-width: 575px) {
  #lucene-search-results .result {
    flex: 0 0 calc(100% - 30px);
  }
}