/* ============================================================
   Nexus. — shared stylesheet for every page
   Colours, fonts, layout, components.
   ============================================================ */

:root {
  --white: #FFFFFF;
  --ink: #17181C;
  --blue: #2446D8;
  --blue-deep: #1B38B8;
  --sky: #A9BDFF;
  --mist: #E8EEFF;
  --mist-deep: #DCE4FF;
  --muted: #585C69;
  --line: #E1E6F5;

  --font-head: "Bricolage Grotesque", "Arial Black", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1120px;
  --gutter: 20px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --pill: 999px;
  --header-h: 64px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* Leave room for the floating feed button */
body.has-fab { padding-bottom: 110px; }

main { flex: 1 0 auto; }

h1, h2, h3, .h2 {
  font-family: var(--font-head);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.02;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 10vw, 5.75rem); }
h2, .h2 { font-size: clamp(1.9rem, 6vw, 3rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 4vw, 1.5rem); letter-spacing: -0.015em; line-height: 1.15; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }
code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: .92em;
  background: rgba(23, 24, 28, .06);
  padding: 1px 6px;
  border-radius: 6px;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

[hidden] { display: none !important; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--pill);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 780px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo .dot, .dot { color: var(--blue); }

.site-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 4px;
}
.site-nav a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--pill);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.site-nav a:hover { background: var(--mist); color: var(--blue); }
.site-nav a[aria-current="page"] { background: var(--blue); color: #fff; font-weight: 700; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -8px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease;
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px;
    box-shadow: 0 24px 40px rgba(23, 24, 28, .08);
  }
  .site-header.nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1.15rem;
    font-weight: 600;
    white-space: normal;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--pill);
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }
.btn-secondary { background: var(--mist); color: var(--blue); }
.btn-secondary:hover { background: var(--mist-deep); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--mist); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--sky); }
.btn-ghost:hover { background: var(--mist); }
.btn-danger { background: #fff; color: #B42318; border-color: #F3C4C0; }
.btn-danger:hover { background: #FDECEA; }

.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 18px 32px; font-size: 1.1rem; }
.btn-xl { padding: 22px 38px; font-size: 1.25rem; width: 100%; }
@media (min-width: 560px) { .btn-xl { width: auto; } }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 420px) {
  .btn-row .btn { flex: 1 1 100%; }
}

/* ---------- Sections & typography helpers ---------- */
.hero { padding: clamp(48px, 9vw, 112px) 0 clamp(32px, 6vw, 72px); }
.hero h1 { max-width: 14ch; }

.page-head { padding: clamp(40px, 8vw, 88px) 0 clamp(20px, 4vw, 36px); }
.page-head .lead { margin-bottom: 0; }

.section { padding: clamp(40px, 7vw, 80px) 0; }
.section-tight { padding-top: clamp(12px, 3vw, 24px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.lead {
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 1.5;
  color: var(--muted);
  max-width: 54ch;
  margin: 24px 0 32px;
}
.sub { color: var(--muted); margin: 8px 0 0; }

.partner-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
}
.partner-line::before {
  content: "";
  width: 28px; height: 3px;
  border-radius: 2px;
  background: var(--sky);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 24px;
}
.section-head h2 { flex: 1 1 auto; }
.text-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--blue);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--sky);
  transition: border-color .15s ease;
}
.text-link:hover { border-color: var(--blue); }

/* ---------- Panels & cards ---------- */
.panel {
  background: var(--mist);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 44px);
}
.panel h2 { font-size: clamp(1.5rem, 4.5vw, 2.1rem); margin-bottom: 14px; }
.panel-blue { background: var(--blue); color: #fff; }
.panel-blue h2 { color: #fff; }
.note-panel { margin-bottom: clamp(24px, 5vw, 48px); }
.note-panel p { max-width: 68ch; }

.two-col { display: grid; gap: 16px; }
@media (min-width: 760px) { .two-col { grid-template-columns: 1fr 1fr; gap: 20px; } }

.card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.founder-card { display: flex; align-items: center; gap: 16px; }
.founder-avatar {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
}
.founder-card h3 { font-size: 1.12rem; margin-bottom: 2px; }
.founder-card p { color: var(--muted); font-size: .95rem; }

.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
}
.cta-panel h2 { margin: 0; max-width: 22ch; }

/* "Neden eğitimde eşitlik?" cards on the home page */
.why-card { padding: 26px 24px; }
.why-num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
  color: var(--blue);
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 1rem; }

