/* 05 — role uczestników: nagłówek grupy odbiorców i karty z ikonami.
   Źródło: makieta style.css l. 498–534 oraz 541–548. */

.audience-section {
  padding-bottom: var(--section-space);
}
.audience {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--ai-line-strong);
}
.audience-title {
  font-size: 1.75rem;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
}
.role-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.role-card {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 94px;
  padding: 21px;
  background: var(--ai-bg-alt);
  border: 1px solid var(--ai-line-strong);
  border-radius: 4px;
}
.role-card svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--ai-rose);
}
.role-card span {
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.5;
  color: var(--ai-heading);
}
@media (max-width: 1000px) {
  .role-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .role-tags {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .role-card {
    padding: 17px 18px;
    min-height: 76px;
  }
  .audience {
    margin-top: 32px;
  }
  .audience-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
