@charset "UTF-8";
/* "Demos work. Real calls don't." — Figma "VIVA 2.5 LP / Desktop 1440".
   Three cards, each closing with an animated waveform that dramatises the
   failure mode described above it. */
.agent_breaks {
  padding: 120px 0;
  background: #ffffff;
}
.agent_breaks * {
  color: inherit;
}
.agent_breaks__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #614efa;
}
.agent_breaks__title {
  margin: 16px 0 0;
  font-family: "Plus Jakarta Sans";
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a22;
}
.agent_breaks__subtitle {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #434351;
}
.agent_breaks__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 56px;
}
.agent_breaks__card {
  display: flex;
  flex-direction: column;
  min-height: 332px;
  padding: 40px;
  border-radius: 20px;
  background: #f7f7f8;
}
.agent_breaks__card-title {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #1a1a22;
}
.agent_breaks__card-desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #434351;
}
.agent_breaks__card-visual {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-height: 96px;
  margin-top: 24px;
}

/* The visuals are self-contained animated SVGs. */
.ab_vis {
  display: block;
  width: 100%;
  max-width: 307px;
  aspect-ratio: 307/96;
  border: 0;
  pointer-events: none;
}

@media screen and (max-width: 1100px) {
  .agent_breaks__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 760px) {
  .agent_breaks__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }
  .agent_breaks__card {
    min-height: 0;
  }
}
@media screen and (max-width: 768px) {
  .agent_breaks {
    padding: 72px 0;
  }
  .agent_breaks__title {
    font-size: 32px;
    line-height: 40px;
  }
  .agent_breaks__subtitle {
    font-size: 15px;
  }
  .agent_breaks__cards {
    margin-top: 40px;
  }
  .agent_breaks__card {
    padding: 28px 24px;
  }
  .agent_breaks__card-visual {
    margin-top: 32px;
    min-height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .agent_breaks__title {
    font-size: 26px;
    line-height: 34px;
  }
}
