:root {
      /* Limbus Publisher - Premium Design System */

      /* Colors */
      --lmb-bg-color: #fcfcfc;
      --lmb-bg-subtle: #f3f4f6;
      --lmb-bg-card: #ffffff;

      --lmb-text-main: #111827;
      --lmb-text-muted: #6b7280;
      --lmb-text-light: #9ca3af;

      --lmb-primary: #0f172a;
      --lmb-primary-hover: #1e293b;
      --lmb-accent: #2563eb;
      --lmb-accent-hover: #1d4ed8;

      /* Typography */
      --lmb-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
      --lmb-font-head: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
      --lmb-font-quote: 'Playfair Display', Georgia, serif;

      --lmb-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
      --lmb-text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
      --lmb-text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
      --lmb-text-lg: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
      --lmb-text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
      --lmb-text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
      --lmb-text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
      --lmb-text-4xl: clamp(2.25rem, 1.8rem + 2.25vw, 3.5rem);

      /* Shadows */
      --lmb-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
      --lmb-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
      --lmb-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
      --lmb-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
      --lmb-shadow-book: 0 25px 50px -12px rgb(0 0 0 / 0.25), 0 0 15px rgb(0 0 0 / 0.05);

      /* Radii */
      --lmb-radius-sm: 0.25rem;
      --lmb-radius-md: 0.375rem;
      --lmb-radius-lg: 0.5rem;
      --lmb-radius-xl: 0.75rem;

      /* Spacing */
      --lmb-space-2: 0.5rem;
      --lmb-space-4: 1rem;
      --lmb-space-6: 1.5rem;
      --lmb-space-8: 2rem;
      --lmb-space-12: 3rem;
      --lmb-space-16: 4rem;
      --lmb-space-24: 6rem;

      /* Transitions */
      --lmb-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
      --lmb-transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Global Context & Reset
   ============================================================ */
.limbus-wrap {
      font-family: var(--lmb-font-sans);
      color: var(--lmb-text-main);
      background: var(--lmb-bg-color);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      padding: var(--lmb-space-8) 0;
}

.limbus-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--lmb-space-4);
}

/* ============================================================
   Typography Reset
   ============================================================ */
.limbus-wrap h1,
.limbus-wrap h2,
.limbus-wrap h3,
.limbus-wrap h4 {
      font-family: var(--lmb-font-head);
      font-weight: 700;
      line-height: 1.2;
      margin-top: 0;
      color: var(--lmb-primary);
      letter-spacing: -0.02em;
}

.limbus-wrap p {
      margin-top: 0;
      margin-bottom: var(--lmb-space-4);
      font-size: var(--lmb-text-base);
      color: var(--lmb-text-muted);
}

/* ============================================================
   Single Book Layout (Split Screen Hero)
   ============================================================ */
.limbus-single-hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--lmb-space-12);
      align-items: start;
      margin-bottom: var(--lmb-space-16);
}

@media (min-width: 768px) {
      .limbus-single-hero {
            grid-template-columns: 5fr 7fr;
            gap: var(--lmb-space-16);
      }
}

/* Cover 3D Effect */
.limbus-book-cover-wrap {
      position: relative;
      perspective: 1000px;
}

.limbus-book-cover {
      width: 100%;
      height: auto;
      border-radius: var(--lmb-radius-sm);
      box-shadow: var(--lmb-shadow-book);
      transition: transform var(--lmb-transition-smooth), box-shadow var(--lmb-transition-smooth);
      transform-origin: center right;
}

.limbus-book-cover:hover {
      transform: rotateY(-5deg) scale(1.02);
      box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.3), 0 0 20px rgb(0 0 0 / 0.1);
}

/* Meta Data */
.limbus-book-meta {
      display: flex;
      flex-direction: column;
      gap: var(--lmb-space-6);
}

.limbus-book-tags {
      display: flex;
      flex-wrap: wrap;
      gap: var(--lmb-space-2);
}

