.blog-archive .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.blog-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #043763;
  text-align: center;
}

.blog-categories {
  margin-bottom: 30px;
  text-align: center;
}

.blog-categories li {
  display: inline-block;
  margin: 0 8px 10px;
  padding: 6px 12px;
  background: #f0f4fa;
  border-radius: 6px;
  font-size: 0.95rem;
}

.blog-categories li a {
  color: #043763;
  text-decoration: none;
  font-weight: 600;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.blog-post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(4, 55, 99, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-in-out;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(4, 55, 99, 0.15);
}

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

.post-content {
  padding: 20px;
}

.post-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #043763;
}

.post-content h2 a {
  text-decoration: none;
  color: inherit;
}

.post-meta {
  font-size: 0.88rem;
  color: #7587a2;
  margin-bottom: 12px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #ffd749;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-title {
    font-size: 1.9rem;
    padding: 0 10px;
  }

  .post-content {
    padding: 16px;
  }

  .post-content h2 {
    font-size: 1.2rem;
  }

  .read-more {
    font-size: 0.95rem;
  }

  .blog-categories li {
    display: inline-block;
    margin: 4px 4px;
    font-size: 0.85rem;
    padding: 5px 10px;
  }

  .blog-categories {
    padding: 0 12px;
  }

  .post-meta {
    font-size: 0.85rem;
    padding: 0 12px;
    line-height: 1.4;
  }

  .single-title {
    font-size: 1.6rem;
    padding: 0 12px;
    text-align: center;
  }

  .single-meta {
    font-size: 0.85rem;
    padding: 0 12px;
    text-align: center;
    line-height: 1.4;
  }
}

.single-post-page .container {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 20px;
}

.single-title {
  font-size: 2rem;
  font-weight: 800;
  color: #043763;
  margin-bottom: 10px;
}

.single-meta {
  font-size: 0.9rem;
  color: #7587a2;
  margin-bottom: 25px;
}

.single-thumbnail {
  margin-bottom: 25px;
}

.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.single-content {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #333;
}

.back-to-blog {
  display: inline-block;
  margin-top: 40px;
  text-decoration: none;
  color: #ffd749;
  font-weight: 600;
  font-size: 0.95rem;
}


/* --- Related Posts Section --- */
.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #043763;
  margin-bottom: 25px;
}

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


.related-posts-grid .blog-post-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(4, 55, 99, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-posts-grid .blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 14px rgba(4, 55, 99, 0.1);
}

.related-posts-grid .post-content h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.related-posts-grid .post-content {
  padding: 16px;
}

.related-posts-grid .read-more {
  margin-top: 8px;
  font-size: 0.9rem;
}

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

  .related-posts h3 {
    font-size: 1.3rem;
    text-align: center;
  }
}
/* --- Breadcrumb Navigation --- */
.breadcrumb-nav {
  font-size: 0.88rem;
  color: #7587a2;
  margin: 20px 0;
  padding-left: 12px;
}

.breadcrumb-nav a {
  color: #043763;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-nav span.separator {
  margin: 0 6px;
  color: #bbb;
}


/* --- Social Share Buttons Section --- */
.share-buttons {
  margin: 40px 0;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.share-buttons h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #043763;
}

.share-buttons ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-buttons ul li a {
  display: inline-block;
  padding: 8px 14px;
  background: #ffd749;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.share-buttons ul li a:hover {
  background: #ffcc33;
}


/* --- Reading Time Style --- */
.reading-time {
  font-size: 0.88rem;
  color: #999;
  margin-bottom: 20px;
}


.category-description {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .category-description {
    font-size: 0.95rem;
    padding: 0 16px;
    line-height: 1.6;
  }

  .share-buttons {
    padding: 16px;
  }

  .share-buttons ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-buttons ul li a {
    width: 100%;
    text-align: center;
  }

  /* --- OPTIMIZĂRI SUPLIMENTARE PENTRU MOBIL --- */
  .blog-archive .container {
    padding: 30px 16px;
  }

  .blog-post-card {
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(4, 55, 99, 0.06);
  }

  .post-thumbnail img {
    border-radius: 10px 10px 0 0;
  }

  .post-content h2 {
    font-size: 1.1rem;
  }

  .post-content {
    padding: 14px;
  }

  .read-more {
    font-size: 0.92rem;
  }

  /* --- Mărire lizibilitate pe mobil --- */
  .blog-title {
    font-size: 2rem;
  }

  .blog-categories li {
    font-size: 0.95rem;
    padding: 6px 12px;
  }

  .post-meta {
    font-size: 0.95rem;
  }

  .post-content h2 {
    font-size: 1.25rem;
  }

  .read-more {
    font-size: 1rem;
  }

  .post-content {
    padding: 18px;
  }
}

/* --- Hover pe categorii --- */
.blog-categories li:hover {
  background: #e9eef7;
  transition: background 0.2s ease-in-out;
}

.blog-categories li a:hover {
  color: #000;
}

/* --- Buton citește articolul: mai vizibil --- */
.read-more {
  font-size: 1.05rem;
  font-weight: 700;
}

/* --- Cursor pointer pe hover card articol --- */
.blog-post-card:hover {
  cursor: pointer;
}

/* --- SEO Tags (pentru viitor) --- */
.blog-tags {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #666;
}

.blog-tags a {
  margin-right: 6px;
  text-decoration: none;
  color: #043763;
  font-weight: 600;
}

.blog-tags a:hover {
  text-decoration: underline;
}

/* --- Autor articol (stil general) --- */
.post-author {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}