/* =============================================================================
   Premium UI override — cyber / luxury dark (loaded after goldzino-base.css)
   Disable: remove the <link> in layouts/partials/head.html
   ============================================================================= */

:root {
  /* Spec palette */
  --lc-premium-bg0: #0a0a0a;
  --lc-premium-bg1: #1b0a0c;
  --lc-premium-accent: #ff003c;
  --lc-premium-accent-hover: #ff174f;
  --lc-premium-glass: rgba(255, 255, 255, 0.03);
  --lc-premium-border: rgba(255, 0, 60, 0.15);
  --lc-premium-text2: rgba(255, 255, 255, 0.72);
  --lc-premium-muted: rgba(255, 255, 255, 0.45);
  --lc-premium-glow: rgba(255, 0, 60, 0.35);
  --lc-premium-success: #00d084;

  /* Remap legacy tokens used across goldzino-base.css */
  --lc-bg: var(--lc-premium-bg0);
  --lc-bg-alt: var(--lc-premium-bg1);
  --lc-bg-card: var(--lc-premium-glass);
  --lc-gold: var(--lc-premium-accent);
  --lc-gold-bright: var(--lc-premium-accent-hover);
  --lc-green: var(--lc-premium-success);
  --lc-text: #ffffff;
  --lc-text-muted: var(--lc-premium-text2);
  --lc-border: var(--lc-premium-border);
  --lc-glass: rgba(255, 255, 255, 0.06);
  --lc-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  --lc-font-serif: "Inter", system-ui, -apple-system, sans-serif;
  --lc-font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --lc-transition: 0.3s ease;
}

/* ---- Body: gradient + subtle animated grid (CSS only) ---- */
body {
  color: var(--lc-text);
  background-color: var(--lc-premium-bg0);
  background-image: linear-gradient(180deg, #0a0a0a 0%, #1b0a0c 100%);
  position: relative;
  isolation: isolate;
  font-weight: 450;
}

@media (prefers-reduced-motion: no-preference) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 0, 60, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 0, 60, 0.035) 1px, transparent 1px),
      radial-gradient(ellipse 120% 70% at 50% -15%, rgba(255, 0, 60, 0.07), transparent 52%);
    background-size: 52px 52px, 52px 52px, auto;
    opacity: 0.75;
    animation: lc-premium-grid-breathe 12s ease-in-out infinite alternate;
  }

  @keyframes lc-premium-grid-breathe {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 0.82;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255, 0, 60, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 0, 60, 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.55;
  }
}

