/* Static customer-portal presentation */
.portal-showcase { position: relative; margin-top: 64px; padding-inline: 160px; }
.portal-showcase .browser-frame { max-width: 720px; margin-inline: auto; }
.portal-callout { position: absolute; width: 180px; padding-left: 18px; color: var(--muted); font-size: 12px; }
.portal-callout::before { content: ""; position: absolute; top: 8px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(37, 99, 255, .14); }
.portal-callout strong { display: block; margin-bottom: 5px; color: var(--ink); font-size: 13px; }
.portal-callout-one { top: 22%; left: 0; }
.portal-callout-two { top: 50%; right: 0; }
.portal-callout-three { bottom: 10%; left: 0; }

@media (max-width: 900px) {
  .portal-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-inline: 0; }
  .portal-showcase .browser-frame { grid-column: 1 / -1; }
  .portal-callout { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: auto; }
}

@media (max-width: 560px) {
  .portal-showcase { grid-template-columns: 1fr; }
  .portal-callout { grid-column: 1; }
}
