/* EIC Text Feature Card — widget.css */
.eic-text-feature-card-widget{
  /* Design tokens */
  --eic-tfc-radius: 18px;
  --eic-tfc-bg: #ffffff;
  --eic-tfc-text: #0f172a;         /* slate-900 */
  --eic-tfc-muted: #64748b;        /* slate-500/600 */
  --eic-tfc-strong: #374151;       /* slate-700 */
  --eic-tfc-border: rgba(2,6,23,.06);
  --eic-tfc-shadow: 0 12px 36px rgba(2,6,23,.12);
  --eic-tfc-accent: #0067ed;
  --eic-tfc-divider: rgba(2,6,23,.08);
  --eic-tfc-height: auto;

  position: relative;
  background: var(--eic-tfc-bg);
  border: 1px solid var(--eic-tfc-border);
  border-radius: var(--eic-tfc-radius);
  box-shadow: var(--eic-tfc-shadow);
  color: var(--eic-tfc-text);
  min-height: var(--eic-tfc-height);
  overflow: hidden;
}

.eic-text-feature-card-widget .eic-tfc-accent{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 0;
  height: 18px;
  background: var(--eic-tfc-accent);
}

.eic-text-feature-card-widget .eic-tfc-inner{
  padding: 28px 28px 24px;
}

.eic-text-feature-card-widget .eic-tfc-title{
  margin: 10px auto 8px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.15;
  letter-spacing: .2px;
}

.eic-text-feature-card-widget .eic-tfc-divider{
  width: 90%;
  height: 2px;
  margin: 10px auto 18px;
  background: var(--eic-tfc-divider);
  border-radius: 2px;
}

.eic-text-feature-card-widget .eic-tfc-content{
  color: var(--eic-tfc-muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.85;
}

.eic-text-feature-card-widget .eic-tfc-content p{
  margin: 0 0 14px 0;
}

.eic-text-feature-card-widget .eic-tfc-content strong,
.eic-text-feature-card-widget .eic-tfc-content b{
  color: var(--eic-tfc-strong);
  font-weight: 700;
}

/* Responsive petits écrans */
@media (max-width: 640px){
  .eic-text-feature-card-widget .eic-tfc-inner{
    padding: 24px 18px 20px;
  }
  .eic-text-feature-card-widget .eic-tfc-accent{
    left: 14px; right: 14px; height: 20px; top: -9px;
  }
}