.limbus-tag {
      font-size: var(--lmb-text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 0.25rem 0.75rem;
      background: var(--lmb-bg-subtle);
      color: var(--lmb-text-muted);
      border-radius: 9999px;
      transition: all var(--lmb-transition-fast);
      text-decoration: none;
}

.limbus-tag:hover {
      background: var(--lmb-accent);
      color: white;
}

.limbus-book-title {
      font-size: var(--lmb-text-4xl);
      margin-bottom: var(--lmb-space-2);
}

.limbus-book-author {
      font-size: var(--lmb-text-xl);
      color: var(--lmb-accent);
      font-weight: 500;
}

/* Zitat Section */
.limbus-quote-block {
      border-left: 4px solid var(--lmb-accent);
      padding-left: var(--lmb-space-6);
      margin: var(--lmb-space-8) 0;
}

.limbus-quote {
      font-family: var(--lmb-font-quote);
      font-size: var(--lmb-text-2xl);
      font-style: italic;
      color: var(--lmb-primary);
      line-height: 1.4;
      margin: 0;
}

/* Klappentext */
.limbus-book-synopsis {
      font-size: var(--lmb-text-lg);
      line-height: 1.8;
      color: var(--lmb-text-main);
}

/* Data Table */
.limbus-data-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: var(--lmb-space-4);
      background: var(--lmb-bg-subtle);
      padding: var(--lmb-space-6);
      border-radius: var(--lmb-radius-lg);
      margin-top: var(--lmb-space-8);
}

.limbus-data-item {
      display: flex;
      flex-direction: column;
}

.limbus-data-label {
      font-size: var(--lmb-text-xs);
      text-transform: uppercase;
      color: var(--lmb-text-light);
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 0.25rem;
}

.limbus-data-value {
      font-size: var(--lmb-text-sm);
      color: var(--lmb-primary);
      font-weight: 500;
}

/* Shop Links Matrix */
.limbus-shop-matrix {
      margin-top: var(--lmb-space-8);
      border-top: 1px solid #e5e7eb;
      padding-top: var(--lmb-space-8);
}

.limbus-shop-title {
      font-size: var(--lmb-text-lg);
      margin-bottom: var(--lmb-space-4);
}

.limbus-shop-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--lmb-space-4);
}

.limbus-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem 1.5rem;
      background: var(--lmb-primary);
      color: white;
      font-weight: 600;
      font-size: var(--lmb-text-sm);
      border-radius: var(--lmb-radius-md);
      text-decoration: none;
      transition: all var(--lmb-transition-fast);
      box-shadow: var(--lmb-shadow-sm);
}

.limbus-btn:hover {
      background: var(--lmb-primary-hover);
      transform: translateY(-2px);
      box-shadow: var(--lmb-shadow-md);
      color: white;
}

.limbus-btn-accent {
      background: var(--lmb-accent);
}

.limbus-btn-accent:hover {
      background: var(--lmb-accent-hover);
}

.limbus-btn-shop.amazon {
      background: #ff9900;
      color: #111;
}

.limbus-btn-shop.amazon:hover {
      background: #e68a00;
      color: #111;
}

.limbus-btn-shop.thalia {
      background: #0087cf;
}

.limbus-btn-shop.thalia:hover {
      background: #0073b0;
}

/* ============================================================
   Archive Layout (Grid)
   ============================================================ */
.limbus-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--lmb-space-6);
}

@media (min-width: 640px) {
      .limbus-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: var(--lmb-space-8);
      }
}

@media (min-width: 1024px) {
      .limbus-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: var(--lmb-space-8);
      }
}

.limbus-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
}

.limbus-card-img-wrap {
      border-radius: var(--lmb-radius-sm);
      overflow: hidden;
      margin-bottom: var(--lmb-space-4);
      box-shadow: var(--lmb-shadow-md);
      transition: all var(--lmb-transition-smooth);
      aspect-ratio: 2/3;
      background: var(--lmb-bg-subtle);
}

.limbus-card:hover .limbus-card-img-wrap {
      transform: translateY(-8px);
      box-shadow: var(--lmb-shadow-xl);
}

.limbus-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform var(--lmb-transition-smooth);
}

.limbus-card:hover .limbus-card-img {
      transform: scale(1.05);
}

.limbus-card-title {
      font-size: var(--lmb-text-lg);
      margin-bottom: 0.25rem;
      transition: color var(--lmb-transition-fast);
}

.limbus-card:hover .limbus-card-title {
      color: var(--lmb-accent);
}

