.sla-page {
  overflow: hidden;
  background: var(--bg);
}

.sla-gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sla-hero {
  min-height: 720px;
  display: flex;
  align-items: center;
}

.sla-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.sla-hero__content {
  max-width: 620px;
}

.sla-hero__content h1 {
  font-size: clamp(42px, 5.2vw, 64px);
}

.sla-hero__content .lead {
  max-width: 58ch;
}

.sla-hero__content .lead strong {
  color: var(--fg);
  font-weight: 600;
}

.sla-hero__content .btn svg {
  width: 16px;
  height: 16px;
}

.sla-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--fg-tertiary);
  font-size: 12px;
  list-style: none;
}

.sla-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sla-hero__trust li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .1);
}

.sla-monitor {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, .92);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 28px 80px rgba(37, 99, 235, .14), var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.sla-monitor::before {
  content: '';
  position: absolute;
  inset: 43px 0 36px;
  background-image:
    linear-gradient(rgba(37, 99, 235, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.sla-monitor__head,
.sla-monitor__foot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 43px;
  padding: 0 18px;
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sla-monitor__head {
  border-bottom: 1px solid var(--border);
  background: rgba(248, 250, 251, .84);
}

.sla-monitor__window {
  display: flex;
  gap: 5px;
}

.sla-monitor__window i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #86efac;
}

.sla-monitor__window i:first-child {
  background: #fca5a5;
}

.sla-monitor__window i:nth-child(2) {
  background: #fde68a;
}

.sla-monitor__status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  color: #15803d;
}

.sla-monitor__status i,
.sla-monitor__foot i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .1);
}

.sla-monitor__body {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.sla-monitor__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.sla-monitor__title span {
  display: block;
  margin-bottom: 7px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.sla-monitor__title strong {
  font-size: 21px;
  letter-spacing: -.02em;
}

.sla-monitor__score {
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.06em;
}

.sla-monitor__score small {
  margin-left: 2px;
  color: var(--primary);
  font-size: .45em;
  letter-spacing: 0;
}

.sla-monitor__chart {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 4px;
  height: 118px;
  margin: 30px 0 12px;
  padding-top: 18px;
  border-bottom: 1px solid var(--border);
  align-items: end;
}

.sla-monitor__chart i {
  display: block;
  min-height: 75%;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #22c55e, #86efac);
  opacity: .88;
}

.sla-monitor__chart i:nth-child(3n) {
  height: 88%;
}

.sla-monitor__chart i:nth-child(4n) {
  height: 94%;
}

.sla-monitor__chart i:nth-child(5n) {
  height: 82%;
}

.sla-monitor__chart i.is-warning {
  height: 52%;
  min-height: 0;
  background: linear-gradient(180deg, #f59e0b, #fde68a);
}

.sla-monitor__legend {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg-tertiary);
  font-size: 10px;
}

.sla-monitor__legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.sla-monitor__legend span i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #22c55e;
}

.sla-monitor__legend span:nth-child(2) i {
  background: #f59e0b;
}

.sla-monitor__legend em {
  margin-left: auto;
  font-style: normal;
}

.sla-monitor__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.sla-monitor__metrics > div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(248, 250, 251, .88);
}

.sla-monitor__metrics span,
.sla-monitor__metrics strong {
  display: block;
}

.sla-monitor__metrics span {
  margin-bottom: 5px;
  color: var(--fg-tertiary);
  font-size: 10px;
}

.sla-monitor__metrics strong {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: -.03em;
}

.sla-monitor__metrics small {
  color: var(--fg-tertiary);
  font-size: 8px;
  letter-spacing: .04em;
}

.sla-monitor__foot {
  grid-template-columns: 1fr auto;
  min-height: 36px;
  border-top: 1px solid var(--border);
  background: rgba(248, 250, 251, .84);
}

.sla-monitor__foot span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #15803d;
}

.sla-proof {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(248, 250, 251, .84);
}

.sla-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sla-proof__grid > div {
  padding: 26px 28px;
  border-right: 1px solid var(--border);
}

.sla-proof__grid > div:first-child {
  padding-left: 0;
}

.sla-proof__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.sla-proof strong,
.sla-proof span {
  display: block;
}

.sla-proof strong {
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1.3;
}

.sla-proof span {
  margin-top: 4px;
  color: var(--fg-tertiary);
  font-size: 12px;
}

.sla-agreement {
  padding-top: clamp(72px, 9vw, 112px);
}

.sla-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.sla-sidebar {
  position: sticky;
  top: 96px;
}

.sla-sidebar h2 {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.35;
}

.sla-sidebar > p:not(.eyebrow) {
  color: var(--fg-secondary);
  font-size: 14px;
}

.sla-sidebar__nav {
  margin: 28px 0 22px;
  border-top: 1px solid var(--border);
}

.sla-sidebar__nav a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg-secondary);
  font-size: 13px;
}

