/* ===== BLOG & SINGLE CLEAN MODERN STYLES ===== */

/* CARD STYLE */
.post,
.blog-posts article {
  background-color: rgba(255,255,255,0.97);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.blog-posts article:hover {
  transform: translateY(-5px);
}

/* TITLES */
.entry-title,
.blog-posts article > h2 {
  font-family: 'nunito';
  font-size: 2rem;
  line-height: 1.3;
  background: var(--orange);
  color: white;
  padding: 16px 20px;
  margin: 0;
  text-align: left;
}

.blog-posts article h2 a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
}

/* CONTENT */
.entry-content,
.blog-post-content {
  padding: 20px 25px;
  font-family: 'atkinson';
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: normal;
}

/* HEADINGS */
.entry-content h2 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--orange);
}

/* META */
.post-meta {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.article-tag a {
  background: rgba(255,165,0,0.15);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--orange);
}

/* EXCERPT */
.post-excerpt {
  font-size: 1.05rem;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* BUTTON */
.read-more-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'poppins';
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  background: #e69500;
  transform: translateY(-2px);
}

.article-button-container {
  padding: 15px 20px 20px;
}

/* IMAGES */
.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* LAYOUT */
.blog-container {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  width: 100%;
  margin-top: 25px;
}

/* SINGLE PAGE */
.post {
  max-width: 800px;
  width: 100%;
  margin: 30px auto;
}

.single-container {
  max-width: 720px;
  margin: 0 auto;
}

/* NAVIGATION */
.post-navigation {
  max-width: 720px;
  margin: 30px auto;
  padding: 15px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-links {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.nav-links a {
  color: var(--orange);
  text-decoration: none;
}

/* HR */
hr {
  border: none;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 20px 0;
}

/* BLOG TITLE */
.blog-title h1 {
  margin-top: 50px;
  font-family: 'poppins';
  font-size: 3rem;
  color: white;
  text-align: center;
}

/* FILTERS (kept simple) */
.blog-filters {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .blog-posts {
    padding: 0 10px;
  }

  .entry-title,
  .blog-posts article > h2 {
    font-size: 1.3rem;
  }

  .blog-posts article h2 a {
    font-size: 1.2rem;
  }

  .entry-content {
    font-size: 1rem;
  }

  .post {
    margin: 20px 10px;
  }
}