@charset "utf-8";
/* CSS Document */

.cardst {
  box-sizing: border-box;
  display: flex;
  min-width: 320px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.cardst:hover {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.081);
}

.date-time-container {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  padding: 0.5rem;
}

.date-time {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 1rem;
  gap: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 1);
}

.separatorst {
  width: 1px;
  flex: 1 1 0%;
  background-color: rgba(17, 24, 39, 0.1);
}

.contentst {
    width: 1050px;
    display: flex;
    flex-wrap: wrap; /* Ermöglicht das Umbruchverhalten */
    justify-content: center; /* Ausrichtung zentrisch */
    border-radius: 10px;
}

.infosst {
    width: 100%; /* Jede Info-Box nimmt 30% der Breite ein */
    max-width: 350px; /* Maximale Breite für die Info-Bereiche */
    flex-grow: 1; /* Elemente dehnen sich aus, um freien Platz zu nutzen */
    box-sizing: border-box;
    margin-bottom: 20px; /* Abstand nach unten */
}

.titlest {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18.72px;
  color: rgba(17, 24, 39, 1);
  text-decoration: underline;
text-decoration-style: double; 
text-decoration-color: rgba(68, 96, 156,1);
text-decoration-thickness: 2px;
text-decoration-skip: spaces;		/** Safari **/
text-decoration-skip-ink: spaces;
}

.descriptionst {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: auto;
  line-clamp: auto;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(55, 65, 81, 1);
}
