/* =============================================================================
   Twindor Casino — Theme Override Layer
   Load after twindor-theme.css. Maps design tokens to existing .lc-* components.
   ============================================================================= */

body {
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: var(--color-gradient-hero);
  font-weight: 450;
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    background-image:
      linear-gradient(rgba(var(--td-accent-rgb), 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(var(--td-accent-rgb), 0.03) 1px, transparent 1px),
      radial-gradient(ellipse 120% 70% at 50% -15%, rgba(var(--td-accent-rgb), 0.06), transparent 52%);
    background-size: 52px 52px, 52px 52px, auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    background-image:
      linear-gradient(rgba(var(--td-accent-rgb), 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(var(--td-accent-rgb), 0.02) 1px, transparent 1px);
    background-size: 52px 52px;
  }
}

h1,
.lc-h1 {
  font-weight: 700;
  color: var(--color-heading);
}

h2,
.lc-h2 {
  font-weight: 600;
  color: var(--color-heading);
}

h3,
h4,
.lc-heading-serif {
  font-weight: 600;
  color: var(--color-heading);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition:
    color var(--td-duration) var(--td-ease),
    text-decoration-color var(--td-duration) var(--td-ease),
    text-underline-offset var(--td-duration) var(--td-ease);
}

a:hover,
a:focus-visible {
  color: var(--color-link-hover);
}

.lc-entry__content a:hover,
.lc-entry__content a:focus-visible,
.lc-sv-markup a:hover,
.lc-sv-markup a:focus-visible,
.lc-footer a:not(.lc-btn):hover,
.lc-footer a:not(.lc-btn):focus-visible {
  text-decoration: underline;
  text-decoration-color: rgba(var(--td-accent-rgb), 0.55);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

/* Header / Navigation */
.lc-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--td-shadow-light);
}

.lc-header__inner {
  gap: 12px;
}

.lc-header__brand--logo {
  flex: 0 0 auto;
  max-width: 132px;
  min-width: 0;
}

.lc-header__brand--logo .custom-logo {
  max-height: 32px;
  max-width: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.lc-header__nav-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 992px) {
  .lc-header__nav {
    flex-wrap: nowrap;
  }

  .lc-header__nav a {
    padding: 8px 10px;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .lc-header__actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .lc-header__actions .lc-btn {
    padding: 8px 14px;
    font-size: 0.875rem;
  }
}

@media (min-width: 992px) and (max-width: 1180px) {
  .lc-header__brand--logo {
    max-width: 112px;
  }

  .lc-header__brand--logo .custom-logo {
    max-height: 28px;
    max-width: 112px;
  }

  .lc-header__nav a {
    padding: 8px 8px;
    font-size: 0.8125rem;
  }
}

.lc-header__nav a {
  color: var(--color-muted);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    color var(--td-duration) var(--td-ease),
    border-color var(--td-duration) var(--td-ease),
    text-decoration-color var(--td-duration) var(--td-ease);
}

.lc-header__nav a:hover,
.lc-header__nav a:focus-visible,
.lc-header__nav .current-menu-item > a,
.lc-header__nav .current_page_item > a {
  color: var(--color-primary);
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  border-bottom: 2px solid var(--color-primary);
}

.lc-header__burger {
  border-color: var(--color-border);
  background: var(--color-surface);
}

.lc-header__burger:hover,
.lc-header__burger:focus-visible {
  border-color: var(--color-border-hover);
  box-shadow: 0 0 0 1px rgba(var(--td-accent-rgb), 0.12);
}

.lc-header__panel {
  background: linear-gradient(180deg, rgba(17, 20, 22, 0.98) 0%, rgba(17, 20, 22, 0.99) 100%);
  border-top: 1px solid var(--color-border);
}

.lc-header__panel .lc-header__nav--drawer a:hover,
.lc-header__panel .lc-header__nav--drawer a:focus-visible,
.lc-header__panel .lc-header__nav--drawer .current-menu-item > a,
.lc-header__panel .lc-header__nav--drawer .current_page_item > a {
  color: var(--color-primary);
  background: rgba(var(--td-accent-rgb), 0.08);
}

/* Buttons */
.lc-btn {
  border-radius: var(--td-radius-md);
  transition:
    transform var(--td-duration) var(--td-ease),
    box-shadow var(--td-duration) var(--td-ease),
    background var(--td-duration) var(--td-ease),
    border-color var(--td-duration) var(--td-ease),
    color var(--td-duration) var(--td-ease);
}

.lc-btn:focus-visible {
  outline-color: var(--color-primary);
}

.lc-btn--primary,
.lc-btn--hero,
.lc-slots__btn,
.lc-mobile-cta {
  color: var(--color-cta-text) !important;
  background: var(--color-primary) !important;
  border: none !important;
  box-shadow: var(--td-shadow-light);
  font-weight: 700;
}

.lc-btn--primary:hover,
.lc-btn--primary:focus-visible,
.lc-btn--hero:hover,
.lc-btn--hero:focus-visible,
.lc-slots__btn:hover,
.lc-slots__btn:focus-visible,
.lc-mobile-cta:hover,
.lc-mobile-cta:focus-visible {
  color: var(--color-cta-text) !important;
  background: var(--color-primary-hover) !important;
  filter: none;
  transform: translateY(-1px);
  box-shadow: var(--td-shadow-cta-hover);
}

.lc-btn--secondary,
.lc-slots__btn--outline {
  background: transparent !important;
  border: 1px solid var(--color-primary) !important;
  color: var(--color-primary) !important;
  box-shadow: none;
}

.lc-btn--secondary:hover,
.lc-btn--secondary:focus-visible,
.lc-slots__btn--outline:hover,
.lc-slots__btn--outline:focus-visible {
  background: rgba(var(--td-accent-rgb), 0.08) !important;
  color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-1px);
  box-shadow: none;
}

