.filmauslese-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-size: var(--text-3xl);
  color: var(--text-color);
  margin-bottom: 26px;
}

.filmauslese-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--dark-card-backgroundcolor);
  padding: 30px 25px;
  box-shadow: 0px 3px 10px #0000005c;
  position: relative;
}

.filmauslese-frame {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 30px;
  left: 25px;
  width: 130px;
  padding: 0 25px 0 10px;
  height: 40px;
  background-color: var(--ticket-color);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.filmauslese-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 31px;
}

.stroke {
  margin-left: 12px;
  height: 2px;
  flex: 1;
  background-color: var(--dark-card-backgroundcolor);
}

.filmauslese-item__image {
  width: 100%;
  aspect-ratio: 27/40;
  margin-bottom: 17px !important;
}

.filmauslese-item__title {
  color: var(--text-color);
  text-align: left;
  font-size: var(--text-sm);
  margin-bottom: 17px !important;
}

.filmauslese-item__text {
  color: var(--text-color);
  text-align: left;
  font-size: var(--text-sm);
  width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  margin-bottom: 17px !important;
}

.showtimes-container {
  display: flex;
  gap: 2px;
  align-items: center;
}

.showtimes-container__datetime {
  width: 64px;
  height: fit-content;
  border: 1px solid var(--border-tab-color);
  border-radius: var(--border-md);
  text-align: center;
}

.showtimes-container__datetime p {
  margin: 0;
}

.showtimes-container__datetime a {
  text-decoration: none;
  color: var(--text-color);
  font-size: var(--text-sm);
}

.showtimes-container__moredays {
  width: 145px !important;
  height: 24px !important;
  font-size: var(--text-sm);
  text-align: center;
  border-radius: var(--border-md);
  color: var(--ticket-color) !important;
  border: 1px solid var(--ticket-color) !important;
}

.filmauslese-item-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

/* Small devices (sm) - 640px */
@media (max-width: 640px) {
  .filmauslese-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 25px; /* Adjust the gap as needed */
  }

  .filmauslese-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: var(--text-xl);
    margin-bottom: 12px;
  }

  .filmauslese-header__second {
    font-size: var(--text-sm);
  }

  .filmauslese-item__text {
    display: none !important;
  }
}

/* Medium devices (md) - 768px */
@media (min-width: 641px) and (max-width: 768px) {
  .filmauslese-content {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 25px; /* Adjust the gap as needed */
  }
  .filmauslese-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    font-size: var(--text-xl);
  }
  .filmauslese-header__second {
    font-size: var(--text-sm);
  }
}

/* Extra-large devices (xl) - 1280px */
@media (min-width: 769px) and (max-width: 1280px) {
  .filmauslese-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 31px; /* Adjust the gap as needed */
  }
}

/* Double extra-large devices (2xl) - 1536px */
@media (min-width: 1281px) and (max-width: 1536px) {
  /* Your styles for double extra-large devices here */
}
