:root{
  --bg0:#070814;
  --bg1:#0b1020;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(226,223,255,.72);
  --muted2: rgba(214,210,255,.56);

  --accent:#ff3dbb;
  --accent2:#00eaff;
  --accent3:#8b5cf6;
  --accent4:#ffd166;

  --glowPink: 0 0 10px rgba(255,61,187,.45), 0 0 24px rgba(255,61,187,.18);
  --glowCyan: 0 0 12px rgba(0,234,255,.38), 0 0 28px rgba(0,234,255,.14);

  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.45);

  --radius: 18px;
  --radius2: 24px;

  --maxw: 1180px;
  --topbarH: 74px;
}

::-moz-selection {
	background: #cfd8e4;
	text-shadow: none;
  color:#000000;
}

::selection {
	background: #cfd8e4;
	text-shadow: none;
  color:#000000;
}

*{ box-sizing:border-box; scroll-behavior: smooth; scrollbar-color: #435876 #131f32;}
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 480px at 12% 8%, rgba(255, 61, 187, .18), transparent 55%),
    radial-gradient(760px 420px at 88% 14%, rgba(0, 234, 255, .16), transparent 55%),
    radial-gradient(900px 540px at 50% 120%, rgba(139, 92, 246, .18), transparent 52%),
    linear-gradient(180deg, rgba(7, 4, 16, .72), rgba(7, 4, 16, .5)),
    url(/wobble/assets/img/spacey.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
  background-size: auto, auto, auto, cover, cover;
  background-position: center top;
  line-height:1.6;
}

a{ color:inherit; text-decoration:none; }
.wrap{ width:min(var(--maxw), calc(100% - 40px)); margin:0 auto; }

.kicker{
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f5bb32;
  font-weight: 600;
  opacity: 0.9;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:var(--text);
  box-shadow:var(--shadow2), inset 0 1px 0 rgba(255,255,255,.07);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor:pointer;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}

.btn:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border-color:rgba(255,255,255,.22);
  color:#ffffff;
  box-shadow:var(--shadow2), var(--glowCyan), inset 0 1px 0 rgba(255,255,255,.10);
}

.btn--primary{
  border-color:rgba(255,61,187,.38);
  background:linear-gradient(135deg, rgba(255,61,187,.94), rgba(139,92,246,.88) 50%, rgba(0,234,255,.84));
  color:#071018;
  box-shadow:0 16px 34px rgba(0,0,0,.38), 0 0 22px rgba(255,61,187,.22);
}

.btn--ghost{
  background:rgba(255,255,255,.03);
  box-shadow:none;
  font-family:'Inter', sans-serif;
  font-size:15px;
}

.iconbtn{
  width:44px;
  height:44px;
  display:inline-grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:var(--text);
  cursor:pointer;
  transition:background .15s ease, transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.iconbtn:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.2);
  transform:translateY(-1px);
  box-shadow:var(--glowPink);
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--topbarH);
  backdrop-filter: blur(14px);
  background: rgb(28 30 58 / 55%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 61, 187, .85), rgba(0, 234, 255, .85), transparent);
  box-shadow: 0 0 14px rgba(255, 61, 187, .22);
}

.topbar__inner{
  height:var(--topbarH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{ display:flex; align-items:center; gap:12px; min-width: 220px; }
.brand__mark{
  width:45px; height:45px;
  border-radius:100%;
  display:grid; place-items:center;
  color:#071018;
}

.brand__mark img {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  place-items: center;
  color: #ffffff;
}

.brand__text{ display:flex; flex-direction:column; line-height:1.1; }
.brand__title{ font-weight:500; letter-spacing:.02rem; }
.brand__tag{ font-size:12px; color:var(--muted2); margin-top:2px; }

.nav{ display:flex; align-items:center; gap:10px; }
.nav__link{
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.nav__link:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
  color:var(--text);
  box-shadow:var(--glowCyan);
}
.nav__link.is-active{
  background:linear-gradient(135deg, rgba(255,61,187,.16), rgba(0,234,255,.10));
  border-color:rgba(255,255,255,.16);
  color:var(--text);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(255,61,187,.12);
}

.topbar__menuBtn{ display:none; }

.archiveHead{
  margin: 18px 0 18px;
  align-items:stretch;
}
.archiveHead__title{
    font-weight: 600;
    margin: 10px 0 8px;
    font-size: 48px;
    letter-spacing: -.02em;
    line-height: 1.2;
    max-width: 90%;
    font-family: "Google Sans", "Inter", sans-serif;
}
.archiveHead__desc{ margin:0; color: rgba(255,255,255,.82); max-width: 70ch; }
.archiveHead__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; }

.readmoretitle{
  margin: 10px 0 8px;
  letter-spacing: -.03em;
  line-height: 1.1;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.heroTile{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  min-height: 210px;
}
.heroTile__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  transform: scale(1.03);
}
.heroTile__veil{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 380px at 25% 35%, rgba(0,0,0,.08), rgba(0,0,0,.68) 58%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.70));
}
.heroTile__content{ position:relative; padding: 18px; }
.heroTile__title{ margin-top: 10px; font-weight:800; letter-spacing:-.02em; line-height:1.15; }
.heroTile__meta{ margin-top: 8px; color: var(--muted); font-size: 13px; }