.limbus-card-author {
      font-size: var(--lmb-text-sm);
      color: var(--lmb-text-muted);
}

/* ============================================================
   ★ Global Limbus Site Styles (loaded on every page)
   Targets the .limbus-global class added to <body> by PHP.
   Only overrides native WP / theme elements where necessary.
   ============================================================ */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

body.limbus-global {
      font-family: var(--lmb-font-sans);
      color: var(--lmb-text-main);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background-color: var(--lmb-bg-color);
}

/* Smooth scrolling */
html.limbus-global {
      scroll-behavior: smooth;
}

/* Global heading overrides */
body.limbus-global h1,
body.limbus-global h2,
body.limbus-global h3,
body.limbus-global h4,
body.limbus-global h5,
body.limbus-global h6 {
      font-family: var(--lmb-font-head);
      letter-spacing: -0.02em;
      color: var(--lmb-primary);
      line-height: 1.25;
}

/* Body copy */
body.limbus-global p,
body.limbus-global li {
      font-size: var(--lmb-text-base);
      line-height: 1.75;
      color: var(--lmb-text-muted);
}

/* Links */
body.limbus-global a {
      color: var(--lmb-accent);
      text-decoration-skip-ink: auto;
      transition: color var(--lmb-transition-fast);
}

body.limbus-global a:hover {
      color: var(--lmb-accent-hover);
}

/* WordPress buttons → Limbus style */
body.limbus-global .wp-block-button__link,
body.limbus-global .wp-element-button,
body.limbus-global input[type="submit"],
body.limbus-global button:not(.wp-admin *) {
      font-family: var(--lmb-font-sans);
      font-weight: 600;
      font-size: var(--lmb-text-sm);
      border-radius: var(--lmb-radius-md);
      transition: all var(--lmb-transition-fast);
      cursor: pointer;
}

/* Standard WP text inputs */
body.limbus-global input[type="text"],
body.limbus-global input[type="email"],
body.limbus-global input[type="search"],
body.limbus-global input[type="tel"],
body.limbus-global input[type="url"],
body.limbus-global textarea,
body.limbus-global select {
      font-family: var(--lmb-font-sans);
      font-size: var(--lmb-text-sm);
      border: 1.5px solid #d1d5db;
      border-radius: var(--lmb-radius-md);
      padding: 0.625rem 0.875rem;
      background: white;
      color: var(--lmb-text-main);
      transition: border-color var(--lmb-transition-fast), box-shadow var(--lmb-transition-fast);
      width: 100%;
      box-sizing: border-box;
}

body.limbus-global input[type="text"]:focus,
body.limbus-global input[type="email"]:focus,
body.limbus-global input[type="search"]:focus,
body.limbus-global textarea:focus,
body.limbus-global select:focus {
      outline: none;
      border-color: var(--lmb-accent);
      box-shadow: 0 0 0 3px rgb(37 99 235 / 0.15);
}

/* ============================================================
   Limbus Page Layout (all standard pages)
   ============================================================ */
.limbus-page-wrap {
      max-width: 900px;
      margin: 0 auto;
      padding: var(--lmb-space-16) var(--lmb-space-4);
}

.limbus-page-title {
      font-size: var(--lmb-text-4xl);
      margin-bottom: var(--lmb-space-8);
}

/* ============================================================
   Front-Page / Hero Section
   ============================================================ */
.limbus-hero {
      position: relative;
      background: var(--lmb-primary);
      color: white;
      padding: var(--lmb-space-24) var(--lmb-space-4);
      text-align: center;
      overflow: hidden;
}

/* Subtle grain texture overlay */
.limbus-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
}

/* Animated gradient accent circle */
.limbus-hero::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -15%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 65%);
      pointer-events: none;
      animation: limbus-hero-pulse 8s ease-in-out infinite;
}

@keyframes limbus-hero-pulse {

      0%,
      100% {
            transform: scale(1);
            opacity: 0.8;
      }

      50% {
            transform: scale(1.1);
            opacity: 1;
      }
}

.limbus-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 820px;
      margin: 0 auto;
}

