.blog-header {
    text-align: center;
    padding: 60px 0;
}
  .blog-header h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
  }
  .blog-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  .search-bar-container {
    margin-top: 30px;
  }
  #search-bar {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid var(--card-border);
    background-color: var(--card-bg);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
  }
  #search-bar:focus {
    border-color: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.2);
  }
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-light);
}
  .featured-post-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
  }
  .featured-post-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .featured-post-content h2 a {
    text-decoration: none;
    color: var(--text-primary);
  }
  .featured-post-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 0;
  }
  .blog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
  .blog-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 10px 0;
  }
  .blog-card .date {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
  }
  .blog-card .description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
  }
  .read-more {
    color: var(--teal-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
.read-more:hover {
    color: var(--accent-light);
}

/* Responsive Adjustments for Blog Page */
@media (max-width: 992px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    .blog-header p {
        font-size: 1rem;
    }
    .featured-post {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    .featured-post-content h2 {
        font-size: 1.8rem;
    }
    .featured-post-content p {
        font-size: 1rem;
    }
    .blog-grid {
        gap: 25px;
    }
    .blog-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    .featured-post-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-header h1 {
        font-size: 1.8rem;
    }
    .featured-post {
        padding: 20px;
    }
    .blog-card h2 {
        font-size: 1.2rem;
    }
}