.pill{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size: 12px;
}

/* Post list */
.badge{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(139,92,246,.35);
  background: rgba(139,92,246,.10);
  color: rgba(255,255,255,.86);
  font-size: 12px;
}
.badge--alt{
  border-color: rgba(34,211,238,.35);
  background: rgba(34,211,238,.10);
}
.dot{ opacity:.55; }

.postCard__title{
  margin: 10px 0 8px;
  font-size: 18px;
  line-height:1.25;
  letter-spacing:-.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.postCard__excerpt{
  margin: 0 0 12px;
  color: rgba(255,255,255,.80);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.postCard__by{ display:flex; align-items:center; gap:10px; color: var(--muted); font-size: 13px; }
.avatar{
  width:28px; height:28px;
  border-radius:10px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-weight:800;
}

.search{ display:flex; gap: 10px; }
.search__input{
  flex:1;
  height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--text);
  padding: 0 14px;
  outline:none;
}
.search__input:focus{
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 0 0 4px rgba(34,211,238,.12);
}

/* Pager */
.pager{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  margin-top: 8px;
}
.pager__btn{
  flex:1;
  text-align:center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
}
.pager__btn:hover{ background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.pager__btn--primary{
  border-color: rgba(139,92,246,.45);
  background: rgba(139,92,246,.10);
}

.footer{
  margin:28px 0 20px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-bottom:20px;
  position:relative;
}

.footer::before{
  content:"";
  position:absolute;
  left:0;
  top:-1px;
  width:180px;
  height:2px;
  background:linear-gradient(90deg, rgba(255,61,187,.9), rgba(0,234,255,.55), transparent);
  box-shadow:0 0 12px rgba(255,61,187,.35);
}

.footer__fine{
  color:var(--muted2);
  font-size:13px;
}

.controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:12px 0 18px;
  flex-wrap:wrap;
}

.controls__label{
  font-weight:700;
  font-size:13px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#ff93d1;
  margin-right:10px;
  text-shadow:0 0 10px rgba(255,61,187,.18);
}

.controls__group{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.controls__select{
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  color:var(--text);
  padding:0 14px;
  outline:none;
  font-size:14px;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  font-family:'Inter', sans-serif;
  padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='white' stroke-opacity='0.82' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  transition:border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.controls__select:hover,
.controls__select:focus{
  border-color:rgba(0,234,255,.38);
  box-shadow:var(--glowCyan);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}

.controls__select option{
  background-color:#11182b;
  color:rgba(255,255,255,.92);
  font-family:'Inter', sans-serif;
}

.seg{
  display:flex;
  gap:6px;
  padding:6px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  flex-wrap:wrap;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
}

.seg__btn{
  height:34px;
  font-size:14px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color: #f5bb32;
  cursor:pointer;
  transition:background .15s ease, border-color .15s ease, transform .15s ease, color .15s ease, box-shadow .15s ease;
  font-family:'Inter', sans-serif;
}

.seg__btn:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.10);
  color:rgba(255,255,255,.95);
  transform:translateY(-1px);
  box-shadow:0 0 16px rgba(255,61,187,.10);
}

.seg__btn.is-active{
  background:linear-gradient(135deg, rgba(255,61,187,.22), rgba(139,92,246,.16), rgba(0,234,255,.16));
  border-color:rgba(255,255,255,.16);
  color:rgba(255,255,255,.98);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 0 16px rgba(255,61,187,.16);
}

/* Grid of post cards */
.postsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 14px 0 18px;
  padding: 6px;
}