.limbus-hero-eyebrow {
      font-size: var(--lmb-text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: var(--lmb-space-4);
}

.limbus-hero-title {
      font-family: var(--lmb-font-head);
      font-size: clamp(2.5rem, 3vw + 1.5rem, 5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: white;
      margin-bottom: var(--lmb-space-6);
}

.limbus-hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

.limbus-hero-subtitle {
      font-size: var(--lmb-text-xl);
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: var(--lmb-space-12);
      font-weight: 400;
      line-height: 1.6;
}

/* Instant-Search Wrapper inside Hero */
.limbus-hero-search {
      background: white;
      border-radius: var(--lmb-radius-xl);
      padding: var(--lmb-space-6);
      box-shadow: 0 30px 60px -15px rgb(0 0 0 / 0.4);
      text-align: left;
}

/* ============================================================
   Section: Neuerscheinungen (New Releases)
   ============================================================ */
.limbus-releases {
      padding: var(--lmb-space-24) var(--lmb-space-4);
      max-width: 1200px;
      margin: 0 auto;
}

.limbus-section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: var(--lmb-space-12);
      gap: var(--lmb-space-4);
}

.limbus-section-eyebrow {
      font-size: var(--lmb-text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--lmb-accent);
      margin-bottom: var(--lmb-space-2);
}

.limbus-section-title {
      font-size: var(--lmb-text-3xl);
      margin: 0;
}

.limbus-section-link {
      font-size: var(--lmb-text-sm);
      font-weight: 600;
      color: var(--lmb-accent);
      text-decoration: none;
      flex-shrink: 0;
      transition: color var(--lmb-transition-fast);
}

.limbus-section-link:hover {
      color: var(--lmb-accent-hover);
}

/* ============================================================
   InstantSearch Component Overrides (Satellite Theme Polish)
   ============================================================ */
.limbus-instant-search-wrap .ais-SearchBox-input {
      font-family: var(--lmb-font-sans) !important;
      font-size: var(--lmb-text-lg) !important;
      border-radius: var(--lmb-radius-md) !important;
      border: 1.5px solid #d1d5db !important;
      padding: 0.875rem 1rem 0.875rem 3rem !important;
      box-shadow: none !important;
      transition: all var(--lmb-transition-fast) !important;
}

.limbus-instant-search-wrap .ais-SearchBox-input:focus {
      border-color: var(--lmb-accent) !important;
      box-shadow: 0 0 0 3px rgb(37 99 235 / 0.15) !important;
      outline: none !important;
}

.limbus-instant-search-wrap .ais-SearchBox-submit {
      left: 0.75rem !important;
      color: var(--lmb-text-muted) !important;
}

.limbus-instant-search-wrap .ais-Stats-text {
      font-size: var(--lmb-text-xs);
      color: var(--lmb-text-light);
      margin-top: 0.5rem;
      display: block;
}

.limbus-instant-search-wrap .ais-RefinementList-label {
      font-size: var(--lmb-text-sm);
      color: var(--lmb-text-muted);
      cursor: pointer;
}

.limbus-instant-search-wrap .ais-RefinementList-checkbox:checked~.ais-RefinementList-labelText {
      color: var(--lmb-accent);
      font-weight: 600;
}

.limbus-instant-search-wrap .ais-Pagination-item--selected .ais-Pagination-link {
      background: var(--lmb-primary) !important;
      border-color: var(--lmb-primary) !important;
}


/* ============================================================
   MODUL: Rezensions-Engine (.limbus-reviews-*)
   ============================================================ */

.limbus-reviews-section {
      margin-top: var(--lmb-space-16);
      padding-top: var(--lmb-space-10);
      border-top: 1px solid var(--lmb-bg-subtle);
}

.limbus-reviews-title {
      font-size: var(--lmb-text-2xl);
      font-weight: 700;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-8);
      position: relative;
      padding-left: var(--lmb-space-4);
}

.limbus-reviews-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.15em;
      bottom: 0.15em;
      width: 3px;
      background: var(--lmb-accent);
      border-radius: 2px;
}

.limbus-reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: var(--lmb-space-6);
}

.limbus-review-card {
      background: var(--lmb-bg-subtle);
      border-radius: var(--lmb-radius-lg);
      padding: var(--lmb-space-6);
      display: flex;
      flex-direction: column;
      gap: var(--lmb-space-3);
      border: 1px solid transparent;
      transition: border-color var(--lmb-transition-fast), box-shadow var(--lmb-transition-fast);
}

