#item_carousel {
  margin: 80px 0;
}

#projects-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.project_item_content {
  flex: 0 0 383px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.project_item_headline_container {
  padding: 32px;
  background-color: #7BF1A866;
}

.project_item_image_container {
  height: 256px;
  flex-shrink: 0;
}

.project_item_image_container img {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  object-fit: cover;
  height: 100%;
}

.project_item_headline_container {
  padding: 32px;
  background-color: #EAE4E4;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project_item_headline {
  font-size: 26px;
  line-height: 32px;
  font-weight: 600;
  color: #002E2D;
  margin-bottom: 16px;
}

.project_item_text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
  color: #002e2d;
}

.project_item_link {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #002e2d;
  text-decoration: none;
  margin-top: auto;
}

.project_item_link:hover {
  color: #3E6565;
  text-decoration: underline;
}

.project_item_link_icon svg {
  display: inline-block;
  vertical-align: text-bottom;
  transform: scale(0.8);
  transform-origin: bottom;
}


@media (max-width: 900px) {
  .project_item_content { flex: 0 0 100%; }  /* eine Spalte */

  #item_carousel {
    margin: 64px 0;
  }

  .project_item_headline_container {
    padding: 24px 16px;
  }

  .project_item_headline {
    font-size: 22px;
    line-height: 28px;
  }

  .project_item_text {
    font-size: 14px;
    line-height: 20px;
  }

  .project_item_link {
    font-size: 16px;
    line-height: 22px;
  }
}