/* Card */
.bbbCard{
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, filter .25s ease, opacity .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

/* subtle top sheen */
.bbbCard::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
  background:
    radial-gradient(700px 240px at 20% 0%,
      rgba(255,255,255,.14),
      transparent 55%),
    linear-gradient(135deg,
      rgba(139,92,246,.10),
      rgba(34,211,238,.08));
  opacity: .9;
  mix-blend-mode: screen;
}

/* edge highlight */
.bbbCard::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  opacity: .9;
}

/* hover = slightly brighter glass */
.bbbCard:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
  box-shadow:
    0 26px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.bbbCard .shine{
  position:absolute;
  inset:-2px;
  pointer-events:none;
  opacity:0;
  z-index: 2;
}

.bbbCard .shine::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width:60%;
  height:180%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.14),
    transparent
  );
}

.bbbCard:hover .shine{
  opacity:1;
  animation: shineMove .5s linear;
}

@keyframes shineMove{
  from{ transform: translateX(-10%); }
  to{ transform: translateX(240%); }
}

/* ensure content sits above the pseudo layers */
.bbbCard > *{
  position: relative;
  z-index: 1;
}

/* Category label */
.bbbCard__cat {
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-items: center;
  display: inline-flex;
  color: #f5bb32;
  font-family: "Google Sans", "Inter", sans-serif;
  opacity: 0.9;
  gap: 5px;
  font-weight: 500;
}

/* Title */
.bbbCard__title{
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: -.02rem;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: "Google Sans", "Inter", sans-serif;
  text-wrap: balance;
}