.lc-btn--ghost:hover,
.lc-btn--ghost:focus-visible {
  color: var(--color-text);
  background: rgba(var(--td-accent-rgb), 0.08);
  border-color: rgba(var(--td-accent-rgb), 0.25);
  box-shadow: none;
  transform: translateY(-1px);
}

/* Hero */
.lc-hero,
.lc-hero.lc-hero--twindor {
  background-color: var(--color-bg);
  background-image: var(--lc-hero-image, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: clamp(380px, 42vw, 520px);
}

.lc-hero.lc-hero--twindor::after {
  display: none;
  content: none;
}

.lc-hero__inner {
  position: relative;
  z-index: 1;
}

.lc-hero__accent {
  color: var(--color-primary);
}

.lc-hero__title {
  color: var(--color-heading);
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(0, 0, 0, 0.45);
}

.lc-hero--twindor .lc-hero__title {
  font-size: clamp(2.5rem, 6.15vw, 3.6rem);
  line-height: 1.12;
}

.lc-hero__subtitle {
  color: var(--color-muted);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.lc-hero .lc-btn--hero {
  box-shadow: var(--td-shadow-medium), 0 0 0 1px rgba(var(--td-accent-rgb), 0.15);
}

/* ===== Entdecken — vertical pod rail (visual redesign, same palette) ===== */
.lc-explore {
  margin: 36px 0 28px;
  position: relative;
  isolation: isolate;
}

.lc-explore::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--td-accent-rgb), 0.08) 8%,
    rgba(var(--td-accent-rgb), 0.45) 50%,
    rgba(var(--td-accent-rgb), 0.08) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.lc-explore__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-text);
  margin: 0 0 18px;
  padding: 0;
  border-left: none;
  text-align: center;
  line-height: 1.25;
}

.lc-explore__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--color-primary);
  border-radius: 2px;
}

.lc-explore__bar {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  justify-content: center;
  overflow: visible;
}

.lc-explore__track {
  gap: 22px;
  padding: 10px 8px 12px;
  align-items: flex-start;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  overflow-x: auto;
  overflow-y: visible;
}

.lc-explore .lc-chip {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: auto;
  min-width: 92px;
  max-width: 112px;
  padding: 0 6px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  scroll-snap-align: center;
}

