/* Αντί για global, χρησιμοποίησε wrapper */
.ketamine-article {
  font-family: 'Inter', Sans-serif;
  max-width: min(700px, 100%);
  margin: 40px auto;
  background: #fff;
  padding: clamp(20px, 4vw, 32px) clamp(16px, 5vw, 40px);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  color: #222;
  box-sizing: border-box;
}

.ketamine-article h1 {
  font-size: clamp(1.6rem, 3.8vw, 2.1rem);
  font-weight: 700;
  color: #1a3764;
  margin-bottom: 20px;
}

.ketamine-article h2 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 700;
  margin-top: 32px;
  color: #2a5da8;
}

.ketamine-article p {
  font-size: 1.08em;
  line-height: 1.7;
  margin: 18px 0;
  overflow-wrap: anywhere; /* προλαμβάνει σπασίματα */
}

.ketamine-article footer {
  margin-top: 40px;
  border-top: 1px solid #e0e2e5;
  padding-top: 20px;
  font-size: 1em;
  color: #555;
}

.ketamine-article footer a {
  color: #2a5da8;
  text-decoration: underline;
  font-weight: 700;
}

/* Προληπτικά για media/πίνακες */
.ketamine-article img,
.ketamine-article iframe,
.ketamine-article table {
  max-width: 100%;
  height: auto;
}