/* ═══════════════════════════════════════
   Blank Page — Minimal Article Layout
   ═══════════════════════════════════════ */

/* ── Base ── */
.blank-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
}

/* ── Logo ── */
.blank-page-logo {
  display: inline-block;
  margin-bottom: 28px;
  text-decoration: none;
  line-height: 0;
}

.blank-page-logo img {
  height: 22px;
  width: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.blank-page-logo:hover img {
  opacity: 1;
}

/* ── Title ── */
.blank-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 32px;
  color: #111827;
  letter-spacing: -0.025em;
}

/* ── Headings ── */
.blank-page h2 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 36px 0 10px;
  color: #111827;
  letter-spacing: -0.01em;
}

.blank-page h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 28px 0 8px;
  color: #1f2937;
}

/* ── Paragraphs ── */
.blank-page p {
  margin: 0 0 16px;
}

/* ── Links ── */
.blank-page a {
  color: #111827;
  text-decoration: underline;
  text-decoration-color: #d1d5db;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.15s ease;
}

.blank-page a:hover {
  text-decoration-color: #111827;
}

.blank-page-logo:hover {
  text-decoration: none;
}

/* ── Lists ── */
.blank-page ol,
.blank-page ul {
  margin: 0 0 20px;
  padding-left: 20px;
}

.blank-page li {
  margin-bottom: 6px;
}

.blank-page ol li::marker {
  font-weight: 600;
  color: #6b7280;
}

.blank-page ul li::marker {
  color: #d1d5db;
}

/* ── Images & Figures ── */
.blank-page img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.blank-page figure {
  margin: 24px 0;
}

.blank-page figure img {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.blank-page figcaption {
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 8px;
}

/* ── Embeds ── */
.blank-page iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  margin: 24px 0;
}

.blank-page .wp-block-embed {
  margin: 24px 0;
}

/* ── Blockquote ── */
.blank-page blockquote {
  margin: 24px 0;
  padding: 12px 16px;
  border-left: 2px solid #d1d5db;
  color: #6b7280;
  font-style: italic;
}

.blank-page blockquote p:last-child {
  margin-bottom: 0;
}

/* ── Tables ── */
.blank-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.blank-page th,
.blank-page td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.blank-page th {
  font-weight: 600;
  color: #111827;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Code ── */
.blank-page code {
  font-family: "SF Mono", Menlo, "Fira Mono", monospace;
  font-size: 0.85em;
  background: #f3f4f6;
  padding: 2px 5px;
  border-radius: 3px;
  color: #374151;
}

.blank-page pre {
  background: #111827;
  color: #e5e7eb;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 0.85rem;
  line-height: 1.6;
}

.blank-page pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ── HR ── */
.blank-page hr {
  border: none;
  height: 1px;
  background: #f3f4f6;
  margin: 36px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .blank-page {
    padding: 32px 20px 56px;
  }

  .blank-page-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .blank-page {
    padding: 24px 16px 48px;
    font-size: 15px;
  }

  .blank-page-logo img {
    height: 18px;
  }

  .blank-page-logo {
    margin-bottom: 24px;
  }

  .blank-page-title {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }

  .blank-page h2 {
    font-size: 1.1rem;
    margin-top: 28px;
  }

  .blank-page figure {
    margin: 16px -16px;
  }

  .blank-page figure img {
    border-radius: 0;
  }

  .blank-page iframe {
    margin: 16px -16px;
    width: calc(100% + 32px);
    border-radius: 0;
  }
}
