.mh-wcu {
  --mh-wcu-bg: #0b0b15;
  --mh-wcu-card: #10101d;
  --mh-wcu-border: rgba(255,255,255,.08);
  --mh-wcu-accent: #13d7f3;
  --mh-wcu-title: #f7f7fb;
  --mh-wcu-muted: #7773bd;
  background: var(--mh-wcu-bg);
  color: var(--mh-wcu-title);
  padding: clamp(64px, 7vw, 110px) 24px;
  width: 100%;
  box-sizing: border-box;
}
.mh-wcu__inner { max-width: 1240px; margin: 0 auto; }
.mh-wcu__eyebrow {
  text-align: center;
  color: var(--mh-wcu-accent);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mh-wcu__heading {
  margin: 0 0 48px;
  text-align: center;
  color: var(--mh-wcu-title);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}
.mh-wcu__grid {
  display: grid;
  grid-template-columns: repeat(var(--mh-wcu-columns, 6), minmax(0, 1fr));
  gap: 20px;
}
.mh-wcu-card {
  min-height: 168px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(16,16,29,.72);
  border: 1px solid var(--mh-wcu-border);
  border-radius: 12px;
  box-sizing: border-box;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.mh-wcu-card:hover {
  transform: translateY(-3px);
  border-color: rgba(19,215,243,.58);
  background: #0f1926;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.mh-wcu-card__icon {
  color: #f4f2ff;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 17px;
}
.mh-wcu-card:hover .mh-wcu-card__icon { color: var(--mh-wcu-accent); }
.mh-wcu-card__title {
  margin: 0 0 8px;
  color: var(--mh-wcu-title);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
}
.mh-wcu-card__description {
  margin: 0;
  color: var(--mh-wcu-muted);
  font-size: 12px;
  line-height: 1.55;
  max-width: 170px;
}
.mh-wcu-editor-item { border-top: 1px solid #ddd; padding-top: 14px; margin-top: 14px; }
.mh-wcu-editor-actions { display: flex; gap: 6px; margin-bottom: 12px; }
@media (max-width: 1100px) {
  .mh-wcu__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .mh-wcu { padding: 56px 18px; }
  .mh-wcu__heading { margin-bottom: 32px; }
  .mh-wcu__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .mh-wcu-card { min-height: 160px; padding: 20px 14px; }
}
@media (max-width: 440px) {
  .mh-wcu__grid { grid-template-columns: 1fr; }
}
