@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --sh-bg: #fafafa;
  --sh-surface: #ffffff;
  --sh-surface-muted: #f5f5f5;
  --sh-border: #e5e7eb;
  --sh-border-strong: #d4d4d8;
  --sh-text: #111827;
  --sh-text-muted: #6b7280;
  --sh-text-subtle: #9ca3af;
  --sh-accent: #c2410c;        /* warm rust */
  --sh-accent-soft: #fff7ed;
  --sh-accent-hover: #9a3412;
  --sh-card-shadow:
    inset 0 -2px 6px rgba(0, 0, 0, 0.03),
    0 7px 10px 0 rgba(0, 0, 0, 0.04);
  --sh-card-shadow-hover:
    inset 0 -2px 6px rgba(0, 0, 0, 0.04),
    0 12px 20px 0 rgba(0, 0, 0, 0.06);
}

html, body {
  background-color: var(--sh-bg);
  color: var(--sh-text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Soft card hover */
.sh-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 16px;
  box-shadow: var(--sh-card-shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.sh-card:hover {
  box-shadow: var(--sh-card-shadow-hover);
  border-color: var(--sh-border-strong);
}

/* Primary CTA — dark neutral */
.sh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.15s ease, transform 0.1s ease;
}
.sh-btn-primary:hover { background: #1f2937; }
.sh-btn-primary:active { transform: translateY(1px); }

/* Accent CTA — warm rust */
.sh-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sh-accent);
  color: #ffffff;
  border: 1px solid var(--sh-accent);
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.15s ease;
}
.sh-btn-accent:hover { background: var(--sh-accent-hover); border-color: var(--sh-accent-hover); }

/* Secondary — white pill with hairline */
.sh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: var(--sh-text);
  border: 1px solid var(--sh-border);
  padding: 0.5rem 0.875rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.sh-btn-ghost:hover { background: var(--sh-surface-muted); border-color: var(--sh-border-strong); }

/* ------------------------------------------------------------------ */
/* Button micro-interactions                                          */
/* Springy hover lift, tactile press, and a shine sweep on the CTAs.  */
/* ------------------------------------------------------------------ */
.sh-btn-primary,
.sh-btn-accent,
.sh-btn-ghost {
  position: relative;
  overflow: hidden;
  transform: translateZ(0); /* promote to its own layer for smooth transforms */
  will-change: transform;
  transition: background 0.2s ease, border-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Shine sweep that glides across on hover */
.sh-btn-primary::after,
.sh-btn-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.sh-btn-primary:hover::after,
.sh-btn-accent:hover::after { left: 150%; }

/* Hover lift + soft shadow */
.sh-btn-primary:hover {
  background: #1f2937;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.22);
}
.sh-btn-accent:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(194, 65, 12, 0.30);
}
.sh-btn-ghost:hover { transform: translateY(-1px); }

/* Tactile press — quick spring-back scale */
.sh-btn-primary:active,
.sh-btn-accent:active,
.sh-btn-ghost:active {
  transform: translateY(0) scale(0.96);
  box-shadow: none;
  transition-duration: 0.07s;
}

/* Upvote button — the most-tapped control on the site */
.sh-upvote {
  transform: translateZ(0);
  will-change: transform;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
              transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sh-upvote:hover:not(:disabled) { transform: translateY(-1.5px); }
.sh-upvote:active:not(:disabled) { transform: scale(0.9); transition-duration: 0.06s; }
.sh-upvote--voted svg { animation: sh-upvote-pop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes sh-upvote-pop {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-3px) scale(1.28); }
  100% { transform: translateY(0) scale(1); }
}

/* Backlink preview "drop" — when a free maker chooses to skip the do-follow
   badge, the DR 38+ pill and gold checkmark visibly fall away so they feel
   exactly what they're giving up. */
.sh-drop { display: inline-flex; align-items: center; transform-origin: center; }
.sh-drop--gone { animation: sh-drop-fall 0.8s cubic-bezier(0.45, 0.03, 0.75, 0.28) forwards; }
.sh-drop--in { animation: sh-drop-rise 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.sh-drop--d1 { animation-delay: 0.11s; }
@keyframes sh-drop-fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  16%  { transform: translateY(-8px) rotate(-11deg); opacity: 1; }
  100% { transform: translateY(70px) rotate(48deg); opacity: 0; }
}
@keyframes sh-drop-rise {
  0%   { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .sh-btn-primary, .sh-btn-accent, .sh-btn-ghost, .sh-upvote { transition: background 0.15s ease, border-color 0.15s ease; }
  .sh-btn-primary::after, .sh-btn-accent::after { display: none; }
  .sh-btn-primary:hover, .sh-btn-accent:hover, .sh-btn-ghost:hover,
  .sh-btn-primary:active, .sh-btn-accent:active, .sh-btn-ghost:active,
  .sh-upvote:hover:not(:disabled), .sh-upvote:active:not(:disabled) { transform: none; box-shadow: none; }
  .sh-upvote--voted svg { animation: none; }
  .sh-drop--gone { animation: none; opacity: 0; }
  .sh-drop--in { animation: none; opacity: 1; }
}

/* ------------------------------------------------------------------ */
/* Forms — ONE input system for the whole site.                       */
/* Use these instead of ad-hoc utility stacks so every field looks    */
/* identical: .sh-label (+ .sh-req), .sh-input / .sh-select /         */
/* .sh-textarea, .sh-help, .sh-counter, .sh-switch, .sh-chip.         */
/* ------------------------------------------------------------------ */
.sh-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sh-text);
  margin-bottom: 0.375rem;
}
.sh-req::after { content: " *"; color: var(--sh-accent); }

