:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f5f7f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 0 0 32px;
  border-bottom: 1px solid #d9e1e5;
}

.eyebrow {
  margin: 0 0 8px;
  color: #27846f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

.subtitle {
  max-width: 760px;
  margin: 12px 0 0;
  color: #526070;
  font-size: 16px;
  line-height: 1.55;
}

.badge {
  flex: 0 0 auto;
  border: 1px solid #a8c8bf;
  border-radius: 6px;
  padding: 8px 12px;
  color: #1f6d5d;
  background: #e8f4f1;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.card {
  min-height: 172px;
  padding: 18px;
  border: 1px solid #d9e1e5;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(29, 39, 53, 0.06);
}

.card:hover {
  border-color: #27846f;
}

.card span {
  display: block;
  margin-bottom: 14px;
  color: #27846f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.card strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.card small {
  display: block;
  margin-top: 10px;
  color: #647184;
  font-size: 14px;
  line-height: 1.45;
}

.section {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid #d9e1e5;
  border-radius: 8px;
  background: #ffffff;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.section p {
  margin: 0;
  color: #526070;
  line-height: 1.55;
}

a {
  color: #1f6d5d;
  font-weight: 700;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
    padding-top: 28px;
  }

  .header {
    flex-direction: column;
  }

  h1 {
    font-size: 28px;
  }

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