/* ---- Typography: premium sans stack ---- */
h1,
.lc-h1 {
  font-family: var(--lc-font-sans);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2,
.lc-h2 {
  font-family: var(--lc-font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3,
h4,
.lc-heading-serif {
  font-family: var(--lc-font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lc-section-title {
  letter-spacing: 0.04em;
}

a:hover,
a:focus-visible {
  color: var(--lc-premium-accent-hover);
}

/* ---- Header ---- */
.lc-header {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lc-premium-border);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.lc-header__brand {
  letter-spacing: 0.04em;
}

.lc-header__nav a {
  color: var(--lc-premium-text2);
  border-radius: 999px;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s 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(--lc-premium-accent);
  background: rgba(255, 0, 60, 0.08);
  box-shadow: 0 0 18px rgba(255, 0, 60, 0.12);
}

@media (min-width: 992px) {
  .lc-header__more-toggle {
    color: var(--lc-premium-text2);
    border-radius: 999px;
  }

  .lc-header__more-toggle:hover,
  .lc-header__more-toggle:focus-visible,
  .lc-header__more.is-open .lc-header__more-toggle {
    color: var(--lc-premium-accent);
  }

  .lc-header__more-list a {
    color: var(--lc-premium-text2);
    border-radius: 999px;
  }

  .lc-header__more-list a:hover,
  .lc-header__more-list a:focus-visible {
    color: var(--lc-premium-accent);
    background: rgba(255, 0, 60, 0.08);
  }
}

.lc-header__burger {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.lc-header__burger:hover,
.lc-header__burger:focus-visible {
  border-color: rgba(255, 0, 60, 0.35);
  box-shadow: 0 0 16px rgba(255, 0, 60, 0.15);
}

@media (min-width: 992px) {
  .lc-header__burger {
    display: none !important;
  }
}

.lc-header__panel {
  background: linear-gradient(180deg, rgba(12, 6, 8, 0.98) 0%, rgba(8, 8, 10, 0.99) 100%);
  border-top: 1px solid var(--lc-premium-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(--lc-premium-accent);
  background: rgba(255, 0, 60, 0.1);
}

/* ---- Buttons (all pills) ---- */
.lc-btn {
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
    filter 0.3s ease;
}

.lc-btn:focus-visible {
  outline-color: var(--lc-premium-accent);
}

.lc-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff003c, #c4002f);
  border-color: rgba(255, 0, 60, 0.35);
  box-shadow: 0 4px 22px rgba(255, 0, 60, 0.22);
}

.lc-btn--primary:hover,
.lc-btn--primary:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 25px var(--lc-premium-glow);
}

.lc-btn--secondary {
  color: var(--lc-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lc-btn--secondary:hover,
.lc-btn--secondary:focus-visible {
  color: #fff;
  background: rgba(255, 0, 60, 0.12);
  border-color: rgba(255, 0, 60, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(255, 0, 60, 0.22);
}

.lc-btn--ghost {
  color: var(--lc-premium-text2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lc-btn--ghost:hover,
.lc-btn--ghost:focus-visible {
  color: #fff;
  background: rgba(255, 0, 60, 0.08);
  border-color: rgba(255, 0, 60, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 0, 60, 0.12);
}

.lc-btn--hero {
  border-radius: 999px;
  padding: 14px 34px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #ff003c, #c4002f);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 28px rgba(255, 0, 60, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lc-btn--hero:hover,
.lc-btn--hero:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 0 28px var(--lc-premium-glow), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* ---- Hero (баннер без цветового оверлея) ---- */
.lc-hero {
  background-color: #0a0a0a;
  background-image: var(--lc-hero-image);
  background-size: cover;
  background-position: center;
}

/* Goldzino homepage hero: background only, no gradient and no ::after */
.lc-hero.lc-hero--goldzino {
  background-color: #0a0a0a;
  background-image: var(--lc-hero-image);
  background-size: cover;
  background-position: center;
}

.lc-hero.lc-hero--goldzino::after {
  display: none;
  content: none;
}

.lc-hero::after {
  display: none;
  content: none;
}

.lc-hero__accent {
  color: var(--lc-premium-accent);
  letter-spacing: 0.38em;
}

.lc-hero__title {
  font-family: var(--lc-font-sans);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 0 48px rgba(255, 0, 60, 0.22), 0 6px 36px rgba(0, 0, 0, 0.65);
}

.lc-hero__subtitle {
  color: var(--lc-premium-text2);
}

/* ---- Explore / chips ---- */
.lc-explore__title {
  color: var(--lc-premium-muted);
}

.lc-explore__bar {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--lc-premium-border);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.lc-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.lc-chip:hover,
.lc-chip:focus-visible {
  border-color: rgba(255, 0, 60, 0.35);
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.12);
  transform: translateY(-2px);
}

.lc-chip--static:hover,
.lc-chip--static:focus-visible {
  transform: none;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.lc-chip--hot .lc-chip__icon-wrap {
  box-shadow: 0 0 18px rgba(255, 0, 60, 0.2);
}

/* ---- Cards ---- */
.lc-card {
  background: var(--lc-premium-glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.lc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 60, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 0, 60, 0.12);
}

.lc-card__thumb {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.35));
}

.lc-card__cat {
  color: var(--lc-premium-accent);
}

.lc-card__title {
  font-family: var(--lc-font-sans);
  font-weight: 700;
}

.lc-card__excerpt {
  color: var(--lc-premium-text2);
}

.lc-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 0, 60, 0.06) 50%, rgba(255, 255, 255, 0.04) 100%);
  background-size: 200% 100%;
}

/* ---- Entry / prose ---- */
.lc-entry__meta {
  color: var(--lc-premium-muted);
}

.lc-entry__content {
  color: var(--lc-premium-text2);
}

.lc-entry__content :where(h1, h2, h3, h4, h5, h6) {
  font-family: var(--lc-font-sans);
  color: #fff;
}

.lc-entry__content a {
  color: var(--lc-premium-accent);
}

.lc-entry__content a:hover,
.lc-entry__content a:focus-visible {
  color: var(--lc-premium-accent-hover);
}

.lc-entry__content th {
  background: rgba(255, 0, 60, 0.1);
  border-color: var(--lc-premium-border);
}

.lc-entry__content td {
  border-color: rgba(255, 255, 255, 0.08);
}

.lc-entry__content blockquote {
  border-left-color: var(--lc-premium-accent);
  background: rgba(255, 255, 255, 0.03);
}

/* Markdown tables: горизонтальный свайп-скролл, без расширения страницы */
.lc-entry {
  min-width: 0;
}

.lc-table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.5em 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: var(--lc-radius-sm, 10px);
  scrollbar-color: rgba(255, 0, 60, 0.45) rgba(255, 255, 255, 0.06);
}

.lc-table-scroll:focus-visible {
  outline: 2px solid rgba(255, 0, 60, 0.55);
  outline-offset: 2px;
}

.lc-table-scroll > table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  margin: 0;
}

/* Tabele z eksportu WP (HTML w treści): figure lub akapit zawierający <table> */
.lc-entry__content figure:has(> table),
.lc-entry__content figure.lc-block-table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.5em 0;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.lc-entry__content figure:has(> table) table,
.lc-entry__content figure.lc-block-table table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  margin: 0;
}

.lc-entry__content p:has(table) {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.lc-entry__content p:has(table) table {
  width: max-content;
  min-width: 100%;
  max-width: none;
}

/* Tabela jako bezpośrednie dziecko .lc-entry__content (np. login) */
.lc-entry__content > table {
  display: block;
  width: max-content;
  min-width: 100%;
  max-width: 100%;
  margin: 1.5em 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .lc-wrap {
    overflow-x: clip;
  }
}

/* ---- Slots block (без общего фона/рамки — сетка на фоне страницы) ---- */
.lc-slots {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.lc-slots__title {
  font-family: var(--lc-font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lc-slots__btn {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff003c, #c4002f);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(255, 0, 60, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lc-slots__btn:hover,
.lc-slots__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 0, 60, 0.32);
}

.lc-slots__btn--outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--lc-text);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.lc-slots__btn--outline:hover,
.lc-slots__btn--outline:focus-visible {
  border-color: rgba(255, 0, 60, 0.4);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.15);
}

.lc-slot-card {
  border-radius: var(--lc-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lc-slot-card:hover,
.lc-slot-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 60, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 0, 60, 0.12);
}

/* ---- Related ---- */
.lc-related__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lc-radius-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lc-related__item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 0, 60, 0.3);
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.1);
}

.lc-related__item a:hover {
  color: var(--lc-premium-accent-hover);
}

/* ---- FAQ ---- */
.lc-faq__title {
  font-family: var(--lc-font-sans);
  font-weight: 800;
}

.lc-faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lc-radius-sm);
}

