.fallstudien-container {
  position: relative;
  background-color: #000c18; /* Background color */
  padding: 20px; /* Optional padding */
}

.fallstudien-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px; /* Gap between items */
}

.fallstudien-item.reverse {
  flex-direction: row-reverse; /* Flip the order */
}

.fallstudien-hidden.collapsed {
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.fallstudien-hidden {
  max-height: none;
}

.weiterlesen-button-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(
    transparent,
    #000c18
  ); /* Fade effect to background color */
  padding-bottom: 20px;
}

.weiterlesen-button {
  background-color: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.fallstudien-text-container {
  width: 50%;
  padding-right: 20px;
  color: #fff; /* Text color for contrast */
}

.fallstudien-item.reverse .fallstudien-text-container {
  padding-right: 0;
  padding-left: 20px;
}

.fallstudien-headline {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.fallstudien-infos {
  font-size: 16px;
  line-height: 1.6;
}

.fallstudien-image-container {
  width: 50%;
  margin-bottom: 50px;
}

.fallstudien-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