.sla-sidebar__nav a:hover {
  color: var(--primary);
}

.sla-sidebar__nav span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
}

.sla-text-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.sla-text-link span {
  display: inline-block;
  transition: transform .2s ease;
}

.sla-text-link:hover span {
  transform: translateX(4px);
}

.sla-main {
  min-width: 0;
}

.sla-content-section {
  scroll-margin-top: 90px;
  margin-bottom: clamp(64px, 8vw, 96px);
}

.sla-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.sla-section-heading .eyebrow {
  margin-bottom: 7px;
}

.sla-section-heading h2 {
  font-size: clamp(25px, 3vw, 32px);
}

.sla-section-heading__note {
  padding-bottom: 4px;
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .03em;
  white-space: nowrap;
}

.sla-prose {
  max-width: 68ch;
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.sla-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.sla-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 13px;
}

.sla-table th,
.sla-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.sla-table th {
  background: var(--surface);
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.sla-table tbody tr:last-child td {
  border-bottom: 0;
}

.sla-table tbody tr {
  transition: background .2s ease;
}

.sla-table tbody tr:hover {
  background: var(--surface);
}

.sla-table tbody tr.is-success {
  background: rgba(34, 197, 94, .035);
}

.sla-table tbody tr.is-danger:last-child {
  background: rgba(239, 68, 68, .035);
}

.sla-table td:first-child,
.sla-table td:nth-child(2),
.sla-table td:nth-child(3) {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.sla-table td:nth-child(3) b {
  color: var(--primary);
}

.sla-table tr.is-success td:nth-child(3) b {
  color: #15803d;
}

.sla-table tr.is-danger td:nth-child(3) b {
  color: #dc2626;
}

.sla-tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.sla-tag--success {
  background: #dcfce7;
  color: #15803d;
}

.sla-tag--warning {
  background: #fef3c7;
  color: #a16207;
}

.sla-tag--danger {
  background: #fee2e2;
  color: #b91c1c;
}

.sla-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 28px);
  margin-top: 26px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(rgba(37, 99, 235, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .025) 1px, transparent 1px),
    var(--surface);
  background-size: 24px 24px;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 13px;
}

.sla-formula > span {
  color: var(--primary);
  font-weight: 600;
}

.sla-formula > strong {
  font-size: 15px;
}

.sla-formula > div {
  display: grid;
  gap: 7px;
  text-align: center;
}

.sla-formula > div i {
  height: 1px;
  background: var(--fg);
}

.sla-formula b {
  font-weight: 500;
}

.sla-definition {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 30px;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.sla-definition__intro > span,
.sla-report-card > div:nth-child(2) > span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.sla-definition__intro h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.sla-definition__intro p {
  color: var(--fg-secondary);
  font-size: 13px;
}

.sla-definition ul {
  border-left: 1px solid var(--border);
  padding-left: 28px;
  list-style: none;
}

.sla-definition li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  padding: 10px 0;
  color: var(--fg-secondary);
  font-size: 13px;
}

.sla-definition li svg {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
}

.sla-exception-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.sla-exception-card {
  min-height: 200px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sla-exception-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.sla-exception-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sla-exception-card__head > span {
  padding: 4px 9px;
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--fg-tertiary);
  font-size: 10px;
}

.sla-exception-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
}

.sla-exception-card__icon svg {
  width: 19px;
  height: 19px;
}

.sla-exception-card h3 {
  margin-bottom: 8px;
}

.sla-exception-card p {
  color: var(--fg-secondary);
  font-size: 13px;
  line-height: 1.75;
}

.sla-timeline {
  position: relative;
  margin-top: 28px;
  list-style: none;
}

.sla-timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 24px;
  width: 1px;
  background: linear-gradient(var(--primary), var(--accent));
  opacity: .3;
}

.sla-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 14px;
}

.sla-timeline li:last-child {
  padding-bottom: 0;
}

.sla-timeline__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary-light);
  border-radius: 14px;
  background: var(--bg);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.sla-timeline__content {
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
}

.sla-timeline__content > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 5px;
}

.sla-timeline__content h3 {
  font-size: 15px;
}

.sla-timeline__content span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
}

.sla-timeline__content p {
  color: var(--fg-secondary);
  font-size: 13px;
}

.sla-report-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 190px;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(8, 145, 178, .1), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, .055), rgba(255, 255, 255, .92));
}

.sla-report-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}

.sla-report-card__icon svg {
  width: 24px;
  height: 24px;
}

.sla-report-card h2 {
  margin-bottom: 7px;
  font-size: 22px;
}

.sla-report-card p {
  color: var(--fg-secondary);
  font-size: 13px;
}

.sla-report-card__action {
  padding-left: 20px;
  border-left: 1px solid rgba(37, 99, 235, .15);
}

.sla-report-card__action b,
.sla-report-card__action small {
  display: block;
}

