/* ==========================================================================
   Tiger Temple Brighton — site stylesheet
   Colour system, type system and reusable components.
   ========================================================================== */

:root {
  /* Brand */
  --accent: #E1330E;
  --accent-hover: #ff4a22;

  /* Backgrounds */
  --bg: #0A1440;
  --bg-hero: #060E30;
  --bg-panel: #0E1C50;
  --bg-panel-alt: #0B1745;
  --bg-card: #12245E;
  --bg-input: #0A1440;
  --bg-footer: #081034;
  --bg-gradient-top: #16307A;
  --bg-gradient-bottom: #0C1A4C;

  /* Borders */
  --border: #223470;
  --border-light: #2A3E82;
  --border-lighter: #2E4490;
  --border-muted: #6072ad;
  --border-footer: #1A2A60;

  /* Text */
  --text: #f3f5fb;
  --text-soft: #dfe4f2;
  --text-muted: #bcc6e0;
  --text-muteder: #93a2cc;
  --text-label: #6072ad;
  --text-nav: #9fb0d8;

  /* Type */
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "IBM Plex Sans", Helvetica, Arial, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --pad-inline: clamp(18px, 4vw, 28px);
  --pad-section: clamp(56px, 9vw, 110px);
  --pad-section-sm: clamp(52px, 8vw, 96px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { color: var(--accent-hover); }

input, textarea, select, button {
  font-family: inherit;
}
::placeholder { color: #6b6b6b; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--pad-inline);
  padding-right: var(--pad-inline);
}

/* ---- Headings & text ---- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.02;
}

h1, .h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 0.96;
}

h1.hero-title {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.01em;
}

h2, .h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

h2.h2-sm {
  font-size: clamp(30px, 3.6vw, 46px);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.lede {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.4;
  color: var(--text);
}

p { line-height: 1.65; color: var(--text-muted); margin: 0 0 16px; }
p.on-light, p.text-strong { color: var(--text); }

.text-wrap-balance { text-wrap: balance; }

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 17px clamp(22px, 4vw, 32px);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-muted);
  color: var(--text);
  padding: 16px clamp(20px, 4vw, 30px);
}
.btn-outline:hover { border-color: #fff; color: var(--text); }

.btn-outline-light {
  background: transparent;
  border: 1px solid #6a6a6a;
  color: #fff;
  padding: 16px clamp(20px, 4vw, 30px);
}
.btn-outline-light:hover { border-color: #fff; }

.btn-sm {
  font-size: 13px;
  padding: 14px 22px;
}

.btn-block { display: block; width: 100%; }

/* ---- Header / Nav ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 20, 64, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: clamp(24px, 5vw, 30px);
  width: auto;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: flex-end;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); }
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 24px; }
.nav-toggle span:nth-child(3) { width: 16px; background: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
  flex-wrap: wrap;
  row-gap: 10px;
}

.main-nav a.nav-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  flex: none;
  color: var(--text-nav);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}
.main-nav a.nav-link:hover { color: var(--text); }
.main-nav a.nav-link.active {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
}
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown .nav-link.dropdown-toggle {
  background: none;
  border: none;
  padding: 0 0 3px;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-nav);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}
.nav-item.has-dropdown .dropdown-toggle:hover {
  color: var(--text);
}
.nav-item.has-dropdown .dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}
.nav-item.has-dropdown.open .dropdown-toggle::after {
  transform: rotate(-135deg) translateY(1px);
}
.nav-item.has-dropdown.active .dropdown-toggle {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
}

.dropdown-menu {
  display: none;
  z-index: 60;
}
.nav-item.has-dropdown.open .dropdown-menu {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .nav-item.has-dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-nav);
  white-space: nowrap;
}
.dropdown-link:hover { color: var(--text); }
.dropdown-link.active { color: var(--accent); }

@media (min-width: 860px) {
  .nav-item.has-dropdown {
    padding-bottom: 14px;
    margin-bottom: -14px;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0B1745;
    border: 1px solid var(--border);
    min-width: 210px;
    padding: 6px 0;
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  }
  .dropdown-menu .dropdown-link {
    display: block;
    padding: 12px 18px;
  }
}

@media (max-width: 859px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #0B1745;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 20px;
    overflow-x: visible;
  }
  .main-nav.open { display: flex; }
  .main-nav a.nav-link {
    font-size: 15px;
    padding: 15px 0 15px 12px;
    border-bottom: 1px solid #16265E;
    border-left: 3px solid transparent;
  }
  .nav-item.has-dropdown {
  border-bottom: 1px solid #16265E;
}
.nav-item.has-dropdown .nav-link.dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  font-size: 15px;
  padding: 15px 0 15px 12px;
  border-bottom: none;
}
.nav-item.has-dropdown.active .dropdown-toggle {
  border-left: 3px solid var(--accent);
  border-bottom: none;
}
.dropdown-menu {
  padding-bottom: 6px;
}
.dropdown-menu .dropdown-link {
  display: block;
  padding: 12px 0 12px 30px;
}
  .main-nav a.nav-link.active {
    border-left: 3px solid var(--accent);
    border-bottom: 1px solid #16265E;
  }
  .main-nav .btn-primary {
    margin-top: 16px;
  }
}

/* ---- Sections ---- */

.section { }
.section-pad { padding: var(--pad-section) var(--pad-inline); }
.section-pad-sm { padding: var(--pad-section-sm) var(--pad-inline); }

.bg-panel { background: var(--bg-panel); }
.bg-panel-alt { background: var(--bg-panel-alt); }
.bg-hero { background: var(--bg-hero); }
.bg-accent { background: var(--accent); }
.bg-black { background: #000; }

.border-top { border-top: 1px solid var(--border); }
.border-bottom { border-top: 1px solid var(--border); }

.gradient-panel {
  background: linear-gradient(180deg, var(--bg-gradient-top) 0%, var(--bg-gradient-bottom) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- Grids ---- */

.grid {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.grid-2-tight { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(32px, 5vw, 56px); }
.grid-cards { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 16px; }
.grid-cards-sm { grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 20px; }
.grid-stats { grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 0; }
.grid-pills { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---- Cards ---- */

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 34px) clamp(20px, 3.5vw, 30px);
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text);
}
.card-body { font-size: 15px; line-height: 1.6; color: var(--text-muted); }

.card-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
}

.card-feature {
  background: var(--bg-panel-alt);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.pill {
  border: 1px solid var(--border-lighter);
  padding: 9px 15px;
  font-size: 14px;
  color: var(--text);
}
.pill-outline {
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
}
.pill-select {
  border: 1px solid var(--border-lighter);
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
}
.pill-select.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.stat {
  padding: clamp(28px, 4vw, 42px) clamp(18px, 3vw, 28px);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.list-check div {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.5;
}
.list-check span { color: var(--accent); font-size: 12px; }

.numbered-card {
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 34px) clamp(20px, 3.5vw, 30px);
}
.numbered-card .num {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 16px;
}

.underline-item {
  border-top: 2px solid var(--accent);
  padding-top: 18px;
}
.underline-item .title {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.tag-strip {
  border-top: 2px solid var(--accent);
  padding-top: 14px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---- Testimonials / quotes ---- */

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: clamp(26px, 4vw, 40px) clamp(22px, 3.5vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-mark {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 46px;
  line-height: 0.6;
}
.quote-text {
  font-size: 18px;
  line-height: 1.6;
  color: #eef1f9;
  margin: 0;
}
.quote-attr {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-attr .dash { width: 28px; height: 2px; background: var(--accent); }
.quote-attr .name {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muteder);
}
.quote-card.span-full { grid-column: 1 / -1; }

/* ---- Forms ---- */

.field { display: block; margin-bottom: 22px; }
.field label,
.field .field-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="password"],
.field input[type="date"],
.field input[type="file"],
.field textarea,
.field select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-lighter);
  color: var(--text);
  padding: 14px 16px;
  font-size: 15px;
  outline: none;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
}

.form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: clamp(26px, 4vw, 40px) clamp(22px, 3.5vw, 34px);
}

.form-note {
  font-size: 14px;
  color: var(--text-muteder);
  margin-top: -8px;
  margin-bottom: 18px;
}

.form-error {
  background: rgba(225, 51, 14, 0.12);
  border: 1px solid var(--accent);
  color: #ffd9d0;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 22px;
}
.form-success {
  background: rgba(67, 156, 43, 0.12);
  border: 1px solid #439C2B;
  color: #cdf0c0;
  padding: 14px 16px;
  font-size: 14px;
  margin-bottom: 22px;
}

/* ---- Footer ---- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-footer);
}
.footer-grid {
  padding: clamp(48px, 7vw, 72px) var(--pad-inline) 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(30px, 5vw, 48px);
}
.footer-logo { height: 32px; width: auto; margin-bottom: 18px; }
.footer-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-desc { font-size: 15px; line-height: 1.6; color: var(--text-muteder); }
.footer-heading {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 15px; color: var(--text-muted); }
.footer-links a:hover { color: #fff; }
.footer-email { font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px var(--pad-inline) 44px;
  border-top: 1px solid var(--border-footer);
  font-size: 13px;
  color: var(--text-label);
}

/* ---- Hero (home) ---- */

.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-hero);
}
.hero video, .hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: contrast(1.1) saturate(0.9);
}
.hero-overlay-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0A1440 0%, rgba(10,20,64,0.9) 34%, rgba(10,20,64,0.45) 68%, rgba(10,20,64,0.6) 100%);
}
.hero-overlay-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 45%, rgba(225,51,14,0.14), transparent 58%);
}
.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(88px,14vw,120px) var(--pad-inline) clamp(56px,9vw,84px);
  width: 100%;
}
.hero-content .kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-content .kicker .rule { width: 34px; height: 2px; background: var(--accent); }
.hero-content .kicker .label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: #c9c5c2; }

