/* ------------------------------
   GLOBAL STYLES
------------------------------ */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #ffffff;
  line-height: 1.7;
}

a {
  color: #005596;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ------------------------------
   HERO HEADER (matches Why WalkerRx)
------------------------------ */
.hero {
  background: linear-gradient(135deg, #005596, #0077c8);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ------------------------------
   BLOG ARCHIVE GRID
------------------------------ */
.blog-archive {
  padding: 60px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}

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

.blog-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.blog-card .meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

.blog-card p {
  margin-bottom: 15px;
}

/* ------------------------------
   SINGLE POST
------------------------------ */
.single-post {
  padding: 60px 0;
}

.single-post h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.single-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 30px;
}

.single-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 25px 0;
}

.single-content h2,
.single-content h3 {
  margin-top: 35px;
  margin-bottom: 10px;
  color: #005596;
}

.single-content p {
  margin-bottom: 18px;
}

.back-link {
  margin-top: 40px;
  display: inline-block;
  font-weight: 600;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 700px) {
  .hero h1 {
    font-size: 2rem;
  }
}