/* Blog styles */
/* Mining Navigation Styles */

.post-meta {
  display: none;
}

.blks-header.blks-header-dark {
  background-color: #121212;
  border-bottom: 1px solid #222;
  margin-bottom: 1rem;
}

.blks-header .section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.blks-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.blks-header .logo img {
  height: 32px;
  margin-right: 10px;
}

.blks-header .logo-text {
  color: #f00056;
  font-weight: bold;
  font-size: 18px;
}

.blks-header .nav-items {
  display: flex;
}

.blks-header .nav-item {
  padding: 0.5rem 1rem;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.blks-header .nav-item:hover {
  color: #fff;
}

.blks-header .nav-item.active {
  color: #f00056;
  font-weight: 600;
  border-bottom: 2px solid #f00056;
}

@media (max-width: 768px) {
  .blks-header .section-wrapper {
    flex-direction: column;
    padding: 1rem;
  }
  
  .blks-header .logo {
    margin-bottom: 1rem;
  }
  
  .blks-header .nav-items {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 0.5rem;
  }
  
  .blks-header .nav-item {
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
  }
}

/* Blog Content Styles */
.blog-content {
  background-color: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-top: 10rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 2rem 2rem;
}

.blog-content h1 {
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Blog post header styles */
article header {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}

article header h1 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

/* Featured Post */
.featured-post {
  display: flex;
  margin: 3rem 0;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
}

.featured-post.single-column {
  display: block;
  max-width: 800px;
  margin: 3rem auto;
}

.featured-post-content {
  flex: 1;
  padding: 2rem;
}

.single-column .featured-post-content {
  padding: 3rem;
}

.featured-post-image {
  flex: 1;
  position: relative;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-title {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-decoration: none;
  display: block;
}

.featured-post-title:hover {
  color: #3a97ff;
}

.featured-post-meta {
  color: #888;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.featured-post-excerpt {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Blog Grid */
.section-title {
  font-size: 2rem;
  margin: 3rem 0 2rem;
  color: #fff;
}

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

.blog-card {
  background-color: #222;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card-placeholder {
  background-color: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border: 2px dashed #333;
}

.card-placeholder-content {
  text-align: center;
}

.post-category {
  display: inline-block;
  background-color: #3a97ff;
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.card-title {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-decoration: none;
  display: block;
}

.card-title:hover {
  color: #3a97ff;
}

.card-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-excerpt {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.read-more {
  color: #3a97ff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #5babff;
  text-decoration: underline;
}

/* Post divider */
.post-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #444, transparent);
  margin: 3rem 0;
}

/* Social Section */
.social-section {
  text-align: center;
  margin: 3rem 0 1rem;
}

.social-section h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background-color: #3a97ff;
  color: #fff;
}

/* Override any conflicting styles with higher specificity */
article .post-content {
  max-width: 800px !important;
  margin: 0 auto !important;
  line-height: 1.8 !important;
  font-size: 18px !important;
  color: #f5f5f5 !important;
}

article .post-content p {
  margin-bottom: 1.75rem !important;
  color: #f5f5f5 !important;
}

article .post-content strong {
  color: #fff !important;
  font-weight: 600 !important;
}

/* Post content list styling */
article .post-content ul {
  margin: 2rem 0 2rem 2rem !important;
  list-style-type: disc !important;
}

article .post-content ul li {
  margin-bottom: 1.2rem !important;
  padding-left: 0.5rem !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #f5f5f5 !important;
}

article .post-content ol {
  margin: 2rem 0 2rem 2rem !important;
  list-style-type: decimal !important;
}

article .post-content ol li {
  margin-bottom: 1.2rem !important;
  padding-left: 0.5rem !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #f5f5f5 !important;
}

article .post-content a {
  color: #3a97ff !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

article .post-content a:hover {
  color: #5babff !important;
  text-decoration: underline !important;
}

/* Blog index page styling */
.blog-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.blog-content ul li {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.blog-content ul li a {
  color: #3a97ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.blog-content ul li a:hover {
  color: #5babff;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-content {
    margin-top: 0;
    padding: 1.5rem;
  }
  
  .blog-content h1 {
    font-size: 2.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  .featured-post {
    flex-direction: column;
  }
  
  .featured-post-image {
    height: 200px;
  }
  
  .featured-post-title {
    font-size: 1.8rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
} 