/* Business Suite — copy + orbiting product tiles */
.ddb-suite__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .ddb-suite__grid {
    grid-template-columns: 1fr 1.05fr;
  }
}
.ddb-suite__eyebrow {
  margin-bottom: 1rem;
}
.ddb-suite__title {
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--ddb-navy);
}
@media (min-width: 768px) {
  .ddb-suite__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .ddb-suite__title {
    font-size: 3.75rem;
  }
}
.ddb-suite__subheading {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: oklch(0.22 0.13 265 / 0.8);
}
@media (min-width: 768px) {
  .ddb-suite__subheading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.ddb-suite__text {
  margin-top: 1.25rem;
  max-width: 32rem;
  color: var(--ddb-muted-fg);
}
@media (min-width: 768px) {
  .ddb-suite__text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.ddb-suite__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.ddb-suite__textlink {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ddb-navy);
  text-underline-offset: 4px;
}
.ddb-suite__textlink:hover {
  text-decoration: underline;
}

/* Visual */
.ddb-suite__visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 36rem;
  justify-self: center;
}
.ddb-suite__bg {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(
    to bottom right,
    oklch(0.68 0.16 225 / 0.25),
    var(--ddb-cream),
    oklch(0.55 0.19 255 / 0.2)
  );
}
.ddb-suite__ring {
  position: absolute;
  inset: 18%;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px dashed oklch(0.22 0.13 265 / 0.2);
}
.ddb-suite__center {
  display: grid;
  place-items: center;
  height: 8rem;
  width: 8rem;
  border-radius: 1.5rem;
  background: var(--ddb-navy);
  color: #fff;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  text-align: center;
}
.ddb-suite__center-top {
  font-size: 1.5rem;
  color: var(--ddb-brand-red);
}
.ddb-suite__center-bottom {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(255 255 255 / 0.6);
}
.ddb-suite__center-img {
  width: 64px;
  height: 64px;
}
.ddb-suite__orbit {
  position: absolute;
  transform: translate(-50%, -50%);
}
.ddb-suite__orbit-tile {
  display: grid;
  place-items: center;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.75rem;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
