.film-info-box {
  margin-bottom: 3rem;
  /* font-family: sans-serif; */
  color: #111;
}

.film-title {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #000;
}

.film-image-full {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Verhältnis */
  overflow: hidden;
  margin-bottom: 2rem;
}

.film-image-full img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.film-info-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.film-col-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.film-synopsis {
  font-size: 1.4em;
  margin-top:-10px;
}

.film-synopsis p {
  margin-top: 5px;
  line-height: 1.4em !important;
}

.film-details-group {
  flex: 1 1 0;
  max-width: 48%;
}

.film-details-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: .3rem;
  /* display: none !important; */
}

.film-details-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.film-info-box ul,
.film-meta-middle ul,
.film-meta-right ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.film-meta-middle,
.film-meta-right {
  flex: 1 1 50%;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

.film-meta-middle li,
.film-meta-right li {
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 0.5rem;
  list-style: none !important;
  text-align: left !important;
}

.film-meta-middle strong,
.film-meta-right strong {
  font-weight: bold;
}

.film-cast-row {
  margin-top: 1rem;
  font-size: 1rem;
  flex-basis: 100%;
}

.film-divider {
  border: none;
  border-top: 1px solid black;
  margin: 2rem 0;
}

/* Screenings */
.film-screenings {
  margin-top: 1rem !important;
}

.film-screenings h3 {
  font-size: 1.5rem;
  /* margin-bottom: 1rem; */
}

.film-screenings ul {
  list-style: none;
  padding-left: 0;
}

.film-screenings li {
  margin-bottom: 0.5rem;
}

.film-screenings a {
  text-decoration: none;
  color: #111;
}

.film-screenings a:hover {
  text-decoration: underline;
}

/* Trailer */
.film-trailer-full {
  margin-top: 3rem;
}

.film-trailer-full h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.film-trailer-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
  padding: 0 !important;
  margin: 0 !important;
  height: auto;
}

.film-trailer-embed iframe,
.film-trailer-embed embed,
.film-trailer-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .film-info-grid {
    flex-direction: column;
  }

  .film-col-left,
  .film-details-group {
    width: 100%;
    max-width: 100%;
  }

  .film-details-columns {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .film-meta-middle,
  .film-meta-right {
    width: 100%;
  }

  .film-cast-row {
    margin-top: 1.5rem;
  }
}

/* === EVENT PAGE ADDITIONS === */

/* Kategorie über dem Titel mit Icon */
.event-category-label {
  font-size: 1rem;
  font-weight: light;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-category-icon {
  display: inline-block;
  font-family: "ETmodules";
  font-size: 1.2rem;
}

.event-category-screening::before { content: "\e089"; }
.event-category-industry::before  { content: "\e081"; }
.event-category-workshop::before { content: "\e082"; }

/* Titel, Datum, Uhrzeit, Venue-Stil */
.event-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'chaneywide', sans-serif;
  text-transform: uppercase;
  color: black;
}
.event-location, .event-date {
  font-size: 2.5em !important;
  font-weight: normal !important;
  padding-bottom: .6em !important;
  margin-bottom: 0em !important;
}

.event-datetime {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.event-venue-block {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.event-venue-block a {
  text-decoration: none;
  color: black;
}

.event-venue-block a:hover {
  text-decoration: underline;
}

/* === EVENT DETAILS Grid (4 Spalten) === */
.event-details-full {
  margin-top: 3rem;
}

.event-details-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.event-details-grid .event-col p {
  margin: 0.25rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.event-details-grid strong {
  font-weight: bold;
  margin-right: 0.3rem;
}

.event-details-grid a {
  text-decoration: none;
  color: black;
}

.event-details-grid a:hover {
  text-decoration: underline;
}

.film-event-label{
  font-family: 'nudicabold';
}

/* Responsive Anpassung */
@media (max-width: 900px) {
  .event-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


.event-details-grid-three {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.event-details-grid-three p {
  font-size: 1rem;
  /* margin: 0.25rem 0; */
padding-bottom: 0em;
}

.film-event-label {
  font-weight: bold;
  display: inline-block;
  margin-right: 0.3rem;
  margin-bottom: 5px !important;
}


.event-details-grid-three .event-col {
  flex: 1 1 31%;
  max-width: 31%;  min-width: 250px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .event-details-grid-three {
    flex-direction: column;
  }

  .event-details-grid-three .event-col {
    width: 100%;
  }
}
