/* Visual elements scoped to the inAgentik overview article. */
.ia-brand-map .ia-brand-map__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.ia-brand-map a.ia-brand-map__card {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 5px 12px;
  padding: 18px;
  border: 1px solid rgba(166, 204, 238, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.ia-brand-map__card:last-child { grid-column: 1 / -1; }
.ia-brand-map a.ia-brand-map__card:hover {
  background: rgba(115, 208, 234, 0.12);
  border-color: #73d0ea;
}
.ia-brand-map__icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(115, 208, 234, 0.12);
  color: #70ddf6;
}
.ia-brand-map__card:nth-child(even) .ia-brand-map__icon {
  background: rgba(152, 120, 218, 0.16);
  color: #c4b2f2;
}
.ia-brand-map__icon svg { width: 24px; height: 24px; }
.ia-brand-map__name { display: flex; justify-content: space-between; gap: 8px; font-size: 19px; font-weight: 700; line-height: 1.3; }
.ia-brand-map__name > span { color: #73d0ea; font-weight: 400; }
.ia-brand-map__label { color: #b9cbdd; font-size: 12px; line-height: 1.4; }
.ia-brand-map__description { grid-column: 1 / -1; margin-top: 8px; color: #d1deeb; font-size: 14px; line-height: 1.6; }
.ia-operation-flow { margin: 24px 0; padding: 22px 16px; border: 1px solid #dfe7f1; border-radius: 14px; background: #fff; }
.ia-operation-flow > p { display: flex; justify-content: space-between; align-items: center; gap: 6px; margin: 0; }
.ia-operation-flow__step { display: flex; flex-direction: column; align-items: center; gap: 10px; color: #0b1b2d; font-size: 14px; font-weight: 700; }
.ia-operation-flow__number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #e8f7fc; color: #12637b; font-size: 12px; }
.ia-operation-flow__step:nth-of-type(4n + 1) .ia-operation-flow__number { background: #f0ecfa; color: #65509a; }
.ia-operation-flow__arrow { color: #71869b; }
.ia-article__content ul.ia-integration-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; padding: 0; list-style: none; }
.ia-article__content ul.ia-integration-chips li { margin: 0; padding: 10px 14px; border: 1px solid #dfe7f1; border-radius: 8px; background: #fff; color: #344e65; font-size: 14px; }
@media (max-width: 640px) {
  .ia-brand-map .ia-brand-map__grid { grid-template-columns: minmax(0, 1fr); }
  .ia-operation-flow > p { flex-direction: column; gap: 8px; }
  .ia-operation-flow__step { flex-direction: row; width: 150px; gap: 16px; }
  .ia-operation-flow__arrow { transform: rotate(90deg); }
}
@media (prefers-reduced-motion: reduce) {
  .ia-brand-map a.ia-brand-map__card { transition: none; }
}