/* ---------- Feed ---------- */
.section-feed { background: var(--mist); }

.feed-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .feed-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

/* Home preview: swipeable strip on phones, 3 columns on desktop */
.feed-preview {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78%, 320px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px var(--gutter) 12px;
  margin: 0 calc(-1 * var(--gutter));
  scrollbar-width: none;
}
.feed-preview::-webkit-scrollbar { display: none; }
.feed-preview > * { scroll-snap-align: start; }
.feed-preview:empty { display: none; }
@media (min-width: 800px) {
  .feed-preview {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: auto;
    overflow: visible;
    margin: 0;
    padding: 0;
    gap: 24px;
  }
}

.post-card { margin: 0; text-decoration: none; color: inherit; }
.post-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--mist-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
}
button.post-media { cursor: zoom-in; }
.post-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.post-card:hover .post-media img { transform: scale(1.02); }
.post-body { padding: 12px 4px 0; }
.post-caption { margin: 0 0 6px; white-space: pre-line; }
.post-date { font-size: .85rem; font-weight: 500; color: var(--muted); }

.feed-state {
  text-align: center;
  padding: clamp(36px, 7vw, 64px) 20px;
  border: 2px dashed var(--sky);
  border-radius: var(--radius-xl);
  color: var(--muted);
}
.feed-state strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.feed-state p { margin: 0; }
.feed-loading {
  text-align: center;
  color: var(--muted);
  padding: 24px 0;
  margin: 0;
}
.feed-more { display: flex; justify-content: center; margin-top: 32px; }
.feed-more:empty { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  border: 0;
  padding: 0;
  margin: auto;
  background: transparent;
  width: min(96vw, 560px);
  max-width: 96vw;
  max-height: 96dvh;
}
.lightbox::backdrop {
  background: rgba(23, 24, 28, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox-inner {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lightbox-figure { margin: 0; }
.lightbox img {
  width: 100%;
  max-height: 68dvh;
  object-fit: contain;
  background: var(--mist);
}
.lightbox figcaption { padding: 16px 20px 20px; }
.lightbox-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(23, 24, 28, .15);
}
body:has(dialog[open]) { overflow: hidden; }

/* ---------- Projects (before / after) ---------- */
.project {
  padding: clamp(28px, 5vw, 48px) 0;
  border-top: 1px solid var(--line);
}
.project:first-of-type { border-top: 0; padding-top: 0; }
.project-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  margin-bottom: 20px;
}
.project-num {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--sky);
  font-size: 1.1rem;
  letter-spacing: .04em;
}
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 640px) { .compare { gap: 20px; } }
.compare figure { margin: 0; position: relative; }
.compare img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--mist);
  color: var(--muted);
  font-size: .85rem;
  padding: 0;
}
.compare figcaption {
  position: absolute;
  z-index: 1;
  top: 10px; left: 10px;
  padding: 6px 12px;
  border-radius: var(--pill);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(23, 24, 28, .12);
}
.tag-today { background: #fff; color: var(--ink); }
.tag-dream { background: var(--blue); color: #fff; }
.project > p {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
}

/* Missing project photo: soft placeholder instead of a broken-image icon */
.img-missing img { opacity: 0; }
.img-missing::after {
  content: "Fotoğraf yakında";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--mist);
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
}

/* ---------- Partnership lockup ---------- */
.lockup-panel {
  background: var(--mist);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 9vw, 80px) 20px;
  text-align: center;
}
.lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 5.5vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.lockup .times { color: var(--sky); font-size: .85em; }
.lockup .partner-name { color: var(--blue); text-wrap: balance; }