.limbus-review-card:hover {
      border-color: var(--lmb-accent);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.limbus-review-stars {
      display: flex;
      gap: 2px;
}

.limbus-star {
      font-size: 1.1rem;
      color: var(--lmb-bg-subtle);
      filter: brightness(0.85);
}

.limbus-star--filled {
      color: var(--lmb-accent);
      filter: none;
}

.limbus-review-quote {
      font-size: var(--lmb-text-base);
      line-height: 1.7;
      color: var(--lmb-text-main);
      font-style: italic;
      margin: 0;
      flex: 1;
      position: relative;
      padding-left: var(--lmb-space-4);
}

.limbus-review-quote::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -0.2em;
      font-size: 2rem;
      color: var(--lmb-accent);
      line-height: 1;
      font-style: normal;
}

.limbus-review-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--lmb-space-2);
      padding-top: var(--lmb-space-3);
      border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.limbus-review-source {
      font-size: var(--lmb-text-sm);
      font-weight: 600;
      color: var(--lmb-primary);
}

.limbus-review-badge {
      font-size: var(--lmb-text-xs);
      padding: 2px 8px;
      border-radius: 9999px;
      background: var(--lmb-primary);
      color: white;
      font-weight: 500;
      white-space: nowrap;
}

@media (max-width: 600px) {
      .limbus-reviews-grid {
            grid-template-columns: 1fr;
      }
}


/* ============================================================
   MODUL: Event-Kalender (.limbus-events-*)
   ============================================================ */

.limbus-events-section {
      margin-top: var(--lmb-space-16);
      padding-top: var(--lmb-space-10);
      border-top: 1px solid var(--lmb-bg-subtle);
}

.limbus-events-title {
      font-size: var(--lmb-text-2xl);
      font-weight: 700;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-6);
      padding-left: var(--lmb-space-4);
      position: relative;
}

.limbus-events-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.15em;
      bottom: 0.15em;
      width: 3px;
      background: var(--lmb-accent);
      border-radius: 2px;
}

.limbus-events-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: var(--lmb-space-4);
}

.limbus-event-item {
      display: flex;
      gap: var(--lmb-space-4);
      align-items: flex-start;
      background: var(--lmb-bg-subtle);
      border-radius: var(--lmb-radius-lg);
      padding: var(--lmb-space-4) var(--lmb-space-5);
      border: 1px solid transparent;
      transition: border-color var(--lmb-transition-fast);
}

.limbus-event-item:hover {
      border-color: var(--lmb-accent);
}

.limbus-event-date-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: var(--lmb-primary);
      color: white;
      border-radius: var(--lmb-radius);
      padding: 6px 12px;
      min-width: 52px;
      text-align: center;
      flex-shrink: 0;
}

.limbus-event-month {
      font-size: var(--lmb-text-xs);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      font-weight: 600;
      opacity: 0.8;
}

.limbus-event-day {
      font-size: var(--lmb-text-2xl);
      font-weight: 700;
      line-height: 1;
}

.limbus-event-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
}

.limbus-event-title {
      font-size: var(--lmb-text-base);
      font-weight: 600;
      color: var(--lmb-primary);
}

.limbus-event-datetime,
.limbus-event-location {
      font-size: var(--lmb-text-sm);
      color: var(--lmb-text-muted);
}

.limbus-event-ticket {
      margin-top: 4px;
      font-size: var(--lmb-text-sm);
      font-weight: 600;
      color: var(--lmb-accent);
      text-decoration: none;
}

.limbus-event-ticket:hover {
      text-decoration: underline;
}

/* ============================================================
   MODULE: Shared Button Styles (Presse-Portal, Leseproben)
   ============================================================ */

.limbus-press-kit-wrap,
.limbus-sample-trigger-wrap {
      margin: var(--lmb-space-4) 0;
}

.limbus-press-btn,
.limbus-sample-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      border: 2px solid var(--lmb-primary);
      border-radius: var(--lmb-radius);
      color: var(--lmb-primary);
      background: transparent;
      font-size: var(--lmb-text-sm);
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background var(--lmb-transition-fast), color var(--lmb-transition-fast);
}