.sh-input,
.sh-select,
.sh-textarea {
  appearance: none;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--sh-border-strong);
  border-radius: 10px;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--sh-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sh-input::placeholder,
.sh-textarea::placeholder { color: var(--sh-text-subtle); }
.sh-input:focus,
.sh-select:focus,
.sh-textarea:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}
.sh-select {
  padding-right: 2.25rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}
.sh-textarea { resize: vertical; min-height: 6rem; line-height: 1.55; }

/* Room for a leading symbol (the "@" on the X handle field). Needed as its own
   class because .sh-input sets `padding` shorthand and this stylesheet loads
   after Tailwind, so a utility like pl-7 would lose the cascade. */
.sh-input--prefix { padding-left: 1.75rem; }

.sh-help { font-size: 0.75rem; color: var(--sh-text-subtle); margin-top: 0.375rem; line-height: 1.45; }
.sh-counter {
  font-variant-numeric: tabular-nums;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--sh-text-subtle);
  flex-shrink: 0;
}
.sh-counter--warn { color: #b45309; }
.sh-counter--max { color: #b91c1c; }

/* iOS-style switch: <label class="sh-switch"><input type="checkbox"/><span class="sh-switch-track"></span><span class="sh-switch-thumb"></span></label> */
.sh-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}
.sh-switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.sh-switch-track {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: #e5e7eb;
  transition: background 0.18s ease;
  pointer-events: none;
}
.sh-switch-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.sh-switch input:checked ~ .sh-switch-track { background: var(--sh-accent); }
.sh-switch input:checked ~ .sh-switch-thumb { transform: translateX(18px); }
.sh-switch input:focus-visible ~ .sh-switch-track { box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.25); }

/* Selectable category chip */
.sh-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #ffffff;
  color: #374151;
  border: 1px solid var(--sh-border);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.sh-chip:hover { border-color: var(--sh-border-strong); background: var(--sh-surface-muted); }