.lc-explore .lc-chip:nth-child(even),
.lc-explore .lc-chip:nth-child(odd) {
  padding-bottom: 0;
}

.lc-explore .lc-chip__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(var(--td-accent-rgb), 0.4);
  background: radial-gradient(circle at 30% 25%, #2a3036 0%, var(--color-surface) 55%, #1a1e21 100%);
  color: var(--color-primary);
  position: relative;
  z-index: 1;
  transition:
    transform var(--td-duration) var(--td-ease),
    border-color var(--td-duration) var(--td-ease),
    box-shadow var(--td-duration) var(--td-ease);
}

.lc-explore .lc-chip__icon {
  width: 28px;
  height: 28px;
}

.lc-explore .lc-chip--hot {
  min-width: 104px;
  max-width: 120px;
}

.lc-explore .lc-chip--hot .lc-chip__icon-wrap {
  width: 64px;
  height: 64px;
  border-color: #34b892;
  color: #34b892;
  background: radial-gradient(circle at 30% 25%, rgba(52, 184, 146, 0.22) 0%, var(--color-surface) 60%, #1a1e21 100%);
  box-shadow:
    0 0 0 4px rgba(52, 184, 146, 0.12),
    0 0 24px rgba(52, 184, 146, 0.28);
}

.lc-explore .lc-chip--hot .lc-chip__icon {
  width: 32px;
  height: 32px;
}

.lc-explore .lc-chip__text {
  text-align: center;
  align-items: center;
  gap: 2px;
}

.lc-explore .lc-chip__line1 {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-subtle) !important;
  white-space: normal;
  line-height: 1.2;
}

.lc-explore .lc-chip__line2 {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--color-primary) !important;
  white-space: normal;
  line-height: 1.2;
}

.lc-explore .lc-chip--icon-only {
  min-width: 72px;
  max-width: 72px;
  padding-bottom: 0;
}

.lc-explore .lc-chip--icon-only .lc-chip__icon-wrap {
  width: 52px;
  height: 52px;
}

.lc-explore .lc-chip:hover,
.lc-explore .lc-chip:focus-visible {
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

.lc-explore .lc-chip:hover .lc-chip__icon-wrap,
.lc-explore .lc-chip:focus-visible .lc-chip__icon-wrap {
  transform: scale(1.06);
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(var(--td-accent-rgb), 0.2);
}

.lc-explore .lc-chip--hot:hover .lc-chip__icon-wrap,
.lc-explore .lc-chip--hot:focus-visible .lc-chip__icon-wrap {
  border-color: #34b892;
  box-shadow:
    0 0 0 4px rgba(52, 184, 146, 0.15),
    0 0 28px rgba(52, 184, 146, 0.4);
}

.lc-explore .lc-chip--static:hover,
.lc-explore .lc-chip--static:focus-visible {
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
}

@media (max-width: 480px) {
  .lc-explore::before {
    top: 56px;
  }

  .lc-explore__track {
    gap: 16px;
    padding-inline: 4px;
  }

  .lc-explore .lc-chip {
    min-width: 80px;
    max-width: 96px;
  }

  .lc-explore .lc-chip__icon-wrap {
    width: 48px;
    height: 48px;
  }

  .lc-explore .lc-chip__icon {
    width: 24px;
    height: 24px;
  }

  .lc-explore .lc-chip--hot .lc-chip__icon-wrap {
    width: 56px;
    height: 56px;
  }
}

/* Cards */
.lc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--td-radius-md);
  box-shadow: var(--td-shadow-light);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lc-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
  box-shadow: var(--td-shadow-medium);
}

.lc-card__cat {
  color: var(--color-primary);
}

.lc-card__excerpt {
  color: var(--color-muted);
}

.lc-skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(var(--td-accent-rgb), 0.06) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
}

/* Typography / entry */
.lc-entry__meta {
  color: var(--color-subtle);
}

.lc-entry__content {
  color: var(--color-muted);
}

.lc-entry__content :where(h1, h2, h3, h4, h5, h6) {
  color: var(--color-heading);
  font-weight: 600;
}