.limbus-press-btn:hover,
.limbus-sample-btn:hover {
      background: var(--lmb-primary);
      color: white;
}


/* ============================================================
   MODUL: Autoren-Portfolio (.limbus-author-*)
   ============================================================ */

.limbus-author-portfolio {
      max-width: var(--lmb-container);
      margin: 0 auto;
      padding: var(--lmb-space-10) var(--lmb-space-6);
}

.limbus-author-hero {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: var(--lmb-space-10);
      align-items: start;
      margin-bottom: var(--lmb-space-12);
}

.limbus-author-photo img,
.limbus-author-photo .wp-post-image {
      width: 100%;
      border-radius: var(--lmb-radius-lg);
      box-shadow: var(--lmb-shadow-lg);
      aspect-ratio: 2/3;
      object-fit: cover;
}

.limbus-author-name {
      font-size: var(--lmb-text-4xl);
      font-weight: 800;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-3);
}

.limbus-author-bio-short {
      font-size: var(--lmb-text-lg);
      color: var(--lmb-text-muted);
      line-height: 1.7;
      margin-bottom: var(--lmb-space-5);
}

.limbus-author-quote {
      border-left: 3px solid var(--lmb-accent);
      padding-left: var(--lmb-space-4);
      font-style: italic;
      color: var(--lmb-text-muted);
      margin: var(--lmb-space-5) 0;
      font-size: var(--lmb-text-base);
}

.limbus-author-socials {
      display: flex;
      flex-wrap: wrap;
      gap: var(--lmb-space-3);
      margin-top: var(--lmb-space-5);
}

.limbus-author-social-link {
      padding: 6px 14px;
      border-radius: 20px;
      background: var(--lmb-bg-subtle);
      color: var(--lmb-primary);
      font-size: var(--lmb-text-sm);
      font-weight: 600;
      text-decoration: none;
      transition: background var(--lmb-transition-fast), color var(--lmb-transition-fast);
}

.limbus-author-social-link:hover {
      background: var(--lmb-primary);
      color: #fff;
}

.limbus-author-bio-long {
      margin-bottom: var(--lmb-space-12);
}

.limbus-author-bio-long h2 {
      font-size: var(--lmb-text-2xl);
      font-weight: 700;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-4);
}

.limbus-author-bio-content {
      line-height: 1.85;
      color: var(--lmb-text);
      font-size: var(--lmb-text-base);
}

.limbus-author-books h2 {
      font-size: var(--lmb-text-2xl);
      font-weight: 700;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-6);
}

@media (max-width: 640px) {
      .limbus-author-hero {
            grid-template-columns: 1fr;
      }

      .limbus-author-photo {
            max-width: 200px;
            margin: 0 auto;
      }
}


/* ============================================================
   MODUL: Serien-Manager (.limbus-series-*)
   ============================================================ */

.limbus-series-section {
      margin-top: var(--lmb-space-12);
      padding-top: var(--lmb-space-8);
      border-top: 1px solid var(--lmb-bg-subtle);
}

.limbus-series-title {
      font-size: var(--lmb-text-xl);
      font-weight: 700;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-5);
}

.limbus-series-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
}

@media (min-width: 640px) {
      .limbus-series-grid {
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 2rem;
      }
}

.limbus-series-card {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      text-decoration: none;
      color: inherit;
      transition: transform 0.25s ease, opacity 0.25s ease;
}

.limbus-series-card:hover {
      transform: translateY(-4px);
}

.limbus-series-card.is-current {
      opacity: 0.6;
      pointer-events: none;
}

