:root {
  color: #101716;
  background: #eef2ef;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.topbar {
  min-height: 82px;
  padding: 20px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  border-bottom: 1px solid #dce4df;
}

.topbar img {
  width: min(230px, 58vw);
  height: auto;
}

.topbar a,
.actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 14px;
  color: #ffffff;
  background: #176c55;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  padding: clamp(42px, 7vw, 88px) clamp(20px, 6vw, 80px) clamp(28px, 5vw, 54px);
  background: #16201d;
  color: #f8fbf8;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9fd8c3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p:last-child {
  margin: 22px 0 0;
  max-width: 780px;
  color: #c7d9d1;
  font-size: 18px;
  line-height: 1.6;
}

.program-grid {
  padding: clamp(22px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

article {
  min-height: 280px;
  border: 1px solid #d7e0db;
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(34, 45, 40, 0.08);
}

.status {
  width: fit-content;
  border-radius: 999px;
  background: #e6f5ee;
  color: #176c55;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

article h2 {
  margin: 28px 0 10px;
  font-size: 34px;
}

article p {
  margin: 0;
  color: #52615a;
  line-height: 1.6;
}

.actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.actions small {
  color: #6a7771;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }
}
