/* UpdatePress Single Page Styles */
.updatepress-single-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: inherit;      /* Matches theme font */
    text-align: left;
    padding: 0 20px;           /* Adds side padding for better mobile view */
  }
  
  /* — Header / Title — */
  .updatepress-header h1 {
    font-size: 32px;
    color: #003852;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .updatepress-meta {
    font-size: 11px;
    color: #777;
    text-align: center;
    margin-bottom: 12px;
  }
  
  /* — Content Paragraphs — */
  .updatepress-content p {
    font-size: 11px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 1em;
  }
  
  /* Special rule for the 11th paragraph */
  .updatepress-content p:nth-of-type(11) {
    font-size: 9px;  /* or whatever “smaller” size you prefer */
  }
  
  /* — Content Wrapper — */
  .updatepress-content {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    word-wrap: break-word;
  }
  
  /* — Thumbnail — */
  .updatepress-thumbnail {
    text-align: center;
    margin-bottom: 20px;
  }
  .updatepress-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* — Footer — */
  .updatepress-footer {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
  }
  
  /* — Prev/Next Navigation — */
  .updatepress-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 14px;
  }
  .updatepress-navigation a {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
  }
  .updatepress-navigation a:hover,
  .updatepress-navigation a:focus {
    color: #005580;
    outline: none;
  }
  
  /* — Mobile Optimization — */
  @media (max-width: 768px) {
    .updatepress-single-container {
      padding: 0 15px;
    }
    .updatepress-header h1 {
      font-size: 28px;
    }
    .updatepress-content p {
      font-size: 15px;
    }
    .updatepress-navigation {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }
  }
  