/* Page-specific styles */

/* Post Meta */
    .post-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .post-category {
      background: #C8102E;
      color: white;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .post-category[data-category="mission-trips"] {
      background: #8c1f1f;
    }

    .post-category[data-category="volunteer-stories"] {
      background: #1f78c1;
    }

    .post-category[data-category="partner-updates"] {
      background: #679f68;
    }

    .post-category[data-category="prayer-requests"] {
      background: #f37021;
    }

    .post-date,
    .post-read-time {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
    }

    .post-body {
      max-width: 800px;
    }

    .post-body img {
      width: 100%;
      border-radius: 8px;
      margin: 2em 0;
    }

    .post-body blockquote {
      border-left: 4px solid #8c1f1f;
      padding-left: 24px;
      margin: 2em 0;
      font-style: italic;
      color: #555;
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .post-body blockquote p {
      margin: 0;
    }

    .post-body ul,
    .post-body ol {
      margin: 1.5em 0;
      padding-left: 1.5em;
    }

    .post-body li {
      margin-bottom: 0.5em;
    }

    /* Share Section */
    .post-share {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 24px 0;
      border-top: 1px solid #eee;
      margin-top: 40px;
    }

    .post-share-label {
      font-weight: 600;
      color: #333;
    }

    .post-share-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .post-share-link:hover {
      background: #8c1f1f;
    }

    .post-share-link:hover img {
      filter: brightness(0) invert(1);
    }

    .post-share-link img {
      width: 20px;
      height: 20px;
    }

    /* Related Posts */
    .related-posts {
      background: #f8f8f8;
      padding: 60px 0;
    }

    .related-posts-title {
      margin-bottom: 32px;
    }

    .related-posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 991px) {
      .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .related-posts-grid {
        grid-template-columns: 1fr;
      }

      .post-meta {
        justify-content: center;
      }
    }

    /* Back to News Button */
    .back-to-news {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
