/* responsive.css */

/* Dostosowanie szerokości layoutu do mniejszych ekranów */
@media (max-width: 768px) {
  body {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-top: 1.5rem;
  }

  .micro-posts article,
  .long-posts article {
    margin-bottom: 1.2rem;
  }

  .changelog-preview {
    padding: 0.8rem;
  }

  .more-button {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
  }

  header h1 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .page .page-content {
    padding: 1.5rem 1rem;
  }

  .changelog-preview h2,
  .micro-posts .section-title,
  .long-posts .section-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .micro-date {
    display: block;
    margin-bottom: 0.2rem;
  }

  .more-button {
    width: 100%;
    text-align: center;
  }
}