.heading-line-right {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
}

.heading-line-right::after {
  content: "";
  display: inline-block;
  height: 2px;
  background-color: #000;
  flex-grow: 1;
  margin-left: 15px;
  max-width: 100px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .heading-line-right::after {
    max-width: 50px;
    margin-left: 10px;
  }
}

/* CSS POSTOVE - на първата страница - Общ контейнер за публикациите */
.elementor-posts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 10px;
  margin-bottom: 30px;
}

/* Всяка публикация - кутия */
.elementor-post {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Ефект при hover */
.elementor-post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Снимка на публикацията */
.elementor-post__thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.elementor-post:hover .elementor-post__thumbnail img {
  transform: scale(1.05);
}

/* Заглавие */
.elementor-post__title {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0072ff; /* Ярко синьо */
  margin: 16px 20px 8px 20px;
  line-height: 1.2;
  flex-grow: 0;
  transition: color 0.3s ease;
}

.elementor-post:hover .elementor-post__title {
  color: #0056b3;
}

/* Откъс от публикацията */
.elementor-post__excerpt {
  font-size: 0.95rem;
  color: #555555;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
  line-height: 1.5;
}

/* Бутон „Прочети повече“ */
.elementor-post__read-more {
  display: inline-block;
  margin: 0 20px 20px 20px;
  padding: 10px 18px;
  background: #0072ff;
  color: white !important;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none !important;
  text-align: center;
  transition: background-color 0.3s ease;
}

.elementor-post__read-more:hover {
  background-color: #0056b3;
}

/* Дата и мета */
.elementor-post__meta-data {
  font-size: 0.85rem;
  color: #888888;
  margin: 0 20px 12px 20px;
}

/* Responsive за мобилни */
@media (max-width: 480px) {
  .elementor-post__thumbnail img {
    height: 140px;
  }
  .elementor-post__title {
    font-size: 1.1rem;
    margin: 12px 15px 6px 15px;
  }
  .elementor-post__excerpt {
    margin: 0 15px 15px 15px;
    font-size: 0.9rem;
  }
  .elementor-post__read-more {
    margin: 0 15px 15px 15px;
  }
}

/* CSS за страницата с постове */

/* Основен контейнер за съдържанието на поста */
.single-post .entry-content, 
.single-post article.post {
  max-width: 760px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #222;
}

/* Заглавие на публикацията */
.single-post .entry-title {
  font-weight: 900;
  font-size: 2.8rem;
  color: #0072ff;
  margin: 30px 0 40px 0;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.1;
}

/* Представено изображение (Featured Image) */
.single-post .post-thumbnail img {
  max-width: 760px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin: 0 auto 40px auto;
  display: block;
  object-fit: cover;
}

/* Мета информация (дата и автор) */
.single-post .posted-on,
.single-post .byline {
  font-size: 0.9rem;
  font-style: italic;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

/* Абзаци в съдържанието */
.single-post .entry-content p {
  margin-bottom: 22px;
  font-weight: 400;
  color: #444;
}

/* Линкове в съдържанието */
.single-post .entry-content a {
  color: #0072ff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.single-post .entry-content a:hover {
  color: #004aad;
}

/* Заглавия (h2, h3) вътре в публикацията */
.single-post .entry-content h2,
.single-post .entry-content h3 {
  margin-top: 40px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #004aad;
}

/* Списъци в съдържанието */
.single-post .entry-content ul {
  margin-left: 20px;
  margin-bottom: 30px;
}

/* Добави лек padding отдолу, за да не се лепи футъра */
.single-post article.post {
  padding-bottom: 60px;
}

/* Responsive - мобилни */
@media (max-width: 600px) {
  .single-post .entry-title {
    font-size: 2.1rem;
    margin-bottom: 30px;
  }
  .single-post .entry-content {
    padding: 0 15px;
  }
  .single-post .post-thumbnail img {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.single-post .entry-title {
  font-weight: 900 !important;
  font-size: 2.8rem !important;
  color: #0072ff !important;
  margin: 30px 0 40px 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  line-height: 1.1 !important;
}