.sh-chip:active { transform: scale(0.96); }
.sh-chip--on { background: var(--sh-accent); border-color: var(--sh-accent); color: #ffffff; }
.sh-chip--on:hover { background: var(--sh-accent-hover); border-color: var(--sh-accent-hover); }
.sh-chip:disabled { opacity: 0.45; cursor: not-allowed; }
.sh-chip:disabled:hover { background: #ffffff; border-color: var(--sh-border); transform: none; }

/* Dashed upload target */
.sh-dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed var(--sh-border-strong);
  border-radius: 12px;
  background: var(--sh-bg);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  color: var(--sh-text-subtle);
}
.sh-dropzone:hover { border-color: var(--sh-accent); background: var(--sh-accent-soft); color: var(--sh-accent); }

/* Screenshot preview tile (16:9) with hover remove button */
.sh-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--sh-border);
  background: var(--sh-surface-muted);
}
.sh-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-thumb-x {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: rgba(17, 24, 39, 0.72);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.sh-thumb:hover .sh-thumb-x,
.sh-thumb-x:focus-visible { opacity: 1; }
/* Touch devices have no hover, so a hover-only control would be invisible
   (though still tappable). Always show it where hover doesn't exist. */
@media (hover: none) {
  .sh-thumb-x { opacity: 1; }
}
.sh-thumb-tag {
  position: absolute;
  left: 4px;
  bottom: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.6);
  border-radius: 6px;
  padding: 2px 6px;
  /* The plain "Cover" badge is decorative and must not swallow clicks meant for
     the tile beneath it. The interactive variant below opts back in — do NOT
     put a <button> on the bare class, it would be unclickable. */
  pointer-events: none;
}
.sh-thumb-tag--btn {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.sh-thumb-tag--btn:hover { background: rgba(194, 65, 12, 0.92); }

/* Pills / tags */
.sh-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--sh-surface-muted);
  color: var(--sh-text-muted);
  border: 1px solid var(--sh-border);
  border-radius: 9999px;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Hairline section divider */
.sh-divider {
  height: 1px;
  background: var(--sh-border);
  width: 100%;
}

/* Cards — keep legacy class for backward compat */
.game-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.game-card:hover {
  transform: translateY(-2px);
}

