/* Event Cards + Detail Page — namespaced with ec- prefix */

/* === Section wrapper === */
.ec-section {
  background: #0a0a0a;
  padding: 80px 0;
}
.ec-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ec-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.ec-section-title {
  font-family: 'Philosopher', serif;
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.ec-section-title em,
.ec-section-title .ec-accent {
  color: #C89B5A;
  font-style: italic;
}

/* === Card grid === */
.ec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .ec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ec-grid { grid-template-columns: 1fr; }
  .ec-section { padding: 48px 0; }
  .ec-section-title { font-size: 32px; }
}

/* === Card === */
.ec-card-wrap {
  border-radius: 0;
  overflow: hidden;
  background: #1a1a1a;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ec-card-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 155, 90, 0.15);
}
.ec-card-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ec-card-image {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* 3:2 ratio */
  overflow: hidden;
}
.ec-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ec-card-wrap:hover .ec-card-img {
  transform: scale(1.05);
}
.ec-card-img-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

/* date badge overlay */
.ec-date-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(200, 155, 90, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  text-align: center;
  min-width: 60px;
}
.ec-date-label {
  font-family: 'Philosopher', serif;
  font-size: 9px;
  color: #C89B5A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(200, 155, 90, 0.25);
  padding-bottom: 4px;
}
.ec-date-dow {
  font-family: 'Philosopher', serif;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.ec-date-day {
  font-family: 'Philosopher', serif;
  font-size: 28px;
  color: #fff;
  line-height: 1.1;
}
.ec-date-month {
  font-family: 'Philosopher', serif;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.ec-date-month-top {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: 0;
}
.ec-date-year {
  font-family: 'Philosopher', serif;
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* card body */
.ec-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ec-tag-group {
  margin-bottom: 10px;
}
.ec-tag {
  display: inline-block;
  background: rgba(200, 155, 90, 0.15);
  color: #C89B5A;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
}
.ec-card-title {
  font-family: 'Philosopher', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ec-card-venue {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #C89B5A;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.ec-card-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ec-card-footer {
  margin-top: auto;
  padding-top: 16px;
}
.ec-details-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #C89B5A;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ec-card-wrap:hover .ec-details-link {
  text-decoration: none;
}

/* browse all button */
.ec-browse-wrap {
  text-align: center;
  margin-top: 40px;
}
.ec-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.ec-browse-arrow {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
}
.ec-browse-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* empty state */
.ec-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
}

/* === Detail page === */

.ec-detail-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .ec-detail-hero { height: 520px; }
}
.ec-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}
.ec-detail-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ec-detail-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  z-index: 1;
}
.ec-detail-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px 24px;
  z-index: 2;
}
@media (min-width: 768px) {
  .ec-detail-hero-content { padding: 48px 40px; }
}
.ec-detail-hero .ec-tag {
  background: #C89B5A;
  color: #0a0a0a;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.ec-detail-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ccc;
  margin-bottom: 8px;
}
.ec-detail-date-label {
  color: #C89B5A;
  margin-right: 6px;
}
.ec-detail-title {
  font-family: 'Philosopher', serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  max-width: 800px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .ec-detail-title { font-size: 52px; }
}
.ec-detail-back {
  position: absolute;
  top: 100px;
  left: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: background 0.2s;
  z-index: 2;
}
.ec-detail-back:hover { background: #fff; }
.ec-back-arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2.5px solid #111;
  border-bottom: 2.5px solid #111;
  transform: rotate(45deg);
  margin-left: 3px;
}

/* tour dates row */
.ec-tour-section {
  background: #111;
  border-bottom: 1px solid #222;
  padding: 24px;
}
@media (min-width: 768px) {
  .ec-tour-section { padding: 24px 40px; }
}
.ec-tour-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ec-tour-heading {
  font-family: 'Philosopher', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.ec-tour-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.ec-tour-card {
  min-width: 240px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px;
  flex-shrink: 0;
}
.ec-tour-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.ec-tour-venue {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}
.ec-tour-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
  margin-top: 14px;
}
.ec-tour-time {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}
.ec-tour-tickets-btn {
  display: inline-block;
  margin-top: 14px;
  background: #C89B5A;
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.ec-tour-tickets-btn:hover { background: #d4a96a; }
.ec-tour-partner-link {
  display: inline-block;
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.ec-tour-partner-link:hover { color: #C89B5A; }

/* two-column layout */
.ec-detail-content {
  display: grid;
  gap: 40px;
  padding: 40px 24px;
  background: #0a0a0a;
}
@media (min-width: 768px) {
  .ec-detail-content {
    grid-template-columns: 1.7fr 0.9fr;
    padding: 48px 40px;
  }
}

/* main column */
.ec-detail-main section { margin-bottom: 40px; }
.ec-detail-main section:last-child { margin-bottom: 0; }

.ec-section-heading {
  font-family: 'Philosopher', serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
}
.ec-about-text {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #bbb;
}

/* gallery */
.ec-gallery-wrap {
  position: relative;
}
.ec-gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.ec-gallery-scroll::-webkit-scrollbar {
  display: none;
}
.ec-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 155, 90, 0.85);
  color: #0a0a0a;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.ec-gallery-wrap:hover .ec-gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}
.ec-gallery-arrow:hover {
  background: #d4a96a;
}
.ec-gallery-arrow--left { left: -16px; }
.ec-gallery-arrow--right { right: -16px; }
@media (max-width: 767px) {
  .ec-gallery-arrow--left { left: 6px; }
  .ec-gallery-arrow--right { right: 6px; }
  .ec-gallery-arrow { opacity: 0.8; pointer-events: auto; }
}
.ec-gallery-item {
  min-width: 280px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .ec-gallery-item { min-width: 340px; height: 260px; }
}
.ec-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.ec-gallery-item:hover img {
  transform: scale(1.05);
}

/* artists grid */
.ec-artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .ec-artists-grid { grid-template-columns: repeat(2, 1fr); }
}
.ec-artist-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ec-artist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.ec-artist-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #222;
}
.ec-artist-info {
  padding: 14px;
}
.ec-artist-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.ec-artist-role {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: #888;
  margin-top: 3px;
}
.ec-artist-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 36px;
}

