/* ═══ BLOG POST LAYOUT ═══ */
.blog-post { padding: 48px 0 72px; background: var(--white); }
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

/* ═══ MAIN CONTENT ═══ */
.blog-main { min-width: 0; }

.blog-header { margin-bottom: 40px; }
.blog-header h1 {
  font-family: 'CoHeadline', sans-serif;
  font-size: 38px; font-weight: 700;
  color: var(--ah-navy); line-height: 1.2;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 13px; color: #888;
  margin-bottom: 20px; display: flex;
  align-items: center; gap: 8px;
}
.blog-meta .blog-date { color: var(--ah-blue); font-weight: 700; }
.blog-meta .blog-meta-sep { color: #ccc; }
.blog-meta .blog-cats { color: var(--ah-green); font-weight: 700; }

.blog-intro { margin-bottom: 28px; }
.blog-intro p {
  font-size: 16px; color: var(--text-body);
  line-height: 1.8; margin-bottom: 14px;
}

.blog-featured-image {
  margin-bottom: 36px; border-radius: 12px; overflow: hidden;
}
.blog-featured-image img {
  width: 100%; height: auto; display: block;
}

/* ═══ CONTENT BLOCKS ═══ */
.content-block { margin-bottom: 36px; }
.content-block h2, .content-block h2 p {
  font-family: 'CoHeadline', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--ah-navy); line-height: 1.25;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ah-green);
}
.content-block p {
  font-size: 15px; color: var(--text-body);
  line-height: 1.8; margin-bottom: 12px;
}
.content-block ul {
  list-style: none; padding: 0; margin: 12px 0 16px;
}
.content-block ul li {
  font-size: 15px; color: var(--text-body);
  line-height: 1.75; padding: 3px 0 3px 20px;
  position: relative;
}
.content-block ul li::before {
  content: '•'; color: var(--ah-green);
  font-weight: 700; position: absolute; left: 0;
}
.content-block .blog-image {
  margin: 20px 0; border-radius: 8px; overflow: hidden;
}
.content-block .blog-image img {
  width: 100%; height: auto; display: block;
}

/* ═══ SUB-SECTIONS ═══ */
.content-sub-section { margin: 24px 0; }
.content-sub-section h3 {
  font-family: 'CoHeadline', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--ah-navy); line-height: 1.3;
  margin-bottom: 12px;
}

/* ═══ SIDEBAR ═══ */
.blog-sidebar {
  position: sticky; top: 80px;
}

.sidebar-widget {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-title {
  font-family: 'CoHeadline', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--ah-navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ah-blue);
}

/* Latest Posts */
.sidebar-posts { list-style: none; padding: 0; margin: 0; }
.sidebar-post-item {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #dde3ea;
}
.sidebar-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post-item:first-child { padding-top: 0; }

.sidebar-post-thumb {
  flex-shrink: 0; width: 64px; height: 64px;
  border-radius: 8px; overflow: hidden;
}
.sidebar-post-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

.sidebar-post-info { display: flex; flex-direction: column; justify-content: center; }
.sidebar-post-title {
  font-size: 13px; font-weight: 700;
  color: var(--ah-navy); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  text-decoration: none;
}
.sidebar-post-title:hover { color: var(--ah-green); }
.sidebar-post-date { font-size: 12px; color: #888; margin-top: 4px; }

/* Categories */
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories li {
  border-bottom: 1px solid #dde3ea;
}
.sidebar-categories li:last-child { border-bottom: none; }
.sidebar-categories a {
  display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0;
  font-size: 14px; font-weight: 700;
  color: var(--ah-navy); text-decoration: none;
  transition: color 0.2s;
}
.sidebar-categories a:hover { color: var(--ah-green); }
.sidebar-categories .cat-count {
  background: var(--ah-blue); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 50px;
  min-width: 24px; text-align: center;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-header h1 { font-size: 26px; }
  .content-block h2 { font-size: 22px; }
  .content-sub-section h3 { font-size: 18px; }
  .blog-sidebar { position: static; }
}