/* ---------- Join (Katıl) ---------- */
.join-card {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 760px) {
  .join-card { grid-template-columns: 1.2fr .8fr; gap: 48px; }
}
.join-note {
  margin: 20px 0 0;
  color: var(--muted);
  max-width: 40ch;
}
.join-qr { justify-self: center; text-align: center; }
.qr-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  width: min(100%, 236px);
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(36, 70, 216, .10);
}
.qr-box svg {
  width: 100%;
  height: auto;
  display: block;
  shape-rendering: crispEdges;
}
.qr-caption { font-size: .9rem; color: var(--muted); margin: 12px 0 0; }

/* ---------- Contact ---------- */
.contact-list { display: grid; gap: 12px; margin: 0; }
.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.contact-row dt {
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-row dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.placeholder {
  display: inline-block;
  padding: 3px 10px;
  border: 2px dashed var(--sky);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 600;
  font-size: .95rem;
}

/* ---------- Sunrise motif ---------- */
.sunrise {
  margin-top: auto;
  line-height: 0;
  padding-top: clamp(24px, 6vw, 64px);
}
.sunrise svg {
  width: 100%;
  height: clamp(130px, 24vw, 280px);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 32px;
  background: #fff;
}
.footer-inner { display: grid; gap: 28px; }
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr; align-items: start; }
}
.footer-brand p { margin: 12px 0 0; color: var(--muted); max-width: 40ch; }
.footer-brand .footer-partner { color: var(--ink); font-weight: 600; margin-top: 8px; }
.footer-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}
.footer-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover { color: var(--blue); }
.footer-school {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Floating feed button ---------- */
.feed-fab {
  position: fixed;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.feed-fab-ring {
  position: relative;
  display: block;
  width: 64px; height: 64px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2446D8 0%, #A9BDFF 100%);
  box-shadow: 0 10px 28px rgba(36, 70, 216, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feed-fab:hover .feed-fab-ring {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(36, 70, 216, .34);
}
.feed-fab-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}
.feed-fab-badge {
  position: absolute;
  top: -5px; right: -8px;
  padding: 3px 7px;
  border-radius: var(--pill);
  border: 2px solid #fff;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .04em;
}
.feed-fab-label {
  padding: 4px 11px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--sky);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(23, 24, 28, .08);
}
.feed-fab:focus-visible { outline: none; }
.feed-fab:focus-visible .feed-fab-ring {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

/* ---------- Admin ---------- */
.admin-main { padding: clamp(32px, 6vw, 64px) 0 96px; }
.admin-main .h2 { margin-bottom: 20px; }
.form-card { padding: clamp(20px, 4vw, 28px); }
.form-field { display: grid; gap: 8px; margin-bottom: 18px; }
.form-field label, .field-label { font-weight: 700; font-size: .95rem; }
.input {
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease;
}
.input:focus { border-color: var(--blue); outline: none; }
textarea.input { min-height: 110px; resize: vertical; }
.file-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 20px;
  border: 2px dashed var(--sky);
  border-radius: var(--radius-lg);
  background: var(--mist);
  color: var(--blue);
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color .15s ease;
}
.file-drop:hover { background: var(--mist-deep); }
.file-drop:focus-within { outline: 3px solid var(--blue); outline-offset: 3px; }
.preview-img {
  max-height: 260px;
  width: auto;
  border-radius: var(--radius-md);
  margin-top: 4px;
}
.status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.status-ok { background: var(--mist); color: var(--blue); }
.status-err { background: #FDECEA; color: #8A1C1C; }
.admin-list-title {
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  margin: 40px 0 8px;
}
.admin-list { border-top: 1px solid var(--line); margin-top: 12px; }
.admin-post {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.admin-post img {
  width: 64px; height: 80px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--mist);
}
.admin-post-caption {
  margin: 0 0 2px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.admin-post-date { font-size: .85rem; color: var(--muted); }
.admin-empty { color: var(--muted); padding: 24px 0; margin: 0; }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