.sla-report-card__action b {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 12px;
}

.sla-report-card__action small {
  color: var(--fg-tertiary);
  font-size: 10px;
  line-height: 1.6;
}

.sla-faq {
  margin-top: 26px;
  border-top: 1px solid var(--border);
}

.sla-faq details {
  border-bottom: 1px solid var(--border);
}

.sla-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  cursor: pointer;
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

.sla-faq summary::-webkit-details-marker {
  display: none;
}

.sla-faq summary i {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
}

.sla-faq summary i::before,
.sla-faq summary i::after {
  content: '';
  position: absolute;
  top: 11px;
  left: 7px;
  width: 10px;
  height: 1px;
  background: var(--fg-secondary);
  transition: transform .2s ease;
}

.sla-faq summary i::after {
  transform: rotate(90deg);
}

.sla-faq details[open] summary i::after {
  transform: rotate(0);
}

.sla-faq details > p {
  max-width: 72ch;
  padding: 0 48px 20px 0;
  color: var(--fg-secondary);
  font-size: 13px;
  line-height: 1.8;
}

.sla-quote {
  position: relative;
  margin-top: -16px;
  padding: 44px;
  overflow: hidden;
  border-radius: 18px;
  background: #0f172a;
  color: #fff;
}

.sla-quote::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(37, 99, 235, .3);
  filter: blur(12px);
}

.sla-quote svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: #60a5fa;
}

.sla-quote p {
  position: relative;
  z-index: 1;
  max-width: 25ch;
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.02em;
}

.sla-quote cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  color: #94a3b8;
  font-size: 12px;
  font-style: normal;
}

.sla-cta .eyebrow {
  margin-bottom: 14px;
}

.sla-cta .cta-title {
  margin-bottom: 18px;
}

.sla-cta .cta-description {
  margin-inline: auto;
  margin-bottom: 36px;
}

@media (max-width: 980px) {
  .sla-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sla-hero__content {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .sla-hero__content .hero-cta,
  .sla-hero__trust {
    justify-content: center;
  }

  .sla-monitor {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .sla-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sla-sidebar {
    position: static;
    max-width: 680px;
  }

  .sla-sidebar h2 br {
    display: none;
  }

  .sla-sidebar__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .sla-sidebar__nav a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-right: 1px solid var(--border);
  }

  .sla-sidebar__nav a:last-child {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .sla-hero {
    min-height: auto;
  }

  .sla-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sla-proof__grid > div,
  .sla-proof__grid > div:first-child,
  .sla-proof__grid > div:last-child {
    padding: 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .sla-proof__grid > div:nth-child(2n) {
    border-right: 0;
  }

  .sla-proof__grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .sla-sidebar__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .sla-sidebar__nav a {
    border-right: 0;
  }

  .sla-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sla-formula {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .sla-formula > strong {
    align-self: center;
  }

  .sla-definition {
    grid-template-columns: 1fr;
  }

  .sla-definition ul {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .sla-exception-grid {
    grid-template-columns: 1fr;
  }

  .sla-report-card {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .sla-report-card__action {
    grid-column: 2;
    padding: 14px 0 0;
    border-top: 1px solid rgba(37, 99, 235, .15);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .sla-hero__content h1 {
    font-size: 40px;
  }

  .sla-monitor__body {
    padding: 22px 18px;
  }

  .sla-monitor__title {
    align-items: flex-end;
  }

  .sla-monitor__title strong {
    font-size: 17px;
  }

  .sla-monitor__score {
    font-size: 34px;
  }

  .sla-monitor__chart {
    gap: 2px;
    height: 96px;
  }

  .sla-monitor__metrics {
    gap: 6px;
  }

  .sla-monitor__metrics > div {
    padding: 11px 8px;
  }

  .sla-monitor__metrics strong {
    font-size: 13px;
  }

  .sla-monitor__head > span:nth-child(2) {
    display: none;
  }

  .sla-monitor__head {
    grid-template-columns: 1fr 1fr;
  }

  .sla-proof__grid > div,
  .sla-proof__grid > div:first-child,
  .sla-proof__grid > div:last-child {
    padding: 18px 14px;
  }

  .sla-table-wrap {
    margin-right: calc(var(--gutter) * -1);
    border-radius: 14px 0 0 14px;
  }

  .sla-formula,
  .sla-definition,
  .sla-report-card {
    padding: 22px 18px;
  }

  .sla-timeline li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .sla-timeline::before {
    left: 20px;
  }

  .sla-timeline__number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .sla-timeline__content {
    padding: 15px;
  }

  .sla-report-card {
    grid-template-columns: 1fr;
  }

  .sla-report-card__action {
    grid-column: auto;
  }

  .sla-quote {
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sla-exception-card,
  .sla-text-link span,
  .sla-faq summary i::after {
    transition: none;
  }
}
