/* Blog Post Styling */
.blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.blog-header {
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 2px solid #ddd;
}

.blog-title {
  font-family: "Anton", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
   margin-top: 5rem;
  line-height: 1.2;
  color: #000 !important;
  font-weight: normal;
}

.blog-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #666;
}

.author {
  font-weight: 600;
}

.date {
  font-style: italic;
    padding-bottom: 2rem;
}

/* Blog Content */
.blog-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

/* Images with text wrapping */
.blog-image {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.blog-image img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.blog-image figcaption {
  font-style: italic;
  padding: 0.5rem 0;
  font-size: 0.65rem;
}

/* Float images to create magazine layout */
.float-right {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
  width: 50%;
  clear: right;
}

.float-left {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
  width: 50%;
  clear: left;
}

/* Full width images */
.full-width {
  clear: both;
  width: 100%;
  margin: 2rem 0;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .blog-post {
    padding: 1rem 1rem;
  }

  .blog-title {
    font-size: 1.8rem;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* Stack images on mobile */
  .float-right,
  .float-left {
    float: none;
    width: 100%;
    margin: 1.5rem 0;
    clear: both;
  }

  .full-width {
    clear: both;
  }
}
/* Blog Navigation */
.blog-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #ddd;
}

.blog-navigation a {
  flex: 1;
  padding: 1.5rem;
  text-decoration: none;
  color: #000;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.blog-navigation a:hover {
  background-color: #e8e8e8;
}

.nav-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.nav-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.prev-post {
  text-align: left;
}

.next-post {
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-navigation {
    flex-direction: column;
    gap: 1rem;
  }

  .prev-post,
  .next-post {
    text-align: center;
  }
}