.lc-faq__summary:hover {
  color: var(--lc-premium-accent);
}

/* ---- Page header / pagination ---- */
.lc-page-header {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.lc-page-header__desc {
  color: var(--lc-premium-text2);
}

.lc-pagination a,
.lc-pagination span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lc-pagination a:hover,
.lc-pagination .current {
  color: var(--lc-premium-accent);
  border-color: rgba(255, 0, 60, 0.4);
  box-shadow: 0 0 18px rgba(255, 0, 60, 0.15);
}

/* ---- Footer ---- */
.lc-footer {
  border-top: 1px solid var(--lc-premium-border);
  background: linear-gradient(180deg, transparent, rgba(12, 6, 8, 0.85));
  padding-top: 56px;
}

.lc-footer__brand {
  background: linear-gradient(135deg, #fff 0%, var(--lc-premium-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lc-footer__menu a {
  border-radius: 999px;
}

.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(--lc-premium-accent);
  background: rgba(255, 0, 60, 0.08);
}

.lc-footer__copy {
  color: var(--lc-premium-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

/* ---- Mobile CTA ---- */
.lc-mobile-cta {
  border-radius: 999px;
  background: linear-gradient(135deg, #ff003c, #c4002f);
  box-shadow: 0 -4px 28px rgba(255, 0, 60, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lc-mobile-cta:hover,
.lc-mobile-cta:focus-visible {
  filter: brightness(1.06);
  box-shadow: 0 -6px 32px rgba(255, 0, 60, 0.35);
}

/* ---- Layout rhythm ---- */
.lc-wrap {
  padding-left: 22px;
  padding-right: 22px;
}

.lc-layout {
  padding-top: 40px;
  padding-bottom: 72px;
}

/* ---- Forms (content + generic) ---- */
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: rgba(255, 0, 60, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 0, 60, 0.12);
}

/* ---- Scrollbar ---- */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 0, 60, 0.35) rgba(255, 255, 255, 0.04);
}

*::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

*::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 0, 60, 0.35);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 23, 79, 0.5);
}