.lc-entry__content a {
  color: var(--color-primary);
}

.lc-entry__content a:hover,
.lc-entry__content a:focus-visible {
  color: var(--color-link-hover);
}

.lc-entry__content th {
  background: rgba(var(--td-accent-rgb), 0.1);
  border-color: var(--color-border);
}

.lc-entry__content blockquote {
  border-left-color: var(--color-primary);
}

.lc-table-scroll {
  border-radius: var(--td-radius-sm);
  scrollbar-color: rgba(var(--td-accent-rgb), 0.35) var(--color-surface);
}

.lc-table-scroll:focus-visible {
  outline: 2px solid rgba(var(--td-accent-rgb), 0.55);
  outline-offset: 2px;
}

.lc-slots__btn {
  border-radius: var(--td-radius-md);
}

.lc-related__item,
.lc-slot-card,
.lc-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--td-radius-md);
}

.lc-related__item:hover,
.lc-slot-card:hover,
.lc-slot-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
  box-shadow: var(--td-shadow-light);
}

.lc-related__item a:hover {
  color: var(--color-link-hover);
}

.lc-faq__summary:hover {
  color: var(--color-primary);
}

.lc-pagination a:hover,
.lc-pagination a:focus-visible,
.lc-pagination .current {
  color: var(--color-primary);
  border-color: var(--color-border-hover);
  box-shadow: 0 0 0 1px rgba(var(--td-accent-rgb), 0.12);
  text-decoration: none;
}

/* Footer */
.lc-footer {
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, transparent, rgba(17, 20, 22, 0.95));
}

.lc-footer__brand {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lc-footer__menu a:hover,
.lc-footer__menu a:focus-visible,
.lc-footer__menu .current-menu-item > a,
.lc-footer__menu .current_page_item > a {
  color: var(--color-primary);
  background: rgba(var(--td-accent-rgb), 0.08);
}

.lc-footer__copy {
  color: var(--color-subtle);
  border-top: 1px solid var(--color-border);
}

/* Forms */
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  border-radius: var(--td-radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition:
    border-color var(--td-duration) var(--td-ease),
    box-shadow var(--td-duration) var(--td-ease);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-focus-ring);
}

/* Scrollbar */
* {
  scrollbar-color: rgba(var(--td-accent-rgb), 0.3) var(--color-surface);
}

*::-webkit-scrollbar-thumb {
  background: rgba(var(--td-accent-rgb), 0.3);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--td-accent-rgb), 0.45);
}

/* Brand logo sizing (header / footer) */
.lc-brand-twindor {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lc-brand-twindor--footer {
  max-height: 40px;
}

@media (max-width: 480px) {
  .lc-brand-twindor {
    max-height: 40px;
  }

  .lc-brand-twindor--footer {
    max-height: 34px;
  }
}

/* ===== Zahlungsmethoden ===== */
.lc-payments {
  margin: 2.5rem 0 2rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--td-radius-md);
  box-shadow: var(--td-shadow-light);
}

.lc-payments__title {
  margin: 0 0 0.5rem;
  font-family: var(--lc-font-sans);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
}

.lc-payments__lead {
  margin: 0 auto 1.5rem;
  max-width: 52ch;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-muted);
  text-align: center;
}

.lc-payments__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lc-payments__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 88px;
  padding: 14px 10px;
  text-align: center;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--td-radius-sm);
  transition:
    border-color var(--td-duration) var(--td-ease),
    background var(--td-duration) var(--td-ease),
    transform var(--td-duration) var(--td-ease),
    box-shadow var(--td-duration) var(--td-ease);
}

.lc-payments__item:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
  transform: translateY(-2px);
  box-shadow: var(--td-shadow-light);
}

.lc-payments__badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(var(--td-accent-rgb), 0.1);
  border: 1px solid rgba(var(--td-accent-rgb), 0.22);
  border-radius: 999px;
  line-height: 1.2;
}

.lc-payments__item--crypto .lc-payments__badge {
  color: #8ae400;
  background: rgba(138, 228, 0, 0.1);
  border-color: rgba(138, 228, 0, 0.25);
}

