@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Manrope:wght@500;600;700&display=swap');

:root {
  --green: #0e9b72;
  --green-dark: #0b7b5a;
  --green-soft: #d7efe6;
  --ink: #0b1b15;
  --muted: #667279;
  --card: #ffffff;
  --bg: #f3f6f4;
  --shadow: 0 12px 30px rgba(6, 24, 17, 0.07);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Cairo', 'Manrope', system-ui, sans-serif;
}

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

.conditions-shell {
  padding: 40px 24px 64px;
  max-width: 1200px;
  margin: auto;
}

.page-header-block {
  margin-bottom: 28px;
}

.page-header-block h1 {
  margin: 6px 0 12px;
  font-size: 32px;
}

.page-header-block .lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

.breadcrumb a {
  color: var(--green-dark);
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.condition-card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.condition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(6, 24, 17, 0.12);
}

.condition-card h3 {
  margin: 0;
  font-size: 20px;
}

.condition-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.hero-block {
  background: linear-gradient(135deg, #0b1324, #0f2833);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-block h1 {
  margin: 0 0 10px;
  font-size: 28px;
}

.hero-block p {
  margin: 0;
  color: #e2e8ec;
}

.content-section {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.content-section p {
  margin: 0 0 10px;
  line-height: 1.7;
  color: var(--muted);
}

.content-section ul,
.content-section ol {
  margin: 0 0 12px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.content-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  margin: 8px 0 0;
}

.image-stack {
  display: grid;
  gap: 12px;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  font-weight: 700;
}

@media (max-width: 640px) {
  .conditions-shell {
    padding-inline: 16px;
  }

  .page-header-block h1,
  .hero-block h1 {
    font-size: 24px;
  }
}
