/* Vision, mission and values on the home page.
   Built as text rather than a picture, so it can be read by search engines,
   translated, and resized on a phone. Colours are taken from the artwork NJK
   supplied, which already match the site palette. */

.vision-mission {
  padding: 60px 0 20px;
}

.vm-card {
  border: 1px solid #e6e9e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  background: #fff;
}

.vm-card__head {
  background: #e8762d;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  margin: 0;
}

.vm-card__body {
  padding: 26px 24px 30px;
  text-align: center;
}

.vm-card__body p {
  color: #144e2a;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

/* the seven values, as rings matching the artwork */
.values-ring-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 10px;
}

.value-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 11px solid #144e2a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background: #fff;
}

.value-ring:nth-child(even) {
  border-color: #f2a33c;
}

.value-ring span {
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
  line-height: 1.3;
}

@media (max-width: 575px) {
  .value-ring { width: 128px; height: 128px; border-width: 9px; }
  .value-ring span { font-size: 13px; }
  .values-ring-grid { gap: 18px; }
  .vm-card__body p { font-size: 16px; }
}
