body {
  margin: 0;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
}

.container {
  width: 100%;
  padding: 2rem 0 3rem;
  background: #fff;
  overflow: visible;
}

h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #000000;
  text-align: center;
}

h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
  text-align: center;
  margin-bottom: 2rem;
}

.section {
  margin-bottom: 2rem;
}

.input-section {
  background: #fafafa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.input-label {
  font-weight: 600;
  color: #000000;
  font-size: 1.05em;
}

#tleInput {
  width: 100%;
  resize: vertical;
  font-family: 'Courier New', monospace;
  white-space: pre;
  font-size: 0.95em;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.3s;
  background: #fff;
  margin: 0;
  box-sizing: border-box;
  min-height: 80px;
}

#tleInput:focus {
  outline: none;
  border-color: #000;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 0.95em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: #000;
  color: white;
}

.btn-primary:hover {
  background: #333;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: #fff;
  color: #000;
  border: 2px solid #ddd;
}

.btn-secondary:hover {
  background: #f5f5f5;
  border-color: #999;
}

.btn-icon {
  font-size: 1.1em;
}

.error-message {
  margin-top: 15px;
  padding: 12px 16px;
  background: #fee;
  color: #c33;
  border-left: 4px solid #c33;
  border-radius: 4px;
  font-weight: 500;
}

.panel {
  background: #fafafa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  height: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #eee;
}

.output {
  white-space: pre-wrap;
  background: #fff;
  padding: 20px;
  border: 2px solid #ddd;
  border-radius: 6px;
  height: calc(100% - 80px);
  min-height: 400px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  line-height: 1.8;
  color: #000;
  overflow-y: auto;
  box-sizing: border-box;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.form-group label {
  flex: 0 0 240px;
  text-align: right;
  font-weight: 500;
  margin-right: 15px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-size: 0.95rem;
}

.label-text {
  display: inline-block;
}

.label-help {
  font-size: 0.85em;
  cursor: help;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.label-help:hover {
  opacity: 1;
}

.form-group input,
.form-group select {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 0.95em;
  transition: all 0.2s;
  background: white;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #000;
}

.form-group input[readonly] {
  background: #f5f5f5;
  color: #666;
  cursor: default;
}

.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 20px 0;
}

.flex-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  min-width: 0;
}

.left-column {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.right-column {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

/* ===========================
   EDUCATIONAL NOTES SECTION
   =========================== */
.educational-notes {
  margin-top: 4rem;
  padding: 2.5rem;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: visible;
}

.notes-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 2rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #000;
  text-align: left;
}

.note-section {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ddd;
  overflow: visible;
}

.note-section:last-child {
  margin-bottom: 0;
}

.note-section h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 1rem 0;
}

.note-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 1.5rem 0 0.75rem 0;
}

.note-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.note-section p:last-child {
  margin-bottom: 0;
}

.note-section ul {
  margin: 0.75rem 0 1rem 1.5rem;
  padding: 0;
}

.note-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0.75rem;
}

.note-section li strong {
  color: #000;
  font-weight: 600;
}

/* TLE Diagram Styles */
.tle-diagram {
  margin: 1.5rem 0;
  padding: 1.5rem;
  padding-top: 3rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #dee2e6;
  overflow: visible;
}

.tle-line-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tle-line-label:first-child {
  margin-top: 0;
}

.tle-line {
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-x: auto;
  overflow-y: visible;
  white-space: nowrap;
  position: relative;
}

.tle-monospace {
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: 0.9rem;
}

.tle-field {
  position: relative;
  display: inline-block;
  cursor: help;
  transition: all 0.2s ease;
}

.tle-field:hover {
  background: #fff3cd;
  padding: 2px 4px;
  margin: -2px -4px;
  border-radius: 3px;
  color: #000;
}

.tle-field::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tle-field::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.tle-field:hover::after,
.tle-field:hover::before {
  opacity: 1;
}

.tle-legend {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}

.tle-legend h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.75rem 0;
}

