/* CeMe Tracker Blog — dark luxury medical-tech redesign (staging) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cyan: #06bcc1;
  --cyan-soft: #5ee7eb;
  --cyan-dark: #0a9aa0;
  --ink: #060910;
  --bg: #080c16;
  --bg-elevated: #0c1220;
  --card: rgba(18, 24, 40, 0.85);
  --card-solid: #121828;
  --card-hover: #161e32;
  --text: #eef2f7;
  --text-soft: #c5cedb;
  --muted: #8b97a8;
  --danger: #e85d6c;
  --success: #3ecf8e;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(6, 188, 193, 0.28);
  --glow: rgba(6, 188, 193, 0.18);
  --glow-strong: rgba(6, 188, 193, 0.35);
  --radius: 14px;
  --radius-sm: 10px;
  --measure: 44rem; /* ~700px */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 52px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  /* UI_SCALE_80: Joey — 100% zoom ≈ prior 80% Chrome zoom */
  font-size: 80%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -18%, rgba(6, 188, 193, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(30, 80, 140, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 60%, rgba(6, 188, 193, 0.05), transparent 45%);
  background-attachment: fixed;
}

::selection {
  background: rgba(6, 188, 193, 0.35);
  color: #fff;
}

a { color: var(--cyan); transition: color 0.2s var(--ease); }
a:hover { color: var(--cyan-soft); }


/* —— Glass sticky nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.7rem 1.5rem;
  min-height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 22, 0.72);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.1rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 0.15rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav a.active {
  color: var(--cyan-soft);
  background: rgba(6, 188, 193, 0.1);
}

.brand {
  font-weight: 600;
  color: var(--text) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: 0 !important;
  padding: 0.25rem 0.4rem 0.25rem 0.15rem !important;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  background: transparent !important;
}

.brand:hover { color: var(--cyan-soft) !important; background: transparent !important; }

.brand img {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(6, 188, 193, 0.35));
}

.nav-email {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0 0.35rem 0 0.55rem;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* —— Layout —— */
.page {
  flex: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  animation: fadeUp 0.55s var(--ease) both;
}

.page-wide { max-width: 920px; }

.page-article {
  max-width: calc(var(--measure) + 4rem);
}

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

@keyframes softPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}

/* —— Hero (index) —— */
.hero {
  position: relative;
  margin: 0.5rem 0 2.75rem;
  padding: 2.5rem 1.5rem 2.15rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(145deg, rgba(16, 24, 42, 0.92) 0%, rgba(10, 14, 26, 0.88) 100%);
  box-shadow:
    0 0 0 1px rgba(6, 188, 193, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(6, 188, 193, 0.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background:
    radial-gradient(circle at 50% 35%, rgba(6, 188, 193, 0.26), transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(80, 120, 200, 0.12), transparent 42%),
    radial-gradient(circle at 50% 100%, rgba(6, 188, 193, 0.08), transparent 40%);
  pointer-events: none;
  animation: softPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(8, 12, 22, 0.55) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(255, 255, 255, 0.012) 48px,
      rgba(255, 255, 255, 0.012) 49px
    );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.28rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  background: rgba(6, 188, 193, 0.1);
  border: 1px solid rgba(6, 188, 193, 0.25);
  border-radius: 999px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--cyan-soft);
  background: linear-gradient(120deg, var(--cyan-soft), #a8f0f2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 26rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

/* —— Page headers (non-hero) —— */
.page-header { margin-bottom: 1.75rem; }

.page-header h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.page-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Post cards —— */
.section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.1rem;
}

.section-label h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-label span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.post-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem 1.45rem 1.65rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition:
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease);
}

.post-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), transparent 85%);
  opacity: 0.55;
  transition: opacity 0.28s var(--ease), width 0.28s var(--ease);
}

.post-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  background: var(--card-hover);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(6, 188, 193, 0.1);
}

.post-card:hover::before {
  opacity: 1;
  width: 4px;
}

.post-card h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
  transition: color 0.2s var(--ease);
}

.post-card:hover h2 { color: var(--cyan-soft); }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
}

.date-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  background: rgba(6, 188, 193, 0.1);
  border: 1px solid rgba(6, 188, 193, 0.2);
}

.post-excerpt {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-arrow {
  display: inline-flex;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s var(--ease);
}

.post-card:hover .post-card-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* —— Article reading —— */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.back-link:hover { color: var(--cyan-soft); }

.article-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  text-wrap: balance;
}

.article-body {
  max-width: var(--measure);
  margin: 0 auto 0 0;
  padding: 0.25rem 0 0.5rem;
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.article-body > *:first-child { margin-top: 0; }

.article-body h2 {
  margin: 2.1rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}

.article-body h3 {
  margin: 1.55rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cyan-soft);
}

.article-body p { margin: 0 0 1.15rem; color: var(--text-soft); }

.article-body ul,
.article-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.35rem;
  color: var(--text-soft);
}

.article-body li { margin-bottom: 0.4rem; }

.article-body a {
  color: var(--cyan-soft);
  text-decoration: underline;
  text-decoration-color: rgba(6, 188, 193, 0.35);
  text-underline-offset: 3px;
}

.article-body a:hover {
  text-decoration-color: var(--cyan);
}

.article-body code {
  background: rgba(6, 188, 193, 0.08);
  border: 1px solid rgba(6, 188, 193, 0.15);
  padding: 0.12rem 0.4rem;
  border-radius: 6px;
  font-size: 0.88em;
  color: var(--cyan-soft);
}

