@font-face {
  font-family: 'BBCReithSerif';
  src: url('../fonts/serif/BBCReithSerif_W_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSerif';
  src: url('../fonts/serif/BBCReithSerif_W_It.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSerif';
  src: url('../fonts/serif/BBCReithSerif_W_Lt.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSerif';
  src: url('../fonts/serif/BBCReithSerif_W_Md.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSerif';
  src: url('../fonts/serif/BBCReithSerif_W_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSerif';
  src: url('../fonts/serif/BBCReithSerif_W_BdIt.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'BBCReithSans';
  src: url('../fonts/sans/BBCReithSans_W_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSans';
  src: url('../fonts/sans/BBCReithSans_W_It.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSans';
  src: url('../fonts/sans/BBCReithSans_W_Lt.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSans';
  src: url('../fonts/sans/BBCReithSans_W_Md.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSans';
  src: url('../fonts/sans/BBCReithSans_W_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BBCReithSans';
  src: url('../fonts/sans/BBCReithSans_W_BdIt.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Material Symbols Outlined';
  src: url('../fonts/icons/MaterialSymbolsOutlined-subset.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

:root {
  --white:   #ffffff;
  --black:   #000000;
  --text:    #000000;
  --muted:   #545658;
  --border:  #e6e8ea;
  --bg:      #f6f6f6;
  --red:     #e32b2b;
  --max:     1264px;
  --art:     620px;
  --wide:    1000px;
  --serif:   'BBCReithSerif', Georgia, 'Times New Roman', serif;
  --sans:    'BBCReithSans', Arial, sans-serif;
  --icons:   'Material Symbols Outlined';
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 500; }
ul, ol { margin: 0; padding: 0; }
p      { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.material-symbols-outlined {
  font-family: var(--icons);
  font-weight: normal;
  font-style: normal;
  font-size: 22px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

.lfe-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lfe-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 65px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

body.lfe-theme { padding-top: 110px; }
body.lfe-theme.single-post { padding-top: 170px; }
@media (max-width: 768px) {
  body.lfe-theme.single-post { padding-top: 162px; }
}

.lfe-header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lfe-header-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  z-index: 2;
}

.lfe-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  z-index: 1;
}
.lfe-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  user-select: none;
  flex-shrink: 0;
}

.lfe-logo-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  z-index: 1;
  text-decoration: none;
}
.lfe-logo-img .custom-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.lfe-logo-img .custom-logo-link img,
.lfe-logo-img img.custom-logo {
  height: 44px;
  max-height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.lfe-header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  z-index: 2;
}

.lfe-icon-btn {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  min-width: 40px;
  min-height: 40px;
  color: var(--black);
  text-decoration: none;
  transition: background .1s;
}
a.lfe-icon-btn,
a.lfe-icon-btn:hover,
a.lfe-icon-btn:visited { text-decoration: none; }
.lfe-icon-btn:hover { background: var(--bg); }
.lfe-icon-btn .material-symbols-outlined { font-size: 22px; }

.lfe-mobile-only { display: none; }
.lfe-desktop-only { display: flex; }
@media (max-width: 768px) {
  .lfe-mobile-only { display: block; }
  .lfe-desktop-only { display: none !important; }
}

.lfe-dark-label-dark { display: none; }
html.dark-mode .lfe-dark-label-light { display: none; }
html.dark-mode .lfe-dark-label-dark  { display: inline; }

.lfe-candy-menu-wrap {
  position: relative;
}
.lfe-candy-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1100;
  flex-direction: column;
  overflow: hidden;
}
.lfe-candy-menu-wrap.open .lfe-candy-menu {
  display: flex;
}

.lfe-mobile-menu-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 10px 14px;
  flex-shrink: 0;
}
.lfe-mobile-menu-search {
  flex: 1;
  display: flex;
  border: 2px solid var(--text);
  background: var(--white);
}
.lfe-mobile-menu-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  min-width: 0;
}
.lfe-mobile-menu-search input::placeholder {
  color: var(--muted);
}
.lfe-mobile-menu-search button {
  background: var(--text);
  color: var(--white);
  border: 0;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lfe-mobile-menu-search button .material-symbols-outlined {
  font-size: 20px;
}
.lfe-mobile-menu-close {
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lfe-mobile-menu-close .material-symbols-outlined {
  font-size: 24px;
}

.lfe-mobile-menu-actions {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.lfe-mobile-menu-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 8px;
  cursor: pointer;
}
.lfe-mobile-menu-action + .lfe-mobile-menu-action {
  border-left: 1px solid var(--border);
}
.lfe-mobile-menu-action:active {
  background: var(--bg);
}
.lfe-mobile-menu-action .material-symbols-outlined {
  font-size: 20px;
}

.lfe-mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lfe-mobile-menu-list,
.lfe-mobile-menu-list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lfe-mobile-menu-list > li {
  border-bottom: 1px solid var(--border);
  position: relative;
}
.lfe-mobile-menu-list > li > a {
  display: block;
  padding: 12px 48px 12px 16px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.2;
}
.lfe-mobile-submenu-toggle {
  position: absolute;
  right: 2px;
  top: 2px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lfe-mobile-submenu-toggle svg {
  transition: transform .2s ease;
}
.lfe-mobile-menu-list > li.lfe-mobile-open .lfe-mobile-submenu-toggle svg {
  transform: rotate(180deg);
}
.lfe-mobile-menu-list .sub-menu {
  display: none;
  background: var(--bg);
  padding: 4px 0 8px;
}
.lfe-mobile-menu-list > li.lfe-mobile-open .sub-menu {
  display: block;
}
.lfe-mobile-menu-list .sub-menu > li > a {
  display: block;
  padding: 9px 28px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}
.lfe-mobile-menu-list .sub-menu > li > a:active {
  background: var(--border);
}

html.dark-mode .lfe-candy-menu {
  background: #121212;
}
html.dark-mode .lfe-mobile-menu-actions {
  border-color: #2a2a2a;
}
html.dark-mode .lfe-mobile-menu-action + .lfe-mobile-menu-action {
  border-left-color: #2a2a2a;
}
html.dark-mode .lfe-mobile-menu-search {
  border-color: #e0e0e0;
  background: #1a1a1a;
}
html.dark-mode .lfe-mobile-menu-search input { color: #e0e0e0; }
html.dark-mode .lfe-mobile-menu-search input::placeholder { color: #888; }
html.dark-mode .lfe-mobile-menu-search button { background: #e0e0e0; color: #121212; }
html.dark-mode .lfe-mobile-menu-close,
html.dark-mode .lfe-mobile-menu-action,
html.dark-mode .lfe-mobile-submenu-toggle { color: #e0e0e0; }
html.dark-mode .lfe-mobile-menu-list > li { border-color: #2a2a2a; }
html.dark-mode .lfe-mobile-menu-list > li > a { color: #f0f0f0; }
html.dark-mode .lfe-mobile-menu-list .sub-menu { background: #1a1a1a; }
html.dark-mode .lfe-mobile-menu-list .sub-menu > li > a { color: #d0d0d0; }
html.dark-mode .lfe-mobile-menu-action:active { background: #1a1a1a; }

html.lfe-no-scroll, html.lfe-no-scroll body {
  overflow: hidden;
}

.lfe-header-art-title {
  position: absolute;
  left: 16px;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1;
}
.lfe-header-art-title-text {
  display: block;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lfe-candy-menu-btn .lfe-candy-icon {
  display: block;
}
.lfe-candy-menu-btn {
  min-width: 36px;
  min-height: 36px;
  padding: 6px;
}

.lfe-header-art-actions {
  position: absolute;
  left: 16px;
  top: 50%;
  display: none;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 1;
}
.lfe-header-art-actions .lfe-act-btn {
  font-size: 14px;
}
.lfe-icon-svg {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .lfe-header.lfe-show-art-title .lfe-logo,
  .lfe-header.lfe-show-art-title .lfe-logo-img {
    opacity: 0;
    pointer-events: none;
  }
  .lfe-header.lfe-show-art-title .lfe-header-art-title {
    opacity: 1;
  }
  .lfe-logo,
  .lfe-logo-img {
    transition: opacity .25s ease;
  }
}

@media (min-width: 769px) {
  .lfe-header-art-actions {
    display: flex;
  }
  .lfe-header.lfe-show-art-title .lfe-header-art-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
  }
}

#lfe-search-panel {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 1001;
}
#lfe-search-panel.open { display: block; }

.lfe-search-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.lfe-search-form { display: flex; flex: 1; }
.lfe-search-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 4px;
  line-height: 1;
}
.lfe-search-close .material-symbols-outlined { font-size: 22px; }
.lfe-search-form input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--text);
  border-right: none;
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  background: var(--white);
  color: var(--text);
  -webkit-appearance: none;
}
.lfe-search-form button {
  background: var(--text);
  color: var(--white);
  border: 2px solid var(--text);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lfe-search-form button .material-symbols-outlined { font-size: 20px; }

.lfe-cat-nav {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  z-index: 999;
  height: 45px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: transform .25s ease;
}
.lfe-cat-nav.hidden { transform: translateY(-100%); }

.lfe-more-pills {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  z-index: 997;
  height: 60px;
  background: var(--white);
  transition: top .25s ease;
}
.lfe-more-pills.lfe-pills-up { top: 65px; }

.lfe-more-pills-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  margin: 0;
  padding: 0 16px;
}
.lfe-more-pills-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}

@property --lfe-gprefer-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.lfe-more-pills-gprefer {
  --lfe-gprefer-angle: 0deg;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    conic-gradient(from var(--lfe-gprefer-angle),
      #EA4335, #4285F4, #34A853, #FBBC05, #EA4335
    ) border-box;
  animation: lfe-gprefer-rotate 4s linear infinite;
  transition: transform .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.lfe-more-pills-gprefer:hover {
  transform: scale(1.03);
}
.lfe-more-pills-gprefer .lfe-gprefer-gicon {
  width: 15px;
  height: 15px;
}
.lfe-gprefer-gicon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
@keyframes lfe-gprefer-rotate {
  to { --lfe-gprefer-angle: 360deg; }
}
@keyframes lfe-gprefer-glow {
  0%   { box-shadow:  14px  0px  14px 2px rgba(234,  67,  53, 0.65); }
  12%  { box-shadow:  10px  9px  14px 2px rgba(150, 100, 149, 0.65); }
  25%  { box-shadow:   0px  11px 14px 2px rgba( 66, 133, 244, 0.65); }
  37%  { box-shadow: -10px  9px  14px 2px rgba( 59, 151, 164, 0.65); }
  50%  { box-shadow: -14px  0px  14px 2px rgba( 52, 168,  83, 0.65); }
  62%  { box-shadow: -10px -9px  14px 2px rgba(152, 178,  44, 0.65); }
  75%  { box-shadow:   0px -11px 14px 2px rgba(251, 188,   5, 0.65); }
  87%  { box-shadow:  10px -9px  14px 2px rgba(243, 128,  29, 0.65); }
  100% { box-shadow:  14px  0px  14px 2px rgba(234,  67,  53, 0.65); }
}
@media (prefers-reduced-motion: reduce) {
  .lfe-more-pills-gprefer { animation: none; }
}
.lfe-more-pills-track {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 14px 0;
  box-sizing: border-box;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 24px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 24px), transparent 100%);
  touch-action: pan-y;
}
.lfe-more-pills-marquee {
  display: flex;
  gap: 12px;
  width: max-content;
  flex-shrink: 0;
  animation: lfe-pills-marquee 40s linear infinite;
  will-change: transform;
}
.lfe-more-pills-track:hover .lfe-more-pills-marquee,
.lfe-more-pills-track.lfe-pills-paused .lfe-more-pills-marquee {
  animation-play-state: paused;
}
@keyframes lfe-pills-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .lfe-more-pills-marquee { animation: none; }
}

.lfe-more-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid color-mix(in srgb, var(--pill-color, var(--border)) 80%, var(--border));
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  background: var(--white);
  transition: border-color .15s, background .15s, box-shadow .25s, transform .15s;
  box-shadow:
    0 0 10px color-mix(in srgb, var(--pill-color, transparent) 60%, transparent),
    0 0 20px color-mix(in srgb, var(--pill-color, transparent) 40%, transparent);
}
.lfe-more-pill:hover {
  border-color: var(--pill-color, var(--text));
  background: color-mix(in srgb, var(--pill-color, var(--bg)) 15%, var(--white));
  transform: translateY(-1px);
  box-shadow:
    0 0 14px color-mix(in srgb, var(--pill-color, transparent) 75%, transparent),
    0 0 28px color-mix(in srgb, var(--pill-color, transparent) 55%, transparent);
}

@media (max-width: 768px) {
  .lfe-more-pills { height: 52px; }
  .lfe-more-pills-inner { gap: 8px; padding: 0 12px; }
  .lfe-more-pills-label { font-size: 10px; }
  .lfe-more-pill { padding: 5px 14px; font-size: 12px; }
  .lfe-more-pills-gprefer { display: none; }
}

html.dark-mode .lfe-more-pills {
  background: #121212;
  border-color: #2a2a2a;
}
html.dark-mode .lfe-more-pills-label { color: #e0e0e0; }
html.dark-mode .lfe-more-pill {
  background: #121212;
  border-color: color-mix(in srgb, var(--pill-color, #2a2a2a) 70%, #2a2a2a);
  color: #e0e0e0;
  box-shadow:
    0 0 12px color-mix(in srgb, var(--pill-color, transparent) 65%, transparent),
    0 0 24px color-mix(in srgb, var(--pill-color, transparent) 45%, transparent);
}
html.dark-mode .lfe-more-pill:hover {
  background: #1a1a1a;
  border-color: var(--pill-color, #555);
  box-shadow:
    0 0 16px color-mix(in srgb, var(--pill-color, transparent) 80%, transparent),
    0 0 32px color-mix(in srgb, var(--pill-color, transparent) 55%, transparent);
}
html.dark-mode .lfe-more-pills-gprefer {
  color: #e0e0e0;
  background:
    linear-gradient(#121212, #121212) padding-box,
    conic-gradient(from var(--lfe-gprefer-angle),
      #EA4335, #4285F4, #34A853, #FBBC05, #EA4335
    ) border-box;
}

.lfe-cat-nav-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lfe-cat-nav-inner::-webkit-scrollbar { display: none; }

.lfe-cat-menu {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0 16px;
  margin: 0;
  height: 100%;
  width: max-content;
  min-width: 100%;
}
.lfe-cat-menu > li {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  align-items: stretch;
}
.lfe-cat-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--sans);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: border-color .1s;
}
.lfe-cat-menu > li > a:hover,
.lfe-cat-menu > li.current-menu-item > a,
.lfe-cat-menu > li.current-menu-ancestor > a { border-bottom-color: var(--black); }

.lfe-cat-menu > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .2s;
}
.lfe-cat-menu > li.menu-item-has-children:hover > a::after,
.lfe-cat-menu > li.lfe-cat-open > a::after {
  transform: rotate(180deg);
}

.lfe-cat-menu .sub-menu {
  display: none;
  position: fixed;
  background: var(--white);
  border: 1px solid var(--border);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  z-index: 1000;
}
.lfe-cat-menu > li:hover > .sub-menu,
.lfe-cat-menu > li.lfe-cat-open > .sub-menu {
  display: block;
}

.lfe-mcatnav { display: none; }

@media (max-width: 768px) {
  .lfe-cat-nav { display: none; }
  .lfe-mcatnav {
    display: block;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    transition: transform .25s ease;
  }
  .lfe-mcatnav.hidden { transform: translateY(-100%); }
  .lfe-mcatnav-row {
    height: 45px;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .lfe-mcatnav-row::-webkit-scrollbar { display: none; }
  .lfe-mcatnav-items {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    height: 100%;
  }
  .lfe-mcatnav-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .lfe-mcatnav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0 10px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    touch-action: manipulation;
  }
  .lfe-mcatnav-item.current-menu-item > a,
  .lfe-mcatnav-item.current-menu-ancestor > a { border-bottom-color: var(--black); }
  .lfe-mcatnav-chev {
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    transition: transform .2s;
  }
  .lfe-mcatnav-item.lfe-mcatnav-open .lfe-mcatnav-chev { transform: rotate(180deg); }
  .lfe-mcatnav-panel {
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 12px rgba(0,0,0,.06);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lfe-mcatnav-panel-open { display: block; }
  .lfe-mcatnav-sub {
    list-style: none;
    margin: 0;
    padding: 6px 0;
  }
  .lfe-mcatnav-sub li a {
    display: block;
    padding: 12px 20px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
  }
  .lfe-mcatnav-sub li a:active { background: var(--bg); }
}

html.dark-mode .lfe-mcatnav,
html.dark-mode .lfe-mcatnav-panel {
  background: #121212;
}
html.dark-mode .lfe-mcatnav-row,
html.dark-mode .lfe-mcatnav-panel {
  border-color: #2a2a2a;
}
html.dark-mode .lfe-mcatnav-item > a { color: #e0e0e0; }
html.dark-mode .lfe-mcatnav-sub li a { color: #e0e0e0; }
html.dark-mode .lfe-mcatnav-sub li a:active { background: #2a2a2a; }
.lfe-cat-menu .sub-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.lfe-cat-menu .sub-menu li a:hover {
  background: var(--bg);
}
.lfe-cat-menu .sub-menu li.current-menu-item a {
  font-weight: 700;
}

.lfe-hero { padding: 0; }

.lfe-hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 285px 1fr 255px;
  gap: 0;
}

.lfe-hero-col-a {
  padding: 16px 20px 16px 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.lfe-hero-sec { display: flex; flex-direction: column; gap: 8px; padding-bottom: 20px; }
.lfe-hero-sec--border { padding-top: 20px; border-top: 1px solid var(--border); }

.lfe-hero-sec-img-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.lfe-hero-sec-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}
.lfe-hero-sec-title a { color: var(--text); text-decoration: none; }
.lfe-hero-sec-title a:hover { text-decoration: underline; }

.lfe-hero-col-b {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.lfe-hero-main-img-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 12px;
}
.lfe-hero-main-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.4px;
  margin-bottom: 8px;
}
.lfe-hero-main-title a { color: var(--text); text-decoration: none; }
.lfe-hero-main-title a:hover { text-decoration: underline; }
.lfe-hero-excerpt { font-size: 15px; line-height: 1.5; margin-bottom: 8px; }

.lfe-hero-col-c {
  padding: 16px 0 16px 20px;
  display: flex;
  flex-direction: column;
}
.lfe-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.lfe-hero-text:last-child  { border-bottom: none; }
.lfe-hero-text:first-child { padding-top: 0; }
.lfe-hero-text-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.lfe-hero-text-title a { color: var(--text); text-decoration: none; }
.lfe-hero-text-title a:hover { text-decoration: underline; }

.lfe-editorial {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 40px 16px 60px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

.lfe-ed-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
}
.lfe-ed-block:first-child { padding-top: 0; }
.lfe-ed-block + .lfe-ed-block { border-top: 1px solid var(--border); }

.lfe-ed-block--img-left  .lfe-ed-img  { order: 1; }
.lfe-ed-block--img-left  .lfe-ed-text { order: 2; }
.lfe-ed-block--img-right .lfe-ed-img  { order: 2; }
.lfe-ed-block--img-right .lfe-ed-text { order: 1; }

.lfe-ed-img a { display: block; }
.lfe-ed-img img { width: 100%; height: auto; }

.lfe-ed-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lfe-ed-cat a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.lfe-ed-cat a:hover { text-decoration: underline; }
.lfe-ed-cat-line {
  flex: 1;
  height: 2px;
  background: var(--black);
}

.lfe-ed-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}
.lfe-ed-title a { color: var(--text); text-decoration: none; }
.lfe-ed-title a:hover { text-decoration: underline; }

.lfe-ed-excerpt {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
}

.lfe-ed-author {
  font-family: var(--sans);
  font-size: 12px;
}
.lfe-ed-author-label {
  font-style: italic;
  color: var(--muted);
}
.lfe-ed-author-name {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
}

.lfe-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; font-size: 12px; color: var(--muted); }
.lfe-meta a { color: var(--muted); text-decoration: none; }
.lfe-meta a:hover { text-decoration: underline; }
.lfe-sep { color: var(--muted); }

.lfe-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.lfe-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
}
.lfe-card-img a { display: block; width: 100%; height: 100%; }
.lfe-img { transition: transform .25s ease; }
.lfe-card-img:hover .lfe-img { transform: scale(1.02); }

.lfe-card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}
.lfe-card-title a { color: var(--text); text-decoration: none; }
.lfe-card-title a:hover { text-decoration: underline; }

.lfe-archive {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 60px;
}
.lfe-arc-head {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.lfe-arc-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.lfe-arc-desc { font-size: 15px; color: var(--muted); margin: 0; }

.lfe-arc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lfe-pagination { margin-top: 48px; }
.lfe-pagination .page-numbers {
  display: inline-flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.lfe-pagination .page-numbers li a,
.lfe-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
}
.lfe-pagination .page-numbers li span.current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.lfe-empty { padding: 60px 0; text-align: center; }
.lfe-empty h2 { font-family: var(--serif); font-size: 28px; margin-bottom: 12px; }

.lfe-search-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 60px;
}
.lfe-search-hero {
  text-align: center;
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.lfe-search-heading {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 20px;
}
.lfe-search-heading em { font-style: italic; }
.lfe-search-hero-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
}
.lfe-search-hero-form input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 15px;
  font-family: var(--sans);
  border: 2px solid var(--text);
  border-right: none;
  background: var(--white);
  color: var(--text);
  outline: none;
}
.lfe-search-hero-form input[type="search"]:focus {
  border-color: var(--text);
}
.lfe-search-hero-form button {
  padding: 0 14px;
  background: var(--text);
  color: var(--white);
  border: 2px solid var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.lfe-search-hero-form button .material-symbols-outlined { font-size: 20px; }
.lfe-search-count {
  font-size: 14px;
  color: var(--muted);
  margin: 14px 0 0;
}
.lfe-search-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lfe-search-empty {
  text-align: center;
  padding: 80px 0;
}
.lfe-search-empty-icon {
  font-size: 48px;
  color: var(--border);
  margin-bottom: 20px;
}
.lfe-search-empty h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lfe-search-empty p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .lfe-search-grid { grid-template-columns: repeat(2, 1fr); }
  .lfe-search-heading { font-size: 24px; }
}
@media (max-width: 480px) {
  .lfe-search-grid { grid-template-columns: 1fr; }
  .lfe-search-hero { padding: 28px 0 24px; }
  .lfe-search-heading { font-size: 22px; }
}

.lfe-single { background: var(--white); }

.lfe-art-head {
  max-width: var(--art);
  margin: 40px auto 0;
  padding: 0 16px 24px;
}

.lfe-art-time {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.lfe-art-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.4px;
  color: var(--text);
  margin-bottom: 20px;
}

.lfe-art-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.lfe-art-author {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}
.lfe-art-by { color: var(--muted); }
.lfe-art-author a { color: var(--text); text-decoration: none; font-weight: 600; }
.lfe-art-author a:hover { text-decoration: underline; }

.lfe-art-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lfe-act-btn {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.lfe-act-btn:hover { opacity: .65; }
.lfe-act-icon { font-size: 18px; }

.lfe-art-gprefer { display: none; }

@media (max-width: 768px) {
  .lfe-art-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .lfe-art-actions {
    width: 100%;
    gap: 8px;
  }
  .lfe-art-actions .lfe-act-btn {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  .lfe-art-gprefer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0;
    background: var(--white);
    -webkit-tap-highlight-color: transparent;
    animation: lfe-gprefer-glow 5s linear infinite;
    box-shadow: 14px 0px 14px 2px rgba(234, 67, 53, 0.65);
  }
  .lfe-art-gprefer span {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  html.dark-mode .lfe-act-btn {
    background: #1e1e1e;
    color: #e0e0e0;
  }
  html.dark-mode .lfe-art-gprefer {
    background: #1e1e1e;
    color: #e0e0e0;
  }
}

.lfe-save-btn.saved .lfe-save-icon-off { display: none !important; }
.lfe-save-btn.saved .lfe-save-icon-on  { display: inline-block !important; }

.lfe-art-img-wrap {
  max-width: var(--wide);
  margin: 28px auto;
  padding: 0;
}
.lfe-art-img {
  display: block;
  width: 100%;
  height: auto;
}
p.lfe-art-img-caption {
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin: 10px 0 0;
  padding: 0 16px;
}

.lfe-art-body {
  max-width: var(--art);
  margin: 0 auto;
  padding: 0 16px 40px;
}
.lfe-art-body p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 22px;
}
.lfe-art-body h2 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 40px 0 16px; }
.lfe-art-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 32px 0 12px; }
.lfe-art-body a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.lfe-art-body ul,
.lfe-art-body ol  { padding-left: 24px; margin-bottom: 22px; }
.lfe-art-body li  { font-family: var(--serif); font-size: 18px; line-height: 1.6; margin-bottom: 6px; }
.lfe-art-body blockquote { border-left: 3px solid var(--black); margin: 28px 0; padding: 4px 0 4px 20px; font-style: italic; }
.lfe-art-body img { max-width: 100%; height: auto; margin: 24px 0; }

.lfe-art-tags {
  max-width: var(--art);
  margin: 0 auto 32px;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lfe-tag { font-size: 13px; font-weight: 600; padding: 5px 12px; border: 1px solid var(--border); color: var(--text); text-decoration: none; display: inline-block; }
.lfe-tag:hover { background: var(--bg); }

.lfe-page-nav {
  max-width: var(--art);
  margin: 0 auto 36px;
  padding: 0 16px;
}
.lfe-page-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.lfe-page-prev,
.lfe-page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: var(--lfe-nav-btn, #000000);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .15s ease;
}
.lfe-page-prev {
  background: var(--lfe-nav-btn-prev, #000000);
  font-size: 20px;
  width: 60px;
  flex-shrink: 0;
}
.lfe-page-next {
  flex: 1;
  font-size: 18px;
  letter-spacing: .06em;
  padding: 18px 24px;
}
.lfe-page-prev:hover,
.lfe-page-next:hover {
  opacity: .8;
}
.lfe-page-prev:focus-visible,
.lfe-page-next:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.lfe-page-disabled {
  opacity: .3;
  pointer-events: none;
  cursor: default;
}
@media (max-width: 480px) {
  .lfe-page-prev { width: 50px; }
  .lfe-page-next { font-size: 16px; padding: 14px 16px; }
}

.lfe-post-nav { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
.lfe-post-nav-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lfe-post-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  max-width: 48%;
  line-height: 1.3;
}
.lfe-post-nav-link:hover { text-decoration: underline; }
.lfe-post-nav-next { margin-left: auto; text-align: right; }
.nav-arrow { font-size: 18px; flex-shrink: 0; }
.nav-text { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.lfe-more {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 0 16px 60px;
}
.lfe-more-head {
  border-top: 1px solid var(--text);
  padding-top: 12px;
}
.lfe-more-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text);
  font-family: var(--sans);
  margin: 0;
}
.lfe-more-item {
  display: grid;
  grid-template-columns: 90px 1fr 200px;
  gap: 0 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.lfe-more-item:last-child { border-bottom: none; }
.lfe-more-date {
  font-size: 13px;
  color: var(--muted);
  padding-top: 3px;
  white-space: nowrap;
}
.lfe-more-body { display: flex; flex-direction: column; gap: 6px; }
.lfe-more-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.lfe-more-title a { color: var(--text); text-decoration: none; }
.lfe-more-title a:hover { text-decoration: underline; }
.lfe-more-exc { font-size: 14px; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lfe-more-img-link { display: block; }
.lfe-more-img-link img,
.lfe-more-img { display: block; width: 200px; height: 150px; object-fit: cover; }

.lfe-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding: 24px 0 32px;
}
.lfe-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.lfe-footer-logo {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  position: static !important;
  transform: none !important;
}

.lfe-footer-disclaimer {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.lfe-footer-disclaimer-heading {
  font-size: 15px;
  font-weight: 700;
  font-family: var(--sans);
  margin-bottom: 8px;
}
.lfe-footer-disclaimer-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.lfe-footer-logo-wrap {
  margin-bottom: 20px;
  display: block;
}
.lfe-footer-logo-wrap .custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.lfe-footer-logo-wrap .custom-logo-link img,
.lfe-footer-logo-wrap .custom-logo {
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.lfe-footer-logo .lfe-logo-box { width: 28px; height: 28px; font-size: 16px; }

.lfe-footer-nav-wrap { margin-bottom: 20px; }
.lfe-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.lfe-footer-nav li { display: inline; }
.lfe-footer-nav li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 4px 16px 4px 0;
  white-space: nowrap;
  font-family: 'BBCReithSans', Arial, sans-serif;
}
.lfe-footer-nav li a:hover { text-decoration: underline; }

.lfe-footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 20px;
}

.lfe-footer-social-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.lfe-footer-social-label {
  font-size: 15px;
  font-weight: 700;
  font-family: 'BBCReithSans', Arial, sans-serif;
  color: var(--text);
  white-space: nowrap;
}
.lfe-footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lfe-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  width: 28px;
  height: 28px;
}
.lfe-footer-social-icon:hover { opacity: .6; }
.lfe-footer-social-icon svg { display: block; flex-shrink: 0; }

.lfe-footer-legal-row { margin-bottom: 8px; }
.lfe-footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.lfe-footer-legal-list li { display: inline; }
.lfe-footer-legal-list li a {
  display: inline-block;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  padding: 3px 16px 3px 0;
  font-family: 'BBCReithSans', Arial, sans-serif;
}
.lfe-footer-legal-list li a:hover { text-decoration: underline; }

.lfe-footer-copyright p {
  font-size: 14px;
  color: var(--text);
  font-family: 'BBCReithSans', Arial, sans-serif;
  margin: 0;
}

@media (max-width: 1100px) {
  .lfe-hero-grid { grid-template-columns: 280px 1fr; }
  .lfe-hero-col-c { display: none; }
  .lfe-footer-nav li a { font-size: 14px; }
}

@media (max-width: 768px) {
  .lfe-logo-img .custom-logo-link img,
  .lfe-logo-img img.custom-logo { max-width: 140px; height: 36px; max-height: 36px; }
  .lfe-hero-grid { grid-template-columns: 1fr; }
  .lfe-hero-col-a { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .lfe-hero-col-b { border-right: none; padding: 16px 0; }
  .lfe-hero-main-title { font-size: 22px; }
  .lfe-ed-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }
  .lfe-ed-block--img-left .lfe-ed-img,
  .lfe-ed-block--img-right .lfe-ed-img { order: 1; }
  .lfe-ed-block--img-left .lfe-ed-text,
  .lfe-ed-block--img-right .lfe-ed-text { order: 2; }
  .lfe-ed-title { font-size: 24px; }
  .lfe-arc-grid { grid-template-columns: repeat(2, 1fr); }
  .lfe-art-title { font-size: 28px; }
  .lfe-more-item { grid-template-columns: 1fr; gap: 10px; }
  .lfe-more-img-link { order: -1; }
  .lfe-more-img-link img { width: 100%; height: auto; aspect-ratio: 16/9; }
  .lfe-footer-nav li a { font-size: 13px; padding-right: 12px; }
}

@media (max-width: 480px) {
  .lfe-arc-grid { grid-template-columns: 1fr; }
  .lfe-footer-social-row { gap: 10px; }
  .lfe-logo-box { width: 32px !important; height: 32px !important; font-size: 18px !important; }
}

.lfe-hero-main-title,
.lfe-hero-sec-title,
.lfe-hero-text-title,
.lfe-ed-title,
.lfe-card-title,
.lfe-arc-title,
.lfe-more-title {
  font-family: 'BBCReithSerif', Georgia, serif !important;
  font-weight: 700 !important;
}

.lfe-hero-main-title {
  font-size: 30px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.3px;
}

.lfe-hero-sec-title {
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.lfe-hero-text-title {
  font-size: 17px !important;
  line-height: 1.25 !important;
}

.lfe-card-title {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

.lfe-arc-title {
  font-size: 34px !important;
}

.lfe-more-title {
  font-size: 20px !important;
}

.lfe-art-title {
  font-family: 'BBCReithSerif', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 40px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.5px;
}

.lfe-art-body p,
.lfe-art-body li,
.lfe-art-body blockquote {
  font-family: 'BBCReithSerif', Georgia, serif !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
}

.lfe-art-body h2 {
  font-family: 'BBCReithSerif', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 26px !important;
}
.lfe-art-body h3 {
  font-family: 'BBCReithSerif', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
}

.lfe-art-author,
.lfe-art-author a,
.lfe-art-by {
  font-family: 'BBCReithSans', Arial, sans-serif !important;
  font-weight: 500 !important;
  font-size: 15px !important;
}

.lfe-tag,
.lfe-art-tags .lfe-tag {
  font-family: 'BBCReithSans', Arial, sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
}

.lfe-meta,
.lfe-meta a,
.lfe-meta span,
.lfe-sep,
.lfe-art-time {
  font-family: 'BBCReithSans', Arial, sans-serif !important;
  font-size: 13px !important;
}

.lfe-cat-menu > li > a,
.lfe-ed-cat a,
.lfe-ed-author,
.lfe-act-btn,
.lfe-footer-nav li a,
.lfe-footer-legal-list li a,
.lfe-footer-social-label,
.lfe-footer-copyright p,
.lfe-more-label,
.lfe-more-date,
.lfe-more-exc,
.lfe-post-nav-link,
.lfe-search-form input,
.lfe-search-form button,
.lfe-arc-desc {
  font-family: 'BBCReithSans', Arial, sans-serif !important;
}

.lfe-act-btn {
  font-family: 'BBCReithSans', Arial, sans-serif !important;
  font-weight: 500 !important;
}

.lfe-ed-excerpt,
.lfe-hero-excerpt {
  font-family: 'BBCReithSerif', Georgia, serif !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
}

@media (max-width: 768px) {
  .lfe-art-title { font-size: 30px !important; }
  .lfe-hero-main-title { font-size: 24px !important; }
  .lfe-ed-title { font-size: 24px !important; }
}

.lfe-404 {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 60px;
}
.lfe-404-hero {
  text-align: center;
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.lfe-eyes {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.lfe-eye { display: flex; flex-direction: column; align-items: center; }
.lfe-eyebrow {
  width: 40px;
  height: 0;
  border-top: 5px solid var(--text);
  border-radius: 50%;
  margin-bottom: 10px;
  transform: rotate(-10deg);
}
.lfe-eye:last-child .lfe-eyebrow { transform: rotate(10deg); }
.lfe-eyeball {
  width: 80px;
  height: 80px;
  border: 5px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lfe-pupil {
  width: 20px;
  height: 20px;
  background: var(--text);
  border-radius: 50%;
  will-change: transform;
  transition: transform .08s ease-out;
}

.lfe-404-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lfe-404-msg {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 28px;
}
.lfe-404-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto 24px;
}
.lfe-404-form input[type="search"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 15px;
  font-family: var(--sans);
  border: 2px solid var(--text);
  border-right: none;
  background: var(--white);
  color: var(--text);
  outline: none;
}
.lfe-404-form button {
  padding: 0 14px;
  background: var(--text);
  color: var(--white);
  border: 2px solid var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
}
.lfe-404-form button .material-symbols-outlined { font-size: 20px; }
.lfe-404-home-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  padding: 10px 32px;
  text-decoration: none;
  transition: opacity .15s;
}
.lfe-404-home-btn:hover { opacity: .8; }
.lfe-404-popular {
  text-align: left;
}
.lfe-404-popular-heading {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 24px;
}
.lfe-404-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .lfe-eyeball { width: 64px; height: 64px; border-width: 4px; }
  .lfe-pupil { width: 16px; height: 16px; }
  .lfe-eyebrow { width: 40px; border-bottom-width: 4px; }
  .lfe-404-title { font-size: 28px; }
  .lfe-404-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lfe-404-hero { padding: 40px 0 36px; }
  .lfe-404-title { font-size: 24px; }
  .lfe-404-grid { grid-template-columns: 1fr; }
}

.lfe-saved-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px 60px;
}
.lfe-saved-head {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.lfe-saved-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.lfe-saved-count {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
}
.lfe-saved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.lfe-saved-card {
  position: relative;
}
.lfe-saved-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  color: var(--muted);
  transition: color .15s, background .15s;
}
.lfe-saved-remove:hover {
  color: var(--red);
  background: var(--bg);
}
.lfe-saved-remove .material-symbols-outlined {
  font-size: 16px;
}
.lfe-saved-empty {
  display: none;
  text-align: center;
  padding: 80px 0;
}
.lfe-saved-empty-icon {
  font-size: 48px;
  color: var(--border);
  margin-bottom: 20px;
}
.lfe-saved-empty h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lfe-saved-empty p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto 24px;
}
.lfe-saved-browse {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--black);
  padding: 10px 24px;
  text-decoration: none;
  transition: opacity .15s;
}
.lfe-saved-browse:hover { opacity: .8; }
@media (max-width: 768px) {
  .lfe-saved-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lfe-saved-grid { grid-template-columns: 1fr; }
}

.lfe-dark-toggle { position: relative; }
.lfe-dark-icon-dark { display: none; }

html.dark-mode {
  --white:   #1a1a1a;
  --black:   #e8e8e8;
  --text:    #e0e0e0;
  --muted:   #9a9a9a;
  --border:  #333333;
  --bg:      #242424;
  --red:     #ff4d4d;
}
html.dark-mode body { background: #1a1a1a; color: #e0e0e0; }
html.dark-mode img { opacity: .92; }
html.dark-mode .lfe-dark-icon-light { display: none; }
html.dark-mode .lfe-dark-icon-dark  { display: inline-block; }
html.dark-mode .lfe-cat-menu .sub-menu { background: #242424; }
html.dark-mode .lfe-card-img { background: #242424; }
html.dark-mode .lfe-logo-box { background: #e0e0e0; color: #1a1a1a; }
html.dark-mode .custom-logo { filter: brightness(0) invert(1); }

.lfe-author-hover-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lfe-author-card {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,.13);
  padding: 20px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.lfe-author-hover-wrap.open .lfe-author-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lfe-author-card-close {
  display: none;
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-size: 15px;
  font-family: var(--sans);
  line-height: 1;
  color: var(--text);
  opacity: .4;
  box-shadow: none;
}
.lfe-is-touch .lfe-author-card-close { display: block; }

.lfe-author-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}
.lfe-author-card-avatar {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0;
}
.lfe-author-card-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lfe-author-card-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.lfe-author-card-socials {
  display: flex;
  gap: 10px;
}
.lfe-author-social {
  color: #3a9b9c;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .15s;
}
.lfe-author-social:hover { opacity: .7; }
.lfe-author-card-bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.lfe-art-meta-sep {
  color: var(--muted);
  margin: 0 6px;
}
.lfe-art-reviewed {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--muted);
}
.lfe-art-reviewer-name {
  font-weight: 600;
  color: var(--text);
}

html.dark-mode .lfe-author-card {
  background: #242424;
  border-color: #444;
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
}
html.dark-mode .lfe-author-card-bio {
  border-color: #444;
  color: #e0e0e0;
}


.lfe-ad-slot {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  width: 100%;
  min-height: 110px;
  padding: 16px;
  margin: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.lfe-ad-slot-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.lfe-ad-slot-inner:empty::after {
  content: '';
  display: block;
  width: 100%;
  min-height: 60px;
}

@media (max-width: 768px) {
  .lfe-ad-slot { display: flex; }
  .lfe-editorial .lfe-ad-slot { margin: 24px 0; }
  .lfe-arc-grid .lfe-ad-slot--span {
    grid-column: 1 / -1;
    margin: 8px 0;
  }
}

html.dark-mode .lfe-ad-slot {
  background: #1a1a1a;
}

/* ===== Desktop right-rail ads (single posts, web only) ===== */
:root {
  --lfe-rail-w:    300px;
  --lfe-rail-gap:  48px;
  --lfe-rail-top:  136px;
}

.lfe-art-rail { display: none; }

@media (min-width: 1080px) {
  .lfe-art-layout.lfe-has-rail {
    display: grid;
    grid-template-columns: minmax(0, var(--art)) var(--lfe-rail-w);
    column-gap: var(--lfe-rail-gap);
    max-width: calc(var(--art) + var(--lfe-rail-gap) + var(--lfe-rail-w) + 32px);
    margin: 0 auto;
    padding: 0 16px;
    align-items: start;
  }
  .lfe-art-layout.lfe-has-rail .lfe-art-top  { grid-column: 1 / -1; min-width: 0; }
  .lfe-art-layout.lfe-has-rail .lfe-art-main { grid-column: 1; min-width: 0; }
  .lfe-art-layout.lfe-has-rail .lfe-art-rail {
    grid-column: 2;
    display: block;
    min-width: 0;
    align-self: stretch;
  }
  .lfe-art-layout.lfe-has-rail .lfe-art-img-wrap {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .lfe-art-layout.lfe-has-rail p.lfe-art-img-caption {
    padding-left: 0;
    padding-right: 0;
  }
  .lfe-art-layout.lfe-has-rail .lfe-art-body,
  .lfe-art-layout.lfe-has-rail .lfe-art-tags,
  .lfe-art-layout.lfe-has-rail .lfe-page-nav {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .lfe-art-rail-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}

/* Each slot is a positioned container — required for position:sticky to be
   bounded per-slot (the ad sticks only until its slot ends). Height is set
   by JS once the article body height is known. */
.lfe-rail-slot {
  position: relative;
  flex-shrink: 0;
}

.lfe-rail-ad {
  position: sticky;
  top: var(--lfe-rail-top);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 250px;
  padding: 12px;
  background: var(--bg);
  box-sizing: border-box;
}
.lfe-rail-ad-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.lfe-rail-ad-inner :is(img, iframe, ins, video) {
  max-width: 100%;
  height: auto;
}
.lfe-rail-ad-inner:empty::after {
  content: '';
  display: block;
  width: 100%;
  min-height: 200px;
}

html.dark-mode .lfe-rail-ad {
  background: #1a1a1a;
}

.lfe-flipcard {
  display: block;
  position: relative;
  min-height: 260px;
  width: 100%;
  max-width: var(--art);
  margin: 28px auto;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}
.lfe-flipcard:focus-visible .lfe-flipcard-front,
.lfe-flipcard:focus-visible .lfe-flipcard-back {
  box-shadow: 0 0 0 3px var(--red);
}
.lfe-flipcard-front,
.lfe-flipcard-back {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 36px 60px;
  box-sizing: border-box;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.lfe-flipcard-front {
  background: #f6f6f6;
  color: #111;
  transform: perspective(700px) rotateY(0deg);
  opacity: 1;
}
.lfe-flipcard-back {
  background: #B3D9FF;
  color: #111;
  transform: perspective(700px) rotateY(-90deg);
  opacity: 0;
  pointer-events: none;
}
.lfe-flipcard.lfe-fc-flipped .lfe-flipcard-front {
  transform: perspective(700px) rotateY(90deg);
  opacity: 0;
  pointer-events: none;
}
.lfe-flipcard.lfe-fc-flipped .lfe-flipcard-back {
  transform: perspective(700px) rotateY(0deg);
  opacity: 1;
  pointer-events: auto;
}
.lfe-flipcard-text {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
.lfe-flipcard-text p { margin: 0; }
.lfe-flipcard-hint {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  opacity: 0.4;
}
html.dark-mode .lfe-flipcard-front {
  background: #242424;
  color: #e0e0e0;
}
html.dark-mode .lfe-flipcard-hint { color: #e0e0e0; }
@media (max-width: 480px) {
  .lfe-flipcard {
    min-height: 200px;
  }
  .lfe-flipcard-front,
  .lfe-flipcard-back {
    padding: 32px 24px 52px;
  }
  .lfe-flipcard-text { font-size: 1.3rem; }
}
.lfe-reveal {
  margin: 20px 0;
  max-width: var(--art);
}
.lfe-reveal-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s ease, border-radius 0.15s ease;
}
.lfe-reveal-btn:hover { background: #e6e6e6; }
.lfe-reveal-btn[aria-expanded="true"] {
  border-radius: 8px 8px 0 0;
  background: #e8e8e8;
}
.lfe-reveal-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.lfe-reveal-btn[aria-expanded="true"] .lfe-reveal-chevron {
  transform: rotate(180deg);
}
.lfe-reveal-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f8f8;
  border-radius: 0 0 8px 8px;
}
.lfe-reveal-body.lfe-reveal-open {
  grid-template-rows: 1fr;
}
.lfe-reveal-inner {
  overflow: hidden;
  min-height: 0;
}
.lfe-reveal-content {
  padding: 18px 20px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #111;
}
.lfe-reveal-content p { margin: 0; }
html.dark-mode .lfe-reveal-btn {
  background: #2a2a2a;
  color: #aaa;
}
html.dark-mode .lfe-reveal-btn:hover,
html.dark-mode .lfe-reveal-btn[aria-expanded="true"] { background: #333; }
html.dark-mode .lfe-reveal-body { background: #222; }
html.dark-mode .lfe-reveal-content { color: #e0e0e0; }
.lfe-quiz {
  margin: 28px 0;
  padding: 22px 24px 24px;
  background: #f8f8f8;
  border-radius: 10px;
  max-width: var(--art);
}
.lfe-quiz-q {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0 0 14px;
  color: #111;
}
.lfe-quiz-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lfe-quiz-opt {
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lfe-quiz-opt:hover { border-color: #bbb; background: #f5f5f5; }
.lfe-quiz-answered .lfe-quiz-opt { cursor: default; pointer-events: none; }
.lfe-quiz-opt.lfe-quiz-correct {
  border-color: #22a06b;
  background: #e6f7f0;
  color: #1a7a52;
  font-weight: 600;
}
.lfe-quiz-opt.lfe-quiz-wrong {
  border-color: #e53e3e;
  background: #fff5f5;
  color: #c53030;
}
html.dark-mode .lfe-quiz { background: #1e1e1e; }
html.dark-mode .lfe-quiz-q { color: #e0e0e0; }
html.dark-mode .lfe-quiz-opt { background: #2a2a2a; border-color: #444; color: #ccc; }
html.dark-mode .lfe-quiz-opt:hover { border-color: #666; background: #333; }
html.dark-mode .lfe-quiz-opt.lfe-quiz-correct { background: #0d3325; border-color: #22a06b; color: #4eca8b; }
html.dark-mode .lfe-quiz-opt.lfe-quiz-wrong { background: #3c1515; border-color: #e53e3e; color: #fc8181; }
.lfe-callout {
  margin: 24px 0;
  padding: 16px 20px 18px 20px;
  border-left: 4px solid;
  border-radius: 0 8px 8px 0;
  max-width: var(--art);
}
.lfe-callout--fact    { border-color: #3B82F6; background: #EFF6FF; }
.lfe-callout--tip     { border-color: #22C55E; background: #F0FDF4; }
.lfe-callout--warning { border-color: #F59E0B; background: #FFFBEB; }
.lfe-callout--note    { border-color: #94A3B8; background: #F8FAFC; }
.lfe-callout-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lfe-callout--fact    .lfe-callout-label { color: #2563EB; }
.lfe-callout--tip     .lfe-callout-label { color: #16A34A; }
.lfe-callout--warning .lfe-callout-label { color: #D97706; }
.lfe-callout--note    .lfe-callout-label { color: #64748B; }
.lfe-callout-body {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
}
.lfe-callout-body p { margin: 0; }
html.dark-mode .lfe-callout--fact    { background: #1e2e45; border-color: #60A5FA; }
html.dark-mode .lfe-callout--tip     { background: #0d2818; border-color: #4ADE80; }
html.dark-mode .lfe-callout--warning { background: #2a1f0a; border-color: #FCD34D; }
html.dark-mode .lfe-callout--note    { background: #1e2228; border-color: #94A3B8; }
html.dark-mode .lfe-callout--fact    .lfe-callout-label { color: #60A5FA; }
html.dark-mode .lfe-callout--tip     .lfe-callout-label { color: #4ADE80; }
html.dark-mode .lfe-callout--warning .lfe-callout-label { color: #FCD34D; }
html.dark-mode .lfe-callout--note    .lfe-callout-label { color: #94A3B8; }
html.dark-mode .lfe-callout-body     { color: #d0d0d0; }
