/*------------------------------
  -----------------------------------SINGLE POST TEMPLATE
------------------------------*/

.single-post .container {
  background: #fff url('assets/images/dev-preview-bg.png') repeat;
  background-size: contain;
  border-radius: 10px;
  padding: 3rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #222;
/*
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #222;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
*/
}

.single-post .post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.single-post .post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
  animation: fadeInUp 0.8s ease both;
}

.single-post .post-meta {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

.single-post .post-featured-image {
  margin: 2rem 0;
  text-align: center;
}

.single-post .post-featured-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.single-post .post-content {
  margin-top: 2rem;
}

.single-post .post-content h2,
.single-post .post-content h3 {
  margin-top: 2.5rem;
  color: #333;
}

.single-post .post-footer {
  margin-top: 4rem;
  border-top: 1px solid #e1e1e1;
  padding-top: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-nav a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.post-nav a:hover {
  color: #000;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}