.doc--mission {
  max-width: 800px;
}

.doc__figure {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f3faf4;
}

.doc__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.doc__figure figcaption {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--border);
}

.doc__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.doc__pillar {
  padding: 18px 16px;
  border-radius: 12px;
  background: #f3faf4;
  border: 1px solid var(--border);
}

.doc__pillar strong {
  display: block;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.doc__pillar span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.doc__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.doc__cta a {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.doc__cta a:first-child {
  background: var(--green);
  color: #fff;
}

.doc__cta a:first-child:hover {
  background: var(--green-dark);
}

.doc__cta a:not(:first-child) {
  background: #fff;
  color: var(--green-dark);
  border: 1px solid var(--border);
}

.doc__cta a:not(:first-child):hover {
  background: #f3faf4;
}

.mission-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.mission-team__card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 4px 18px rgba(30, 60, 40, 0.06);
}

.mission-team__photo {
  background: #e8f5e9;
  line-height: 0;
}

.mission-team__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.mission-team__caption {
  padding: 14px 16px 16px;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--border);
}

.mission-team__name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.mission-team__role {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.4;
}

@media (max-width: 700px) {
  .doc__pillars {
    grid-template-columns: 1fr;
  }

  .mission-team {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }
}
