.follow { background: var(--wfp-light); }

.follow-hd {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 4rem; flex-wrap: wrap; margin-bottom: 3.5rem;
}
.follow-sub { max-width: 480px; }

/* OCHA-style circular icon row */
.follow-icons {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  justify-content: center; width: 100%;
}

.follow-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--wfp-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--wfp-blue);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  flex-shrink: 0;
}
.follow-btn:hover {
  background: var(--wfp-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.follow-btn svg { width: 18px; height: 18px; fill: currentColor; display: block; }

@media (max-width: 768px) {
  .follow-hd { flex-direction: column; gap: 1.5rem; }
}
