.roi {
  background: transparent;
  width: 1100px; 
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-left: -8px;
  margin-right: -8px;
}

/* Media Query für mobile Geräte */
@media (max-width: 1200px) {
  .roi {
    display: none; /* Versteckt das .roi-Element auf mobilen Geräten */
}


}

.roi_box {
	background: var(--designbgcolorlightest);
	width: 30.6%;
	padding: 10px;
}

.roi_title {
  font-size: 20px;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 5px;
  text-align: center;
  font-family: Wolfpack;
  height: 2.5em; /* Fixed height for 2 lines */
  line-height: 1.25em; /* Adjusted line-height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Show ellipsis for overflow text */
  white-space: wrap; /* line break */
}

.roi_body {
  display: flex;
  gap: 10px;
	padding-bottom: 10px;
  padding-left: 5px;
  padding-right: 5px;
}

.roi_img {
  width: 100px;
  height: 100px;
  position: relative; /* Needed for pseudo-elements */
  box-sizing: border-box;
  filter: grayscale(100%); /* Macht das Bild schwarz-weiß */
}

.roi_img::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid var(--designwhite);
  box-sizing: border-box;
}

.roi_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.roi_inhalt {
  width: 65%;
}

.roi_forum {
  font-size: 12px;
  font-family: Wolfpack;
  padding: 5px;
}

.roi_gesuch {
}

.roi_information {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.roi_info {
  background: transparent;
  padding: 5px;
  font-size: 7px;
  text-transform: uppercase;
  font-family: Montserat;
  font-style: normal;
  white-space: nowrap; /* No line break */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Show ellipsis for overflow text */
border-bottom: 1px solid var(--postborder);
}

.roi_desc {
  text-align: justify;
}

