/* Mobile & Tablet (combined) */

@media (max-width: 1024px) {
  /* Styles for both tablets and phones */

  .nav-icons {
    display: none;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
  }

  #featuredArticle {
    padding: 0 10px 10px;
  }

  .article-hero img {
    width: 100%;
  }

  .article-overlay h4 {
    font-size: 20px;
  }

  .articles-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 1.5rem;
  }

  #articles {
    padding: 30px 0px 0px;
  }

  .footer-main {
    padding: 10px;
    text-align: center;
  }

  .footer-column p {
    max-width: 100%;
  }
  .footer-column .socials {
    justify-content: space-around;
  }

  .footer-bottom {
    padding: 10px;
  }

  .footer-bottom * {
    width: 100%;
    text-align: center;
  }

  #related-posts {
    padding: 10px;
  }

  .related-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .post-body {
    padding: 20px;
  }

  .post-share {
    flex-direction: column;
    text-align: center;
  }

  .article-header {
    padding: 10px;
    text-align: center;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  p {
    font-size: 20px;
  }

  .about-image img {
    width: 100%;
  }
}