.lc-payments__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.lc-payments__ticker {
  font-weight: 600;
  color: var(--color-subtle);
  font-size: 0.8125rem;
}

.lc-payments__note {
  margin: 1.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-subtle);
  text-align: center;
}

@media (max-width: 992px) {
  .lc-payments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .lc-payments {
    padding: 1.25rem 1rem 1rem;
  }

  .lc-payments__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lc-payments__item {
    min-height: 72px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px 14px;
  }
}

/* VIP tier cards (homepage) */
.lc-entry__content .lc-vip-cards {
  margin: 1.5rem 0 1.75rem;
}

.lc-entry__content .lc-vip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lc-entry__content .lc-vip-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--td-radius-md);
  padding: 1.1rem 1.15rem 1.15rem;
  box-shadow: var(--td-shadow-light);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lc-entry__content .lc-vip-card:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
  box-shadow: var(--td-shadow-medium);
  transform: translateY(-2px);
}

.lc-entry__content .lc-vip-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.lc-entry__content .lc-vip-card__badge {
  font-size: 1.15rem;
  line-height: 1;
}

.lc-entry__content .lc-vip-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lc-entry__content .lc-vip-card__list li + li {
  margin-top: 0.45rem;
}

.lc-entry__content .lc-vip-card--elite {
  margin-top: 14px;
  border-color: rgba(var(--td-accent-rgb), 0.35);
  background: linear-gradient(
    145deg,
    rgba(var(--td-accent-rgb), 0.08) 0%,
    var(--color-surface) 55%
  );
}

.lc-entry__content .lc-vip-card--elite .lc-vip-card__title {
  color: var(--color-primary);
  border-bottom-color: rgba(var(--td-accent-rgb), 0.22);
}

@media (max-width: 1100px) {
  .lc-entry__content .lc-vip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .lc-entry__content .lc-vip-grid {
    grid-template-columns: 1fr;
  }
}

/* Inline content CTAs (homepage) */
.lc-entry__content .lc-content-cta {
  margin: 2rem 0 1.35rem;
}

.lc-entry__content .lc-content-cta .lc-btn--hero {
  min-width: min(100%, 320px);
  padding: 0.9rem 1.6rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.lc-entry__content .lc-content-cta + h2 {
  margin-top: 0.25rem;
}

/* Internal pages: never stack duplicate CTA buttons */
.lc-entry__content .lc-content-cta + .lc-content-cta {
  display: none;
}

/* Mini CTA banners (homepage) */
.lc-entry__content .lc-cta-mini {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.65rem 0;
  min-height: 11.5rem;
  padding: 2rem 1.35rem 2rem 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(var(--td-accent-rgb), 0.28);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--td-radius-md);
  background-color: #08080c;
  background-image: url("/images/twindor-cta-mini-bg.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  box-shadow: var(--td-shadow-light);
  color: #fff;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lc-entry__content .lc-cta-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 5, 10, 0.9) 0%,
    rgba(5, 5, 10, 0.72) 42%,
    rgba(5, 5, 10, 0.38) 68%,
    rgba(5, 5, 10, 0.12) 100%
  );
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lc-entry__content .lc-cta-mini:hover,
.lc-entry__content .lc-cta-mini:focus-visible {
  border-color: rgba(var(--td-accent-rgb), 0.5);
  box-shadow: var(--td-shadow-medium);
  transform: translateY(-1px);
  color: #fff;
}

.lc-entry__content .lc-cta-mini:hover::before,
.lc-entry__content .lc-cta-mini:focus-visible::before {
  opacity: 0.88;
}

.lc-entry__content .lc-cta-mini__text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.4;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.lc-entry__content .lc-cta-mini__pill {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-cta-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  box-shadow: var(--td-shadow-cta-hover);
}

@media (max-width: 560px) {
  .lc-entry__content .lc-cta-mini {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    min-height: 10rem;
    padding: 1.75rem 1.15rem;
  }

  .lc-entry__content .lc-cta-mini__pill {
    width: 100%;
    min-height: 2.85rem;
  }
}