/* Bottom row */
.bbbCard__bottom{
  margin-top: auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

/* Author block */
.bbbCard__author{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.bbbAvatar{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
}

.bbbAvatarImg{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
}

.bbbBy{
  color: rgba(255,255,255,.78);
  font-size: 13px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

/* Episode pill + date */
.bbbCard__meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 6px;
  text-align:right;
}

.bbbPill{
  display:none;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  white-space: nowrap;
}

.bbbDate{
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  white-space: nowrap;
}

/* Featured / spotlight badges */
.bbbCard__media{
  position:relative;
}

.bbbCard__featured{
  position:absolute;
  top:12px;
  left:12px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:6px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:linear-gradient(135deg, rgba(255,209,102,.22), rgba(255,102,196,.16));
  color:rgba(255,255,255,.96);
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:
    0 10px 24px rgba(0,0,0,.28),
    0 0 18px rgba(255,209,102,.16),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.bbbCard__featured svg{
  width:13px;
  height:13px;
  flex:0 0 auto;
  stroke:currentColor;
  opacity:.95;
}

.bbbCard__featured.is-cyan{
  background:linear-gradient(135deg, rgba(0,234,255,.18), rgba(139,92,246,.16));
  box-shadow:
    0 10px 24px rgba(0,0,0,.28),
    0 0 18px rgba(0,234,255,.14),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.bbbCard__featured.is-pink{
  background:linear-gradient(135deg, rgba(255,61,187,.22), rgba(139,92,246,.16));
  box-shadow:
    0 10px 24px rgba(0,0,0,.28),
    0 0 18px rgba(255,61,187,.14),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.bbbCard__featured.is-gold{
  background:linear-gradient(135deg, rgba(255,209,102,.24), rgba(255,159,67,.18));
  box-shadow:
    0 10px 24px rgba(0,0,0,.28),
    0 0 18px rgba(255,209,102,.18),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.bbbCard__img{
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .6s ease, filter .6s ease;
}

.bbbCard:hover .bbbCard__img{
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.05);
}

.bbbCard__top {
  padding: 0px 15px 0px 15px;
}

.bbbCard__bottom {
  margin-top: auto;
  padding: 0px 12px 15px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Responsive */
@media (max-width: 980px){
  .postsGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .postsGrid{ grid-template-columns: 1fr; }
}

/* Pager centered */
.pager--center{
  justify-content:center;
}
.pager--center .pager__btn{
  max-width: 260px;
}

@media (max-width: 980px){
  .postsGrid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px){
  .postsGrid{ grid-template-columns: 1fr; }
  .gridCard__img{ height: 200px; }
}

@media (max-width: 980px){
  .archiveHead{ grid-template-columns: 1fr; }
  .layout{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .wrap{ width: min(var(--maxw), calc(100% - 28px)); }
  .topbar__menuBtn{ display:inline-grid; }
  .nav{
    position: fixed;
    top: var(--topbarH);
    left: 14px;
    right: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(10,12,28,.96);
    box-shadow: var(--shadow);
    padding: 10px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .nav.is-open{ display:flex; }
}

.loadMoreWrap{
  display:grid;
  place-items:center;
  gap: 10px;
  margin: 18px 0 30px;
}

.loadMoreHint{
  color: rgba(255,255,255,.60);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(6px); }
  to{ opacity:1; transform: translateY(0); }
}

/* When hovering the grid */
.postsGrid:hover .bbbCard{
  filter: blur(0px);
  transition: 
    filter .25s ease,
    opacity .25s ease,
    transform .25s ease;
}

/* Keep hovered card sharp */
.postsGrid .bbbCard:hover{
  filter: blur(0);
  opacity: 1;
  transform: scale(1.02);
  z-index: 5;
  box-shadow:
    0 30px 80px rgba(0,0,0,.60),
    0 0 40px rgba(139,92,246,.25),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* =========================
   Article page (glass panel)
   ========================= */

.articlePanel{
  margin: 14px 0 22px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 18px 50px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* same sheen/edge as cards */
.articlePanel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(255,255,255,.14), transparent 55%),
    linear-gradient(135deg, rgba(139,92,246,.10), rgba(34,211,238,.08));
  opacity:.9;
  mix-blend-mode: screen;
}
.articlePanel::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  opacity:.9;
}

.articlePanel > *{ position:relative; z-index:1; }

.articleHead{ padding: 18px 18px 0; }

.articleMeta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.articleTitle{
  margin: 12px 0 10px;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.articleDek{
  margin: 0 0 14px;
  color: rgba(255,255,255,.82);
  max-width: 78ch;
}

.articleAuthor{
  display:flex;
  align-items:center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.articleByline{ font-weight: 800; }
.articleBylineSub{ font-size: 12px; color: rgba(255,255,255,.58); margin-top: 2px; }

.articleHero{
  margin: 0;
  padding: 14px 18px 0;
}
.articleHero img{
  width: 100%;
  display:block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.articleBody{
  padding: 14px 18px 18px;
  color: rgba(255,255,255,.86);
}
.articleBody p{ margin: 0 0 14px; }

.articleBody p.lead{
  font-size: 1.3rem;
  background: linear-gradient(90deg, #ff66a8, #66a6ff);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.4;
  margin-block-end: var(--space-s);
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  color: white;
  font-weight: 500;
  margin-top: 6px;
  width: 100%;
  float: left;
  margin-bottom: 10px;
}

.articleBody p.lead::first-letter{
  float: left;
  font-size: 3.8rem;
  line-height: .85;
  font-weight: 800;
  margin: 0px 12px 0 0;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
}

.articleBody h2, .articleBody h3{
  margin: 18px 0 10px;
  letter-spacing: -.01em;
}
.articleBody blockquote{
  margin: 16px 0;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(139,92,246,.10);
  color: rgba(255,255,255,.88);
}
.articleBody hr{
  border:none;
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 18px 0;
}

/* optional: prev/next */
.articleNav{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 18px 0 28px;
}
.articleNav__card{ padding: 14px; }

@media (max-width: 980px){
  .articleNav{ grid-template-columns: 1fr; }
}

@media (max-width: 400px){
  .archiveHead__title {
	font-size: 2.3rem;
    text-wrap: balance;
  }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* Smooth reveal animation for newly shown cards */
.bbbCard.is-revealing{
  animation: cardReveal .28s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--delay, 0ms);
}

@keyframes cardReveal{
  from{ opacity: 0; transform: translateY(10px) scale(.99); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .bbbCard.is-revealing{ animation: none !important; }
}
