header h1 {
    margin: 0;
    font-size: 28px;
  }

  main {
    max-width: 950px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .post-meta span {
    margin-right: 12px;
  }

  .featured-image {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
  }

  article h2 {
    color: #d32f2f;
    margin-top: 25px;
  }

  article p {
    text-align: justify;
  }

  /* Related Posts */
  .related-posts {
    margin-top: 40px;
    border-top: 2px solid #eee;
    padding-top: 20px;
  }

  .related-posts h3 {
    color: #d32f2f;
    margin-bottom: 10px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
  }

  .related-item {
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
  }

  .related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .related-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .related-item a {
    display: block;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    padding: 10px;
  }

  .related-item a:hover {
    color: #d32f2f;
  }

  /* Comment Form */
  .comment-section {
    margin-top: 40px;
    border-top: 2px solid #eee;
    padding-top: 20px;
  }

  .comment-section h3 {
    margin-bottom: 10px;
    color: #d32f2f;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
  }

  textarea {
    min-height: 100px;
    resize: vertical;
  }

  button {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    width: fit-content;
  }

  button:hover {
    background: #b71c1c;
  }

  footer {
    text-align: center;
    padding: 15px;
    background: #205e91;
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
  }