/* Print Styles for Wunder Blankets */
@page {
  margin: 0;
}

@media print {
  /* Reset base layout */
  html, body {
    margin: 0;
    padding: 0;
    font-family: serif;
    color: #000;
  }

  /* Site Title and Description */
  .site-title,
  .site-description {
    display: block;
    text-align: center;
    visibility: visible !important;
    position: static !important;
    margin: 0 auto;
    color: #000;
  }

  .site-title {
    font-size: 24pt;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    page-break-before: always;
  }

  .site-description {
    font-size: 14pt;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 30px;
  }

  /* Page Title */
  .entry-title {
    display: block;
    text-align: center;
    font-size: 18pt;
    margin: 20px 0;
    visibility: visible !important;
    position: static !important;
  }

  /* Page Content */
  .entry-content {
    display: block;
    font-size: 12pt;
    line-height: 1.6;
    margin: 0 40px;
    visibility: visible !important;
    position: static !important;
  }

  /* Gallery */
  .gallery,
  .gallery-item {
    display: block;
    page-break-inside: avoid;
    text-align: center;
    margin: 20px auto;
    visibility: visible !important;
    position: static !important;
  }

  .gallery img {
    max-width: 100%;
    height: auto;
  }

  /* Hide non-essential elements */
  header,
  footer,
  nav,
  .sidebar,
  .comments-area,
  .admin-bar,
  .site-navigation,
  .wp-toolbar {
    display: none !important;
  }

  /* Reveal screen-reader-only content if needed */
  .screen-reader-text {
    position: static !important;
    clip: auto !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
  }
}




