#single-post-main {
  width: 80%;
  margin: 120px auto 20px auto;
  padding: 0 20px;

  border-radius: 10px;
  border: 5px dashed #ccc;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

  margin-bottom: 100px;
}

.single-post-card {
  padding: 30px;
}

.post-header {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.single-news-card-image {
  width: 80px;
}

.post-title {
  font-size: 2.5rem;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.post-meta {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-meta time {
  font-weight: bold;
}

.post-meta .post-categories .category-tag {
  color: var(--navy);
  text-decoration: none;
  background-color: #e0f2f7;
  padding: 1px 8px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 5px;
}

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.post-content p {
  margin-bottom: 1em;
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-content ul,
.post-content ol {
  margin-left: 20px;
  margin-bottom: 1em;
}

.post-content li {
  margin-bottom: 0.5em;
}

.post-footer {
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.post-navigation a {
  color: var(--navy);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  transition: color 0.3s, color 0.3s;
}

.post-navigation a:hover {
  color: var(--orange);
}

.no-posts-found {
  text-align: center;
  padding: 50px;
  color: #666;
  font-size: 1.2rem;
}