/**
 * Single post — Download PDF button + print layout
 */
.ww-post-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
}

.ww-post-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #874390;
  background: #fff;
  border: 1px solid rgba(135, 67, 144, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.ww-post-pdf-btn:hover {
  background: #874390;
  color: #fff;
  border-color: #874390;
}

.ww-post-pdf-btn:focus-visible {
  outline: 2px solid rgba(135, 67, 144, 0.45);
  outline-offset: 2px;
}

.ww-post-pdf-btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.ww-post-pdf-btn svg {
  flex-shrink: 0;
}

.ww-post-pdf-export {
  /* printable source container */
}

@media print {
  @page {
    margin: 14mm 12mm;
  }

  body.ww-post-pdf-printing * {
    visibility: hidden !important;
  }

  body.ww-post-pdf-printing .ww-post-pdf-export,
  body.ww-post-pdf-printing .ww-post-pdf-export * {
    visibility: visible !important;
  }

  body.ww-post-pdf-printing .ww-post-pdf-export {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    background: #fff !important;
    color: #111 !important;
  }

  body.ww-post-pdf-printing .ww-post-top-actions,
  body.ww-post-pdf-printing .post-navigation,
  body.ww-post-pdf-printing #comments,
  body.ww-post-pdf-printing .social-sharing,
  body.ww-post-pdf-printing .ss-social-sharing,
  body.ww-post-pdf-printing .comment-respond,
  body.ww-post-pdf-printing .edit-link,
  body.ww-post-pdf-printing .entry-footer {
    display: none !important;
  }

  body.ww-post-pdf-printing header.entry-header {
    text-align: left !important;
    margin-bottom: 12px;
  }

  body.ww-post-pdf-printing .entry-title {
    font-size: 22pt !important;
    line-height: 1.2 !important;
    margin: 0 0 8px !important;
  }

  body.ww-post-pdf-printing .author-post-date .date h2 {
    font-size: 11pt !important;
    font-weight: 600 !important;
    margin: 0 0 10px !important;
  }

  body.ww-post-pdf-printing .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: 11pt !important;
    line-height: 1.55 !important;
  }

  body.ww-post-pdf-printing .entry-content img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }

  body.ww-post-pdf-printing .entry-content h1,
  body.ww-post-pdf-printing .entry-content h2,
  body.ww-post-pdf-printing .entry-content h3 {
    page-break-after: avoid;
  }

  body.ww-post-pdf-printing .post-thumbnail {
    box-shadow: none !important;
    margin-bottom: 14px;
    aspect-ratio: auto !important;
    height: auto !important;
  }

  body.ww-post-pdf-printing .post-thumbnail img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body.ww-post-pdf-printing .cool-collab ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
  }

  body.ww-post-pdf-printing .cool-collab li {
    display: inline-block;
    margin: 0 8px 6px 0;
    font-size: 10pt;
  }
}