.tle-legend ul {
  margin: 0;
  padding-left: 1.25rem;
}

.tle-legend li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0.5rem;
}

.tle-legend li:last-child {
  margin-bottom: 0;
}

.math-block {
  background: #f8f9fa;
  padding: 1.25rem;
  margin: 1rem 0;
  border-radius: 4px;
  border: 1px solid #dee2e6;
  font-family: 'Courier New', 'Consolas', monospace;
}

.math-block p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 0.5rem;
}

.math-block p:last-child {
  margin-bottom: 0;
}

.math-block strong {
  color: #000;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.references ul {
  list-style-type: none;
  margin-left: 0;
}

.references li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.references li::before {
  content: "📚";
  position: absolute;
  left: 0;
}

.references a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s;
}

.references a:hover {
  color: #0052a3;
  text-decoration: underline;
}

/* Intermediate screen sizes - reduce label width */
@media (max-width: 1024px) {
  .form-group label {
    flex: 0 0 180px;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .form-group label {
    flex: 0 0 140px;
    font-size: 0.85rem;
  }
  
  .left-column,
  .right-column {
    min-width: 0;
    max-width: 100%;
  }
}

/* For wrapped columns or narrow viewports */
@media (max-width: 820px) {
  .form-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .form-group label {
    text-align: left;
    margin-bottom: 6px;
    margin-right: 0;
    justify-content: flex-start;
    flex: none;
  }
  
  .panel {
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1rem;
  }
  
  .input-section, .panel {
    padding: 15px;
  }
  
  .output {
    min-height: 300px;
  }
  
  .educational-notes {
    margin-top: 3rem;
    padding: 1.5rem;
  }
  
  .notes-title {
    font-size: 1.5rem;
  }
  
  .note-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .note-section h3 {
    font-size: 1.2rem;
  }
  
  .note-section h4 {
    font-size: 1rem;
  }
  
  .math-block {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .tle-diagram {
    padding: 1rem;
  }
  
  .tle-line {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  
  .tle-monospace {
    font-size: 0.75rem;
  }
  
  .tle-legend li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .input-section, .panel {
    padding: 12px;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .educational-notes {
    margin-top: 2rem;
    padding: 1rem;
  }
  
  .notes-title {
    font-size: 1.3rem;
  }
  
  .note-section {
    padding: 0.75rem;
  }
  
  .note-section h3 {
    font-size: 1.1rem;
  }
  
  .note-section p,
  .note-section li {
    font-size: 0.95rem;
  }
  
  .math-block {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  .tle-diagram {
    padding: 0.75rem;
  }
  
  .tle-line {
    font-size: 0.7rem;
    padding: 0.5rem;
  }
  
  .tle-monospace {
    font-size: 0.7rem;
  }
  
  .tle-field::after {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  
  .tle-legend h5 {
    font-size: 0.95rem;
  }
  
  .tle-legend li {
    font-size: 0.8rem;
  }
}

/* ========================================
   AD SIDEBAR STYLING - DUAL AD UNIT SYSTEM
   Responsive sidebar ads (same as data page)
   ======================================== */

/* Page wrapper for three-column layout */
.page,
.tle-page {
  background: #ffffff;
  color: #000;
  min-height: 100vh;
}

.tle-page-wrapper {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 4rem;
  box-sizing: border-box;
}

.updates-container {
  flex: 0 0 auto;
  max-width: 1200px;
  padding: 0 1.5rem;
  overflow: visible;
}

/* Ad sidebar styling */
.ad-sidebar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  align-self: stretch;
  flex: 1 1 160px;
  min-width: 160px;
}

.ad-container {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  padding: 8px;
  margin: 0;
  background-color: #fafafa;
}

.ad-label {
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}

.ad-unit {
  display: flex;
  justify-content: center;
}

.ad-300 {
  display: none;
}

.ad-160 {
  display: block;
}

/* Responsive breakpoints */
/* 300px ads: 300 + 300 + 1248 (content+padding) + 32 (gaps) + 64 (wrapper padding) = 1944px minimum */
@media (min-width: 1980px) {
  .tle-page-wrapper {
    padding: 2rem 2rem 4rem;
    gap: 2rem;
  }
  
  .updates-container {
    max-width: 1200px;
  }
  
  .ad-sidebar {
    flex: 1 1 300px;
    min-width: 300px;
  }
  
  .ad-300 {
    display: block;
  }
  
  .ad-160 {
    display: none;
  }
}

/* 300px ads with tighter spacing: 300 + 300 + 1148 (1100px content+padding) + 24 (gaps) + 48 (wrapper) = 1820px */
@media (min-width: 1850px) and (max-width: 1979px) {
  .tle-page-wrapper {
    padding: 2rem 1.5rem 4rem;
    gap: 1.5rem;
  }
  
  .updates-container {
    max-width: 1100px;
  }
  
  .ad-sidebar {
    flex: 1 1 300px;
    min-width: 300px;
  }
  
  .ad-300 {
    display: block;
  }
  
  .ad-160 {
    display: none;
  }
}

/* 160px ads: 160 + 160 + 1248 (content+padding) + 32 (gaps) + 32 (wrapper) = 1632px minimum */
@media (min-width: 1650px) and (max-width: 1849px) {
  .tle-page-wrapper {
    padding: 2rem 1rem 4rem;
    gap: 1rem;
  }
  
  .updates-container {
    max-width: 1200px;
  }
  
  .ad-sidebar {
    flex: 1 1 160px;
    min-width: 160px;
  }
}

/* 160px ads with flexible content: 160 + 160 + variable content + 32 (gaps) + 32 (wrapper) */
@media (min-width: 1200px) and (max-width: 1649px) {
  .tle-page-wrapper {
    padding: 2rem 1rem 4rem;
    gap: 1rem;
  }
  
  .updates-container {
    max-width: clamp(800px, calc(100vw - 420px), 1100px);
  }
  
  .ad-sidebar {
    flex: 1 1 160px;
    min-width: 160px;
  }
}

@media (max-width: 1199px) {
  .tle-page-wrapper {
    justify-content: center;
    padding: 2rem 1.5rem 4rem;
  }
  
  .ad-sidebar {
    display: none;
  }
  
  .updates-container {
    max-width: clamp(600px, 95vw, 1100px);
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .tle-page-wrapper {
    padding: 1.5rem 1rem 3rem;
  }
  
  .updates-container {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
}

/* ========================================
   DARK MODE STYLES
   ======================================== */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #0a0a0a;
    color: #e0e0e0;
  }
  
  .container {
    background: #0a0a0a;
  }
  
  .page,
  .tle-page {
    background: #0a0a0a;
    color: #e0e0e0;
  }
  
  h1 {
    color: #ffffff;
  }
  
  h2 {
    color: #b0b0b0;
  }
  
  /* Input Section */
  .input-section {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
  }
  
  .input-label {
    color: #ffffff;
  }
  
  #tleInput {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    color: #e0e0e0;
  }
  
  #tleInput:focus {
    border-color: #4da6ff;
  }
  
  /* Buttons */
  .btn-primary {
    background: #1a4d80;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    background: #2563a3;
  }
  
  .btn-secondary {
    background: #1a1a1a;
    color: #e0e0e0;
    border: 2px solid #2a2a2a;
  }
  
  .btn-secondary:hover {
    background: #2a2a2a;
    border-color: #4a4a4a;
  }
  
  /* Error Message */
  .error-message {
    background: #2a1515;
    color: #ff6b6b;
    border-left: 4px solid #ff6b6b;
  }
  
  /* Panels */
  .panel {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
  }
  
  .section-title {
    color: #ffffff;
    border-bottom: 2px solid #2a2a2a;
  }
  
  .output {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    color: #e0e0e0;
  }
  
  /* Form Elements */
  .form-group label {
    color: #e0e0e0;
  }
  
  .form-group input,
  .form-group select {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    color: #e0e0e0;
  }
  
  .form-group input:focus,
  .form-group select:focus {
    border-color: #4da6ff;
  }
  
  .form-group input[readonly] {
    background: #0a0a0a;
    color: #808080;
  }
  
  .divider {
    background: #2a2a2a;
  }
  
  /* Educational Notes */
  .educational-notes {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
  }
  
  .notes-title {
    color: #ffffff;
    border-bottom: 3px solid #4da6ff;
  }
  
  .note-section {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
  }
  
  .note-section h3 {
    color: #ffffff;
  }
  
  .note-section h4 {
    color: #e0e0e0;
  }
  
  .note-section p,
  .note-section li {
    color: #b0b0b0;
  }
  
  .note-section li strong {
    color: #ffffff;
  }
  
  /* TLE Diagram */
  .tle-diagram {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
  }
  
  .tle-line-label {
    color: #808080;
  }
  
  .tle-line {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
  }
  
  .tle-field:hover {
    background: #3a3a1a;
    color: #ffffff;
  }
  
  .tle-field::after {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  }
  
  .tle-field::before {
    border-top: 6px solid #1a1a1a;
  }
  
  .tle-legend {
    border-top: 1px solid #2a2a2a;
  }
  
  .tle-legend h5 {
    color: #ffffff;
  }
  
  .tle-legend li {
    color: #b0b0b0;
  }
  
  /* Math Block */
  .math-block {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
  }
  
  .math-block p {
    color: #e0e0e0;
  }
  
  .math-block strong {
    color: #ffffff;
  }
  
  /* References */
  .references a {
    color: #4da6ff;
  }
  
  .references a:hover {
    color: #80bfff;
  }
  
  /* Ad Containers */
  .ad-container {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
  }
  
  .ad-label {
    color: #808080;
  }
}

/* =========================================================================
   Keep exploring CTA (shared component, dark/light aware, no JS)
   ========================================================================= */
.keep-exploring {
  --ke-surface: #f8fafc;
  --ke-border: #e2e8f0;
  --ke-text: #0f172a;
  --ke-muted: #475569;
  --ke-accent: #e53935;
  --ke-accent-soft: rgba(229, 57, 53, 0.10);
  --ke-card: #ffffff;
  --ke-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  max-width: 920px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  background: var(--ke-surface);
  border: 1px solid var(--ke-border);
  border-radius: 14px;
  box-shadow: var(--ke-shadow);
  box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
  .keep-exploring {
    --ke-surface: #111827;
    --ke-border: #1f2937;
    --ke-text: #e2e8f0;
    --ke-muted: #94a3b8;
    --ke-accent: #ef4444;
    --ke-accent-soft: rgba(239, 68, 68, 0.14);
    --ke-card: #0e1626;
    --ke-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
}
.keep-exploring-title {
  margin: 0 0 1.1rem;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ke-text);
}
.keep-exploring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}
.keep-exploring-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--ke-border);
  border-radius: 10px;
  background: var(--ke-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.keep-exploring-card:hover,
.keep-exploring-card:focus-visible {
  border-color: var(--ke-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.10);
  outline: none;
}
.keep-exploring-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--ke-accent-soft);
  color: var(--ke-accent);
  font-size: 1.05rem;
}
.keep-exploring-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
}
.keep-exploring-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ke-text);
}
.keep-exploring-card-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ke-muted);
  line-height: 1.4;
}
.keep-exploring-arrow {
  flex: 0 0 auto;
  color: var(--ke-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}
.keep-exploring-card:hover .keep-exploring-arrow,
.keep-exploring-card:focus-visible .keep-exploring-arrow {
  transform: translateX(3px);
  color: var(--ke-accent);
}
@media (prefers-reduced-motion: reduce) {
  .keep-exploring-card,
  .keep-exploring-arrow { transition: none; }
  .keep-exploring-card:hover,
  .keep-exploring-card:focus-visible { transform: none; }
}