.article-body strong { color: #fff; font-weight: 600; }

.article-body blockquote {
  margin: 1.5rem 0;
  padding: 0.85rem 0 0.85rem 1.25rem;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(6, 188, 193, 0.08), transparent 70%);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
}

.article-body hr {
  border: none;
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

/* —— Comments —— */
.comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: var(--measure);
}

.comments h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.comment {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s;
}

.comment:hover { border-color: rgba(255, 255, 255, 0.12); }

.comment-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.comment-meta strong { color: var(--text-soft); font-weight: 600; }

.comment-body {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.comments-empty {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

/* —— Cards / gates / forms —— */
.cta-box,
.form-card {
  position: relative;
  background: linear-gradient(155deg, rgba(20, 28, 46, 0.95) 0%, rgba(12, 16, 28, 0.92) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.6rem 1.55rem;
  margin-top: 1.15rem;
  box-shadow:
    0 0 0 1px rgba(6, 188, 193, 0.04) inset,
    0 20px 50px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.cta-box {
  text-align: center;
}

.cta-box .btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.cta-box::before,
.form-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 188, 193, 0.12), transparent 65%);
  pointer-events: none;
}

.cta-box p,
.form-card > p {
  position: relative;
  margin: 0 0 0.95rem;
  color: var(--muted);
}

.cta-box .btn,
.cta-box .btn-row { position: relative; }

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 560;
  margin: 0.95rem 0 0.4rem;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.8rem 1.05rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

textarea {
  min-height: 220px;
  resize: vertical;
  line-height: 1.55;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 188, 193, 0.18);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.1rem 0;
  font-size: 0.95rem;
}

.check-row input { width: auto; accent-color: var(--cyan); }
.check-row label { margin: 0; color: var(--text-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: #041416;
  border: none;
  border-radius: 11px;
  padding: 0.78rem 1.35rem;
  font-weight: 650;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  text-align: center;
  box-shadow: 0 4px 20px rgba(6, 188, 193, 0.25);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, filter 0.2s;
}

.btn:hover {
  filter: brightness(1.08);
  color: #021012;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(6, 188, 193, 0.35);
}

.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn.secondary {
  background: transparent;
  color: var(--cyan-soft);
  border: 1px solid rgba(6, 188, 193, 0.4);
  box-shadow: none;
  margin-left: 0;
}

.btn.secondary:hover {
  background: rgba(6, 188, 193, 0.1);
  color: var(--cyan-soft);
  filter: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
  align-items: center;
}

.msg { margin-top: 0.85rem; font-size: 0.9rem; min-height: 1.2em; }
.msg.ok { color: #7dcea0; }
.msg.err { color: #f5a5ad; }

.hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.3rem 0 0;
}

.hint code {
  font-size: 0.85em;
  color: var(--cyan-soft);
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1.25rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
}

/* —— Write / comment gates —— */
.gate-card {
  max-width: 460px;
  margin: 3rem auto;
  text-align: center;
  padding: 2.25rem 1.85rem !important;
}

.gate-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gate-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.15rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(6, 188, 193, 0.12);
  border: 1px solid rgba(6, 188, 193, 0.28);
  box-shadow: 0 0 30px rgba(6, 188, 193, 0.15);
  font-size: 1.35rem;
}

.gate-card h1 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
}

.gate-card p {
  color: var(--muted);
  margin: 0 0 1.45rem;
  position: relative;
  line-height: 1.6;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
}

.gate-actions .btn { width: 100%; margin: 0; }

/* —— Footer —— */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 1.25rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  background: rgba(0, 0, 0, 0.2);
}

footer.site-footer a {
  color: var(--cyan);
  text-decoration: none;
}

footer.site-footer a:hover { color: var(--cyan-soft); }

.footer-scope {
  display: block;
  margin-top: 0.45rem;
  opacity: 0.75;
  font-size: 0.72rem;
}

/* —— Admin —— */
.admin-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px dashed rgba(6, 188, 193, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(6, 188, 193, 0.06);
}

.admin-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-right: 0.25rem;
}

.btn-sm { padding: 0.42rem 0.8rem; font-size: 0.8rem; }

.btn.danger {
  background: transparent;
  color: #f5a5ad;
  border: 1px solid rgba(220, 53, 69, 0.45);
  box-shadow: none;
}

.btn.danger:hover {
  background: rgba(220, 53, 69, 0.15);
  color: #fff;
  filter: none;
}

.admin-actions { margin-left: 0.75rem; }

.linkish {
  background: none;
  border: none;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  padding: 0 0.35rem;
  text-decoration: underline;
}

.linkish.danger-text { color: #f5a5ad; }

/* —— Mobile —— */
@media (max-width: 720px) {
  .nav {
    padding: 0.65rem 1rem;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    gap: 0.15rem;
  }

  .nav a {
    margin-left: 0;
    padding: 0.38rem 0.55rem;
    font-size: 0.82rem;
  }

  .nav-email {
    max-width: 100%;
    margin: 0.25rem 0.25rem 0.15rem;
  }

  .page { padding: 1.35rem 1rem 3rem; }

  .hero {
    padding: 1.85rem 1.2rem 1.75rem;
    border-radius: 18px;
    margin-bottom: 2rem;
  }

  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); }

  .hero-sub { font-size: 0.98rem; }

  .post-card { padding: 1.2rem 1.15rem 1.2rem 1.3rem; }

  .article-body { font-size: 1.02rem; }

  .btn.secondary { margin-left: 0; }

  .gate-card { margin: 1.5rem auto; padding: 1.75rem 1.25rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
