/* Blog Styles */
.blog-main {
  margin-top: 100px;
  padding-bottom: 6rem;
}

.blog-header {
  background-color: var(--dark-grey);
  padding: 4rem 0 3rem;
  text-align: center;
  margin-bottom: 4rem;
}

.blog-header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.blog-header p {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: var(--light-grey);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog List Page */
.blog-list {
  padding: 2rem 0;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.blog-card {
  background-color: var(--dark-grey);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blog-card-content {
  padding: 2rem;
}

.blog-date {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--light-grey);
  display: block;
  margin-bottom: 1rem;
}

.blog-post-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-post-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-post-title a:hover {
  color: var(--green);
}

.blog-excerpt {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--light-grey);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.read-more:hover {
  opacity: 0.8;
}

/* Blog Post Page */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 3rem;
}

.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-date,
.blog-post-author {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: var(--light-grey);
}

.blog-post-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.blog-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-tag {
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  background-color: rgba(10, 228, 124, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.blog-post-content {
  font-family: "Poppins", sans-serif;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.blog-post-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin: 2.5rem 0 1.5rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
  color: var(--light-grey);
}

.blog-post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-blog {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-to-blog:hover {
  color: var(--green);
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-posts {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-main {
    margin-top: 80px;
  }
  
  .blog-header {
    padding: 3rem 0 2rem;
  }
  
  .blog-header h1 {
    font-size: 2.5rem;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .blog-post-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .blog-main {
    margin-top: 70px;
  }
  
  .blog-header {
    padding: 2.5rem 0 1.5rem;
  }
  
  .blog-header h1 {
    font-size: 2rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .blog-post-content h2 {
    font-size: 1.5rem;
  }
} 