.qurvey-blog-post h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--ukrainian-blue);
  margin-bottom: 8px;
}

/* ✅ Стилізуємо і blog-meta (твій HTML), і blog-date (якщо десь використовувався) */
.qurvey-blog-post .blog-meta,
.qurvey-blog-post .blog-date {
  font-size: 13px;
  opacity: .7;
  margin-bottom: 12px;
}

.qurvey-blog-post {
  margin-bottom: 32px;
}

.qurvey-blog-post:last-child {
  margin-bottom: 0;
}


[data-lang] {
  display: none;
}

html[data-lang="en"] [data-lang="en"],
html[data-lang="uk"] [data-lang="uk"] {
  display: inline;
}

.page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
}

.entry-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===============================
   BLOG TITLE (НЕ ЛАМАЄ САЙТ)
================================ */
.page-title {
  font-family: "Orbitron", sans-serif;
  color: var(--ukrainian-blue);
}

/* ===============================
   BLOG TEXT COLLAPSE
================================ */
.qurvey-blog-text {
  overflow: hidden;
  line-height: 1.6;
  transition: max-height 0.35s ease;
  position: relative;
}

/* collapsed state */
.qurvey-blog-text.collapsed {
  max-height: 160px;
  /* 🔧 змінюй якщо треба */
}

/* ===============================
   COLLAPSE: DARK vs LIGHT
================================ */

/* 🌙 DARK THEME — залишаємо fade */
html[data-theme="dark"] .qurvey-blog-text.collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom,
      rgba(16, 20, 26, 0),
      rgba(16, 20, 26, 0.95));
}

/* ☀️ LIGHT THEME — ПОВНІСТЮ без fade */
html[data-theme="light"] .qurvey-blog-text.collapsed::after {
  display: none;
}


/* expanded */
.qurvey-blog-text.expanded {
  max-height: none;
}

/* ===============================
   READ MORE BUTTON
================================ */
.qurvey-read-more {
  background: none;
  border: none;
  padding: 0;
  margin-top: 6px;
  cursor: pointer;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ukrainian-blue);
}

.qurvey-read-more:hover {
  text-decoration: underline;
}