/* partners */
.ec-partners-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 20px;
}
.ec-partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 120px;
  height: 56px;
  text-decoration: none;
  transition: background 0.2s;
}
.ec-partner-link:hover { background: #2a2a2a; }
.ec-partner-logo {
  max-height: 32px;
  max-width: 100px;
  object-fit: contain;
}
.ec-partner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ccc;
  text-align: center;
}

/* sidebar */
.ec-sidebar-sticky {
  position: sticky;
  top: 24px;
}
.ec-sidebar-box {
  background: #141414;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 24px;
}
.ec-sidebar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 12px;
}
.ec-sidebar-dates { margin-bottom: 28px; }
.ec-sidebar-date-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.ec-sidebar-date-card:hover {
  background: #2a2a2a;
}
.ec-sidebar-date-card:last-child { margin-bottom: 0; }
.ec-sidebar-date-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.ec-sidebar-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.ec-sidebar-venue {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}
.ec-sidebar-datetime {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
}
.ec-sidebar-ticket-sm {
  display: inline-block;
  background: #C89B5A;
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.ec-sidebar-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.ec-sidebar-partner-sm {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.ec-sidebar-partner-sm:hover { color: #C89B5A; }

.ec-sidebar-divider {
  border: none;
  border-top: 1px solid #2a2a2a;
  margin: 20px 0;
}
.ec-sidebar-ticket-info {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.ec-btn-primary {
  display: block;
  width: 100%;
  text-align: center;
  background: #C89B5A;
  color: #0a0a0a;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 10px;
}
.ec-btn-primary:hover { background: #d4a96a; }
.ec-btn-secondary {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border: 1px solid #333;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.ec-btn-secondary:hover { background: #1a1a1a; }

/* === Nav readability overlay === */
.navbar-absolute::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.navbar-absolute .w-container {
  position: relative;
  z-index: 1;
}
.nav-item-title.white-style,
.nav-dropdown-link,
.btn-title-text,
.image-burger {
  text-shadow: none;
}

/* === Lightbox === */
.ec-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.ec-lightbox.ec-lb-open {
  display: flex;
}
.ec-lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}
.ec-lb-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ec-lb-close:hover { opacity: 1; }
.ec-lb-prev,
.ec-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 8px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s, background 0.2s;
}
.ec-lb-prev:hover,
.ec-lb-next:hover { opacity: 1; background: rgba(255, 255, 255, 0.18); }
.ec-lb-prev { left: 16px; }
.ec-lb-next { right: 16px; }

/* Fix arrow icon alignment next to team member names */
.event-caregory-info-link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.event-caregory-info-link .no-top-margin-copy {
  margin-bottom: 0;
}
.event-caregory-info-link img {
  flex-shrink: 0;
}

/* === Kontakt page icon fix === */
.contacts-icon {
  color: #C89B5A;
  display: flex;
  align-items: center;
}
.contacts-icon svg {
  flex-shrink: 0;
}

/* === Hide Instagram grid on desktop === */
@media (min-width: 768px) {
  .instagram-grid { display: none !important; }
}

/* === Category image hover — music note blob === */
.event-category-image-link {
  position: relative;
}
.event-category-image-link::after {
  content: '\266B';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(0,0,0,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
  z-index: 5;
}
.event-category-image-link:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* === Pressearchiv page === */
.ec-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.ec-review-card.ec-hidden { display: none; }
.ec-show-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.ec-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.ec-show-more-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
}
.ec-review-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 32px;
}
.ec-review-source {
  font-family: 'Philosopher', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
a.ec-review-source-link {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: color 0.2s;
}
a.ec-review-source-link:hover {
  color: #C89B5A;
}
.ec-review-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #C89B5A;
  font-weight: 500;
  margin-bottom: 16px;
}
.ec-review-quote {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  border: none;
  background-image: none;
}
.ec-review-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  opacity: 0.6;
  margin-top: 2px;
}
.ec-review-quote p {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #bbb;
  margin: 0;
  font-style: italic;
}

/* --- Videos (Hörproben) --- */
.ec-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .ec-videos-grid { grid-template-columns: 1fr; gap: 32px; }
}
.ec-video-card { }
.ec-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}
.ec-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.ec-video-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #ccc;
  margin-top: 12px;
  font-weight: 500;
}

/* --- Downloads --- */
.ec-section-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  color: #aaa;
  margin-top: 12px;
}
.ec-download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .ec-download-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .ec-download-grid { grid-template-columns: 1fr; }
}
.ec-download-grid-logos {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .ec-download-grid-logos { grid-template-columns: repeat(2, 1fr); }
}
.ec-download-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s, transform 0.3s;
}
.ec-download-card:hover {
  border-color: rgba(200,155,90,0.4);
  transform: translateY(-3px);
}
.ec-download-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ec-logo-img {
  aspect-ratio: auto;
  max-height: 160px;
  object-fit: contain;
  padding: 24px;
}
.ec-logo-dark-bg {
  background: #1a1a1a;
}
.ec-download-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #999;
  padding: 12px 16px;
  margin: 0;
}
