.blog-header {
  text-align: center;
  padding: 4rem 0 2rem;
}
.blog-header h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0 4rem;
}
.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.2s;
}
.article-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.article-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.article-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.read-more:hover {
  gap: 0.8rem;
}

/* Navigation Styles */
.blog-logo {
  text-decoration: none;
}

.blog-logo-img {
  height: 40px;
  width: 50px;
  vertical-align: middle;
}

.blog-back-home {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.lang-switcher a {
  text-decoration: none;
  color: var(--text-muted);
  opacity: 0.7;
}

.lang-switcher a.active {
  font-weight: 800;
  text-decoration: underline;
  color: var(--primary);
  opacity: 1;
}

.blog-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.article-link {
  text-decoration: none;
  color: inherit;
}

/* Article Link - Index pages */
.article-link {
  text-decoration: none;
  color: inherit;
}

/* Blog Footer Container */
.blog-footer-container {
  text-align: center;
}

/* Button Margin Top */
.btn-margin-top {
  margin-top: 2rem;
}

a {
  text-decoration: none;
  color: pink;
}