.page-hero-banner {
  position: relative;
  overflow: hidden;
}
.page-hero-banner img.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-banner .content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-inline);
}

.cutout-frame {
  background: linear-gradient(180deg, var(--bg-gradient-top), var(--bg-gradient-bottom));
  border: 1px solid var(--border-light);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.cutout-frame img {  object-fit: contain; object-position: bottom; }
.cutout-frame.square { aspect-ratio: 1/1; }

figure { margin: 0; }
figcaption {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muteder);
  margin-top: 14px;
}

/* ---- Utility ---- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.max-w-sm { max-width: 560px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 760px; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 10px; }
.gap-md { gap: 14px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Blog ---- */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 28px;
}
.post-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.post-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.post-card .body { padding: 24px clamp(20px, 3vw, 28px) clamp(26px, 3vw, 30px); flex: 1; display: flex; flex-direction: column; }
.post-card .date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muteder);
  margin-bottom: 10px;
}
.post-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.08;
}
.post-card h3 a { color: var(--text); }
.post-card h3 a:hover { color: var(--accent); }
.post-card .excerpt { font-size: 15px; line-height: 1.6; color: var(--text-muted); flex: 1; margin-bottom: 18px; }
.post-card .read-more { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--accent); }

.post-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border: 1px solid var(--border);
  margin: 32px 0 8px;
}

