@charset "UTF-8";
/**
 * NXT CPT Filter - Lightbox Styles
 * 
 * Basic Styling für die Experten-Lightbox.
 * Kann im Theme überschrieben oder erweitert werden.
 */
body.nxt-lightbox-open {
  overflow: hidden;
}

.nxt-lightbox-dialog {
  border: none;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  overflow: visible;
}
.nxt-lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.nxt-lightbox-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nxt-lightbox-container {
  position: relative;
  width: 100%;
  width: 90vw;
  max-width: 900px;
  max-height: 90vh;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nxt-lightbox-dialog[open] .nxt-lightbox-container {
  transform: scale(1);
  opacity: 1;
}
.nxt-lightbox-container.nxt-lightbox--loading {
  pointer-events: none;
}

.nxt-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: #4d1b99;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.nxt-lightbox-close:hover, .nxt-lightbox-close:focus {
  color: #fff;
  background: #4d1b99;
}
.nxt-lightbox-close:focus {
  outline: 2px solid #4d1b99;
  outline-offset: 2px;
}

.nxt-lightbox-inner {
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nxt-lightbox-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 2rem;
}

.nxt-lightbox-spinner {
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #4d1b99;
  border-radius: 50%;
  animation: nxt-spin 0.8s linear infinite;
}

@keyframes nxt-spin {
  to {
    transform: rotate(360deg);
  }
}
.nxt-lightbox-content {
  padding: 2rem;
}

.nxt-lightbox-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 600px) {
  .nxt-lightbox-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.nxt-lightbox-image {
  flex-shrink: 0;
}
.nxt-lightbox-image img {
  display: block;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .nxt-lightbox-image img {
    width: 120px;
    height: 120px;
  }
}

.nxt-lightbox-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nxt-lightbox-name {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}
.nxt-lightbox-name .nxt-experte-title {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
}

.nxt-lightbox-kategorien {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nxt-lightbox-kategorien .nxt-kategorie-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #666;
  background: #f3f4f6;
  border-radius: 9999px;
}

.nxt-lightbox-body {
  color: #333;
}

.nxt-lightbox-section {
  margin-bottom: 2rem;
}
.nxt-lightbox-section:last-child {
  margin-bottom: 0;
}

.nxt-lightbox-description {
  font-size: 1rem;
  line-height: 1.7;
}
.nxt-lightbox-description p {
  margin: 0 0 1rem;
}
.nxt-lightbox-description p:last-child {
  margin-bottom: 0;
}

.nxt-lightbox-vortraege {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.nxt-lightbox-section-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
}

.nxt-vortraege-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nxt-vortrag-item {
  padding: 1rem;
  background: #f3f4f6;
  border-radius: 6px;
}

.nxt-vortrag-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.nxt-vortrag-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.nxt-vortrag-excerpt {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.nxt-vortrag-kategorien {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nxt-vortrag-kategorien .nxt-kategorie-tag--small {
  padding: 0.125rem 0.5rem;
  font-size: 0.6875rem;
  color: #666;
  background: #fff;
  border-radius: 9999px;
}

.nxt-lightbox-error {
  padding: 2rem;
  text-align: center;
}
.nxt-lightbox-error p {
  margin: 0 0 1rem;
  color: #333;
}
.nxt-lightbox-error button {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #fff;
  background: #4d1b99;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.nxt-lightbox-error button:hover {
  background: rgb(55.1833333333, 19.35, 109.65);
}/*# sourceMappingURL=nxt-lightbox.css.map */