.limbus-series-card-cover {
      position: relative;
      aspect-ratio: 2 / 3;
      border-radius: 4px;
      overflow: hidden;
      background: var(--lmb-bg-subtle, #e8e5e0);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: box-shadow 0.25s ease;
}

.limbus-series-card:hover .limbus-series-card-cover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.limbus-series-card-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.limbus-series-card-vol {
      position: absolute;
      top: 8px;
      left: 8px;
      background: rgba(15, 15, 15, 0.75);
      backdrop-filter: blur(4px);
      color: #fff;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 0.25rem 0.5rem;
      border-radius: 4px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
}

.limbus-series-card-info {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
}

.limbus-series-card-title {
      font-family: var(--lpt-serif, Georgia, serif);
      font-size: 0.95rem;
      font-weight: 400;
      line-height: 1.35;
      margin: 0;
      color: var(--lpt-black, var(--lmb-text));
}

.limbus-series-card-badge {
      font-size: 0.7rem;
      color: var(--lmb-primary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 500;
}


/* ============================================================
   MODUL: Soundtrack (.limbus-soundtrack-*)
   ============================================================ */

.limbus-soundtrack-section {
      margin-top: var(--lmb-space-10);
      padding-top: var(--lmb-space-8);
      border-top: 1px solid var(--lmb-bg-subtle);
}

.limbus-soundtrack-title {
      font-size: var(--lmb-text-xl);
      font-weight: 700;
      color: var(--lmb-primary);
      margin-bottom: var(--lmb-space-4);
}

.limbus-soundtrack-embed {
      border-radius: var(--lmb-radius-lg);
      overflow: hidden;
}

.limbus-soundtrack-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: var(--lmb-space-10);
      background: var(--lmb-bg-subtle);
      border-radius: var(--lmb-radius-lg);
      text-align: center;
      gap: var(--lmb-space-2);
}

.limbus-soundtrack-icon {
      font-size: 2.5rem;
}

.limbus-soundtrack-consent-note {
      font-size: var(--lmb-text-xs);
      color: var(--lmb-text-muted);
}


/* ============================================================
   MODUL: Goodreads (.limbus-goodreads-*)
   ============================================================ */

.limbus-goodreads-badge {
      display: inline-flex;
      align-items: center;
      margin: var(--lmb-space-4) 0;
}

.limbus-goodreads-link {
      display: flex;
      align-items: center;
      gap: var(--lmb-space-3);
      text-decoration: none;
      background: var(--lmb-bg-subtle);
      padding: var(--lmb-space-3) var(--lmb-space-4);
      border-radius: var(--lmb-radius);
      transition: background var(--lmb-transition-fast);
}

.limbus-goodreads-link:hover {
      background: #f0ebe3;
}

.limbus-stars {
      display: flex;
      gap: 2px;
      color: var(--lmb-accent);
      font-size: 1.1rem;
}

.limbus-goodreads-score {
      font-weight: 700;
      font-size: var(--lmb-text-base);
      color: var(--lmb-primary);
}

.limbus-goodreads-count {
      font-size: var(--lmb-text-xs);
      color: var(--lmb-text-muted);
}


/* ============================================================
   MODUL: Verfügbarkeits-Checker (.limbus-availability)
   ============================================================ */

.limbus-availability {
      margin-top: var(--lmb-space-10);
      padding-top: var(--lmb-space-6);
      border-top: 1px solid var(--lmb-bg-subtle);
}

.limbus-availability-title {
      font-size: var(--lmb-text-base);
      font-weight: 600;
      margin: 0 0 12px;
      color: var(--lmb-text);
}

.limbus-availability-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
}

.limbus-avail-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      color: var(--avail-color, #333);
      border: 1.5px solid var(--avail-color, #ccc);
      background: #fff;
      transition: background .2s, color .2s;
}

.limbus-avail-btn:hover {
      background: var(--avail-color, #eee);
      color: #fff;
}


/* ============================================================
   MODUL: Rechte & Lizenzen (.limbus-rights-*)
   ============================================================ */

.limbus-rights-widget {
      background: var(--lmb-bg-subtle);
      border-radius: 8px;
      padding: 16px 20px;
      font-size: 14px;
      line-height: 1.6;
}

.limbus-rights-widget p {
      margin: 0 0 6px;
}


/* ============================================================
   MODUL: Blogger-Management (.limbus-review-*)
   ============================================================ */

.limbus-review-request-box {
      margin: 24px 0;
}

.limbus-review-request-box>summary::-webkit-details-marker {
      display: none;
}

.limbus-review-success,
.limbus-review-error {
      border-radius: 8px;
      padding: 14px 18px;
      margin: 16px 0;
      font-size: 14px;
}

.limbus-reviewer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
}

.limbus-reviewer-list li a {
      color: var(--lmb-primary);
      font-size: 14px;
}