.edc-resp {
  padding: var(--edc-section-v) var(--edc-space-gutter);
  background: var(--edc-cream);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .edc-resp { padding-left: var(--edc-section-h); padding-right: var(--edc-section-h); }
}
.edc-resp__inner { max-width: var(--edc-container); margin: 0 auto; }

.edc-resp__head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.edc-resp__headline {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: var(--edc-fs-headline-lg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--edc-obsidian);
  margin: 0 0 20px 0;
}
.edc-resp__headline em { font-style: normal; color: var(--edc-solar-gold); }
.edc-resp__subhead {
  font-family: var(--edc-font-body);
  font-size: var(--edc-fs-body-lead);
  line-height: 1.75;
  color: var(--edc-slate);
  margin: 0;
}

.edc-resp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (min-width: 768px) { .edc-resp__grid { grid-template-columns: 1fr 1fr; } }

/* Column heads — icon + title, with an accent underline */
.edc-resp__col-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(211, 197, 172, 0.5);
}
.edc-resp__col--educo .edc-resp__col-head { border-bottom-color: var(--edc-solar-gold); }
.edc-resp__col-head .material-symbols-outlined { font-size: 40px !important; color: var(--edc-obsidian); }
.edc-resp__col-head h3 {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--edc-obsidian);
  margin: 0;
}
.edc-resp__col-head h3 em { font-style: normal; color: var(--edc-solar-gold); }

.edc-resp__rows { display: flex; flex-direction: column; gap: 16px; }
.edc-resp__row {
  background: var(--edc-warm-white);
  border: 1px solid var(--edc-border);
  border-radius: var(--edc-radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--edc-shadow-sm);
}
.edc-resp__col--client .edc-resp__row {
  background: rgba(250, 248, 244, 0.5);
  border-color: rgba(224, 221, 216, 0.5);
  box-shadow: none;
}

.edc-resp__num {
  font-family: var(--edc-font-heading);
  font-weight: 800;
  font-size: 28px;
  width: 48px;
  text-align: center;
  flex-shrink: 0;
}
.edc-resp__col--educo  .edc-resp__num { color: var(--edc-solar-gold); }
.edc-resp__col--client .edc-resp__num { color: var(--edc-slate); }

.edc-resp__chip {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 4px;
  border-radius: var(--edc-radius-full);
  font-family: var(--edc-font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--edc-obsidian);
}
.edc-resp__col--educo  .edc-resp__chip { background: rgba(249, 214, 116, 0.30); }
.edc-resp__col--client .edc-resp__chip { background: #eae8e4; color: var(--edc-slate); }

.edc-resp__row p {
  font-family: var(--edc-font-body);
  font-size: var(--edc-fs-body);
  line-height: 1.75;
  color: var(--edc-slate);
  margin: 0;
}