.post-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 760px;
}
.post-body p { color: var(--text-soft); font-size: 18px; line-height: 1.75; }
.post-body h2 { font-size: clamp(26px,3vw,38px); margin: 40px 0 18px; text-transform: uppercase; }
.post-body h3 { font-size: 22px; margin: 32px 0 14px; text-transform: uppercase; }
.post-body img { border: 1px solid var(--border); margin: 24px 0; }
.post-body a { text-decoration: underline; }
.post-body ul, .post-body ol { color: var(--text-soft); font-size: 18px; line-height: 1.75; padding-left: 24px; }
.post-body blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(20px,2.4vw,26px);
  text-transform: uppercase;
  line-height: 1.2;
}

.empty-state {
  border: 1px dashed var(--border-light);
  padding: 48px 28px;
  text-align: center;
  color: var(--text-muted);
}

/* ---- Admin ---- */

.admin-shell { min-height: 100vh; background: var(--bg); }
.admin-topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(10,20,64,0.92);
}
.admin-topbar .container { display: flex; align-items: center; justify-content: space-between; padding: 16px var(--pad-inline); }
.admin-topbar .brand { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; }
.admin-main { max-width: 980px; margin: 0 auto; padding: 48px var(--pad-inline) 96px; }

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-login-card { width: 100%; max-width: 420px; }
.admin-login-card .logo-row { display: flex; justify-content: center; margin-bottom: 32px; }
.admin-login-card .logo-row img { height: 34px; }

.table-simple { width: 100%; border-collapse: collapse; }
.table-simple th, .table-simple td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.table-simple th {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muteder);
}
.table-simple td.actions { white-space: nowrap; }
.table-simple td.actions a { margin-right: 14px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.status-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border-light);
}
.status-pill.published { color: #a8e08f; border-color: #439C2B; }
.status-pill.draft { color: var(--text-muteder); }

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: var(--bg-input);
  border: 1px solid var(--border-lighter);
  border-bottom: none;
  padding: 8px;
}
.editor-toolbar button {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 11px;
  cursor: pointer;
}
.editor-toolbar button:hover { border-color: var(--border-light); color: var(--text); }
.editor-surface {
  min-height: 340px;
  background: var(--bg-input);
  border: 1px solid var(--border-lighter);
  color: var(--text);
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  outline: none;
}
.editor-surface:empty:before {
  content: attr(data-placeholder);
  color: #6b6b6b;
}
.editor-surface h2, .editor-surface h3 { font-family: var(--font-display); text-transform: uppercase; }
.editor-surface a { text-decoration: underline; color: var(--accent); }

.current-thumb { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.current-thumb img { width: 96px; height: 64px; object-fit: cover; border: 1px solid var(--border); }
.current-thumb span { font-size: 13px; color: var(--text-muteder); }

@media (max-width: 640px) {
  .table-simple { display: block; overflow-x: auto; }
}