/* Ranking borders for today's top 3 — refined, hairline accents */
.startup-card-1st {
  position: relative;
  border-color: #f59e0b !important;
  background: linear-gradient(to bottom, rgba(251, 191, 36, 0.04), #ffffff) !important;
}

.startup-card-2nd {
  position: relative;
  border-color: #9ca3af !important;
  background: linear-gradient(to bottom, rgba(156, 163, 175, 0.04), #ffffff) !important;
}

.startup-card-3rd {
  position: relative;
  border-color: #d97706 !important;
  background: linear-gradient(to bottom, rgba(217, 119, 6, 0.04), #ffffff) !important;
}

/* Ranking badge labels */
.ranking-label {
  position: absolute;
  top: -10px;
  left: 16px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9999px;
  z-index: 10;
  letter-spacing: 0.01em;
}

.ranking-label-1st { background-color: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.ranking-label-2nd { background-color: #f3f4f6; color: #374151; border: 1px solid #e5e7eb; }
.ranking-label-3rd { background-color: #fed7aa; color: #9a3412; border: 1px solid #fdba74; }

/* Featured listing with subtle gradient border */
.startup-card-featured {
  position: relative;
  border: none !important;
  background: #ffffff !important;
}

.startup-card-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(90deg, #fda4af, #fcd34d, #93c5fd, #f0abfc, #fda4af);
  background-size: 400% 400%;
  border-radius: 17px;
  z-index: -1;
  animation: gradient-border 6s ease infinite;
  opacity: 0.6;
}

.startup-card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 16px;
  z-index: -1;
}

@keyframes gradient-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Shiny sweep for upsell/CTA buttons */
.sh-shine { position: relative; overflow: hidden; }
.sh-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  animation: sh-shine 2.6s infinite;
  pointer-events: none;
}
@keyframes sh-shine {
  0% { left: -150%; }
  55% { left: 160%; }
  100% { left: 160%; }
}

/* Deprecated; kept for compat */
.featured-badge { display: none; }

/* Map old neo-button class to a clean ghost button so legacy HTML still looks right */
.neo-button {
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  box-shadow: none !important;
}
.neo-button:hover { transform: none; }

/* === Neutralize legacy neobrutalist styling on un-refactored surfaces === */

/* Replace thick black borders with hairline neutral borders */
.border-black { border-color: var(--sh-border) !important; }
.border-4.border-black,
.border-2.border-black,
.border-b-4.border-black,
.border-t-4.border-black { border-width: 1px !important; }

/* Soften hard drop shadows */
[class*="shadow-[2px_2px_0px_0px_rgba(0,0,0,1)]"],
[class*="shadow-[4px_4px_0px_0px_rgba(0,0,0,1)]"],
[class*="shadow-[6px_6px_0px_0px_rgba(0,0,0,1)]"],
[class*="shadow-[8px_8px_0px_0px_rgba(0,0,0,1)]"] {
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 4px 12px rgba(17, 24, 39, 0.05) !important;
}
[class*="hover:shadow-[4px_4px_0px_0px_rgba(0,0,0,1)]"]:hover,
[class*="hover:shadow-[6px_6px_0px_0px_rgba(0,0,0,1)]"]:hover,
[class*="hover:shadow-[8px_8px_0px_0px_rgba(0,0,0,1)]"]:hover {
  box-shadow: 0 2px 6px rgba(17, 24, 39, 0.06), 0 12px 24px rgba(17, 24, 39, 0.08) !important;
}

/* Soften saturated full-tone bgs used as page/section blocks */
.bg-yellow-300 { background-color: #fff7ed !important; color: #7c2d12 !important; }
.bg-yellow-400 { background-color: #fef3c7 !important; color: #78350f !important; }
.bg-blue-400  { background-color: #eff6ff !important; color: #1e3a8a !important; }
.bg-green-400 { background-color: #ecfdf5 !important; color: #065f46 !important; }
.bg-purple-400 { background-color: #faf5ff !important; color: #581c87 !important; }
.bg-orange-400 { background-color: #fff7ed !important; color: #7c2d12 !important; }
.bg-red-400 { background-color: #fef2f2 !important; color: #991b1b !important; }

/* And their hover variants */
.hover\:bg-yellow-500:hover { background-color: #fde68a !important; }
.hover\:bg-blue-500:hover { background-color: #dbeafe !important; }
.hover\:bg-green-500:hover { background-color: #d1fae5 !important; }
.hover\:bg-purple-500:hover { background-color: #f3e8ff !important; }
.hover\:bg-red-500:hover { background-color: #fee2e2 !important; }

/* Soften default rounded radii on brutalist cards */
[class*="border-black"][class*="rounded"] {
  border-radius: 14px !important;
}

/* Make focus rings less harsh on legacy form inputs */
.focus\:ring-blue-400:focus { --tw-ring-color: rgba(17, 24, 39, 0.15) !important; }
.focus\:ring-blue-500:focus { --tw-ring-color: rgba(17, 24, 39, 0.2) !important; }

/* Polish legacy form fields that still use `border-2 border-black` */
input.border-black,
textarea.border-black,
select.border-black {
  border-radius: 10px !important;
  background-color: #ffffff !important;
  font-size: 0.875rem !important;
}
input.border-black:focus,
textarea.border-black:focus,
select.border-black:focus {
  border-color: #9ca3af !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08) !important;
}

/* Blog post content typography */
.blog-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #374151;
}

.blog-content h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #111827;
}

.blog-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #111827;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--sh-border);
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.blog-content p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.blog-content ul { list-style-type: disc; }
.blog-content ol { list-style-type: decimal; }

.blog-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.blog-content li::marker { color: var(--sh-accent); }

.blog-content strong { font-weight: 600; color: #111827; }
.blog-content em { font-style: italic; }

.blog-content a {
  color: var(--sh-accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-content a:hover { color: var(--sh-accent-hover); }

.blog-content blockquote {
  border-left: 3px solid var(--sh-accent);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--sh-accent-soft);
  border-radius: 0 8px 8px 0;
  color: #7c2d12;
  font-style: italic;
}

.blog-content code {
  background: var(--sh-surface-muted);
  border: 1px solid var(--sh-border);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  font-size: 0.875em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #1f2937;
}

.blog-content pre {
  background: #111827;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.blog-content pre code {
  background: none;
  border: none;
  color: #f9fafb;
  font-size: 0.9rem;
  padding: 0;
}

.blog-content hr {
  border: none;
  border-top: 1px solid var(--sh-border);
  margin: 2rem 0;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.blog-content th {
  background: var(--sh-surface-muted);
  border: 1px solid var(--sh-border);
  padding: 0.625rem 1rem;
  font-weight: 600;
  text-align: left;
  color: #374151;
}

.blog-content td {
  border: 1px solid var(--sh-border);
  padding: 0.625rem 1rem;
}

.blog-content tr:nth-child(even) td {
  background: var(--sh-surface-muted);
}

.blog-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem auto;
  display: block;
}

.blog-content > *:first-child { margin-top: 0; }
.blog-content > *:last-child { margin-bottom: 0; }
