.cataloglayout__searchresults {
  width: 100%;
}

.catalog__category__overview  {
  margin-bottom: 25px;
}


.catalog__category__overview p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.catalog__partnumber {
  color: #81898f;
}

.catalog__removefilters {
  margin: 10px;
}

.catalog__removefilters li {
  display: inline-block;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  background-color: #333;
  color: #fff;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
  margin-top: 10px;
}

.catalog__removefilters li::after {
  content: "✖";
  position: absolute;
  top: 3px;
  text-align: center;
  right: 5px;
  padding: 3px;
  width: 21px;
  height: 21px;
  color: black;
  border-radius: 50%;
  background-color: #cccccc;
}

.catalog__removefilters li:hover {
  background-color: #4d4d4d;
}

.catalog__listing {
  display: grid;
  grid-auto-rows: minmax(auto, auto);
  grid-template-columns: 1fr;
  gap: 30px 10px;
  list-style: none;
  align-items: stretch;
}

.catalog__listing_item,
.ecosystem__listing_item {
  display: flex;
  border: 1px solid #ddd;
  padding: 10px;
  margin: 10px;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}

.catalog__title {
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.catalog__features ul {
  list-style: square;
  margin: 20px 20px;
  line-height: 1.1rem;
  font-size: 0.8rem;
}

.catalog__link {
  padding-bottom: 5px;
  text-decoration: none;
  color: black;
  letter-spacing: 0.05em;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.ecosystem__link {
  padding-bottom: 5px;
  text-decoration: none;
  color: black;
  letter-spacing: 0.05em;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.ecosystem__companyname {
  font-weight: 700;
  font-size: 1.05rem;
  padding-bottom: 10px;
}
.ecosystem__description {
  font-size: 0.8rem;
  padding-bottom: 10px;
}



.ecosystem__viewmore {
  margin: 10px 0 0;
  cursor: pointer;


}


.ecosystem__viewmore span {
  font-weight: 700;

  transition: max-width .5s ease;
  display: inline-block;
  vertical-align: text-bottom;
  white-space: nowrap;
  overflow: hidden;
  outline: 0;
}

.ecosystem__viewmore svg {
  position: relative;
  top: -1px;
  transform: translateY(3.5px);
  margin-left: 2px;
  width: 25px;
  height: 16px;
  transition-duration: .2s;
}

.ecosystem__listing_item:hover .ecosystem__companyname {
  color: var(--primary);
}

.ecosystem__listing_item:hover .ecosystem__viewmore {
  color: var(--primary);


  
}

.ecosystem__listing_item:hover .ecosystem__viewmore svg {
  transform: translate(4px, 3.5px);
}

.catalog__listing_item:hover .catalog__title {
  text-decoration: underline;
}

.catalog__listing_item:hover {
  border: 1px solid #fcaf1a;
}

.catalog__listing_item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bookmark {
  width: 26px;
  height: 26px;
  background-image: url("../../../img/bookmark-heart-E1lJEdv.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.bookmark-filled {
  background-image: url("../../../img/bookmark-heart-fill-P7beGHY.svg");
}

.ecosystem__listing {
  display: grid;
  grid-auto-rows: minmax(auto, auto);
  grid-template-columns: 1fr;
  gap: 30px 10px;
  list-style: none;
  align-items: stretch;
}

@media (min-width: 617px) {
  .catalog__listing {
    display: grid;
    grid-auto-rows: minmax(auto, auto);
    grid-template-columns: 1fr 1fr;
    gap: 30px 10px;
    list-style: none;
    align-items: stretch;
  }
}

@media (min-width: 1000px) {
  .catalog__listing {
    display: grid;
    grid-auto-rows: minmax(auto, auto);
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 10px;
    list-style: none;
    align-items: stretch;
  }
}



.mb-15 {
  margin-bottom: 15px;
}