    /* Links wrapping the whole card */
.card-link {
  text-decoration: none;
  color: inherit;
}

/* Card container + per-card margins (kept EXACT) */
.image-block {
  text-align: center;
  max-width: 320px;
  margin: 30px auto; /* default; used by Kenya */
}

/* Image + play button overlay */
.image-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Headings & text */
.image-block h2 { margin-top: 10px; }
.h2-pink { color: #cc3366; }
.h3-green { color: #88B432; }
.image-block p { color: #0A3365; }
.read-more {
  color: #0066cc;
  text-decoration: underline;
}

/* Navigation */
.nav {
  text-align: center;
  margin: 20px 0;
}
.btn {
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.btn--back {
  background: #88B432;
  margin-right: 6px;
}
.btn--next {
  background: #cc3366;
}