/* ---- Gutenberg → lc-block (from build sanitizer) ---- */
.lc-block-heading {
  font-family: var(--lc-font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lc-block-table table {
  border-collapse: collapse;
}

.lc-block-table th,
.lc-block-table td {
  border-color: rgba(255, 255, 255, 0.08);
}

/* ---- Hero: Goldzino banner (typography without heavy dimming) ---- */
.lc-hero--goldzino {
  background-position: center center;
}

.lc-hero--goldzino .lc-hero__inner {
  max-width: 640px;
}

.lc-hero--goldzino .lc-hero__title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 0, 0, 0.5);
}

.lc-hero--goldzino .lc-hero__subtitle {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

/* ---- Goldzino logo sizing (header / footer) ---- */
.lc-brand-goldzino {
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lc-brand-goldzino--footer {
  max-height: 40px;
}

@media (max-width: 480px) {
  .lc-brand-goldzino {
    max-height: 40px;
  }

  .lc-brand-goldzino--footer {
    max-height: 34px;
  }
}

/* ---- Strip slotów nad „Odkrywaj”: desktop 14 (do 7 w rzędzie); mobile ≤767px: 8 (2×4) ---- */
.lc-slots--above-explore {
  margin-top: 24px;
  margin-bottom: 8px;
}

.lc-slots__grid--r7 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 10px;
}

@media (min-width: 520px) {
  .lc-slots__grid--r7 {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 12px;
  }
}

@media (min-width: 720px) {
  .lc-slots__grid--r7 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px) {
  .lc-slots__grid--r7 {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px 12px;
  }
}

@media (min-width: 1180px) {
  .lc-slots__grid--r7 {
    grid-template-columns: repeat(7, 1fr);
    gap: 14px 10px;
  }
}

/* Mobile: 8 slotów (2 rzędy × 4 kolumny) */
@media (max-width: 767px) {
  .lc-slots--above-explore .lc-slots__grid--r7 {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 8px;
  }

  .lc-slots--above-explore .lc-slot-card:nth-child(n + 9) {
    display: none;
  }
}

/* Language switch (multilingual) */
.lc-lang-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-right: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lc-lang-switch__item {
  color: var(--lc-text-muted, rgba(255, 255, 255, 0.75));
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
}

.lc-lang-switch__item:hover {
  color: var(--lc-text, #fff);
  border-color: rgba(255, 255, 255, 0.2);
}

.lc-lang-switch__item--current {
  color: var(--lc-text, #fff);
  border-color: rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 4px 8px;
}

.lc-lang-switch--drawer {
  width: 100%;
  margin-right: 0;
  margin-bottom: 12px;
  justify-content: flex-start;
}
