/*
 Theme Name:   Royal Elementor Kit Child
 Theme URI:    https://kulturring-erwitte.de
 Description:  Child Theme für Royal Elementor Kit
 Author:       MD Kreativbüro
 Author URI:   https://md-kreativbuero.de
 Template:     royal-elementor-kit
 Version:      1.0
*/

/* Hier kommen deine eigenen CSS-Anpassungen rein */

/* Veranstaltungsdetails-Box */
/* Veranstaltungsdetails-Box grün */
.event-meta {
  background: #7ab30b;         
  color: #ffffff;              /* Text weiß */
  border-radius: 15px 15px 0px 0px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  min-height: 75px;
}

.event-meta p {
  margin: 0.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.event-meta strong {
  color: #ffffff; /* Fettgedrucktes bleibt weiß */
}

.event-meta .ticket-link {
  display: inline-block;
  margin-top: 0.5rem;
  background: #ffffff;
  color: #2e7d32 !important;
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.event-meta .ticket-link:hover {
  background: white;
  color: #2e7d32 !important;
}
/* Zeile für Datum/Uhrzeit */
.event-meta .event-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
  font-size: 1.25rem;   /* ca. 20px Schrift */
  font-weight: 500;
}

/* Icon-Container */
.event-meta .event-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG-Icon */
.event-meta svg {
  width: 28px;
  height: 28px;
  fill: #fff; /* weiße Icons */
}

/* Zwei-Spalten-Layout */
.post-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Mobil: eine Spalte */
@media (max-width: 768px) {
  .post-body {
    grid-template-columns: 1fr;
  }

  .post-thumbnail {
    margin-top: 1.5rem;
  }
}

/* Zurück-Link */
.back-link {
  margin: 1rem 0;
}

