/*
 * page-healthcare-entrepreneur-meetup.css
 * Loaded only on the Healthcare Entrepreneur Meetup landing page
 * (page-healthcare-entrepreneur-meetup.php).
 *
 * Card grid rules mirror page-blog.css's .posts-grid/.post-card/.blog-pagination
 * so this page reads as part of the same design system as /blog/.
 */

/* ── breadcrumb ───────────────────────────────────────────────────── */
.hem-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}
.hem-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.hem-breadcrumbs a:hover { color: white; }

/* ── section-label / section-title (same fix as page-blog.css) ──────── */
.section-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
  gap: 0;
}
.section-label::after { display: none; }
.section-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

/* ── page-hero (same reset as page-blog.css) ─────────────────────────── */
.page-hero {
  display: block;
  padding-top: 72px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  min-height: 0;
  border-bottom: none;
  overflow: visible;
  position: static;
}
.page-hero-inner {
  display: block;
  grid-template-columns: initial;
  gap: initial;
  align-items: initial;
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 56px 64px;
}
.av-page-hem .page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.av-page-hem .page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}

/* ── page-chip ────────────────────────────────────────────────────── */
.page-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 132, 197, 0.15);
  color: #6eb3e8;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 132, 197, 0.25);
}
.page-chip span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6eb3e8;
}

/* ── section wrapper ──────────────────────────────────────────────── */
.av-page-hem .section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 56px;
}

/* ── posts grid / cards (same as page-blog.css .posts-grid/.post-card) ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.post-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 132, 197, 0.08);
}
.post-card-img {
  height: 140px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.post-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-body { padding: 18px 20px 20px; }
.post-card-body h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.35;
}
.post-card-body p {
  font-size: 0.73rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 300;
}
.post-card-meta { font-size: 0.65rem; color: var(--gray); }

/* ── pagination (same as page-blog.css .blog-pagination) ─────────────── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blog-page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 7px;
  border: 1.5px solid var(--border);
  background: white;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-page-btn:hover { border-color: var(--blue); color: var(--blue); }
.blog-page-btn.active { background: var(--blue); border-color: var(--blue); color: white; }
.blog-page-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.blog-page-dots {
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 2px;
  color: var(--gray);
  font-size: 0.72rem;
  font-weight: 500;
  user-select: none;
}

/* ── responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-hero-inner,
  .av-page-hem .section { padding-left: 20px; padding-right: 20px; }
  .posts-grid { grid-template-columns: 1fr; }
}
