/* Product showcase for the Closing Times case study: alternating
   screenshot + copy rows, then a plain "works with" integrations strip.
   Screenshots are the star, so they sit in a light field with a soft framed
   card treatment. Reuses the site's type tokens and blue accents. */

.showcase {
  background-color: var(--off-white);
  padding-block: var(--space-60);
}

.showcase__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-40);
}

.showcase__row + .showcase__row {
  margin-top: var(--space-80);
}

.showcase__media {
  width: 100%;
}

.showcase__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  box-shadow: 0 22px 48px rgba(51, 51, 51, 0.16);
}

.showcase__text {
  width: 100%;
}

.showcase__eyebrow {
  margin: 0 0 var(--space-10);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--dozen-blue);
}

.showcase__heading {
  margin: 0 0 var(--space-20);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading);
  font-size: clamp(1.625rem, 1.3rem + 1.4vw, 2.25rem);
  line-height: 1.15;
  color: var(--dozen-dark);
}

.showcase__body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-body);
  font-size: 1.125rem;
  line-height: var(--p-leading);
  color: var(--dozen-dark);
}

.showcase__integrations {
  margin-top: var(--space-80);
  padding-top: var(--space-60);
  border-top: 1px solid rgba(51, 51, 51, 0.12);
  text-align: center;
}

.showcase__integrations .showcase__eyebrow {
  margin-bottom: var(--space-40);
}

.showcase__int-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-20);
}

.showcase__int-list li {
  padding: 0.625rem 1.25rem;
  border-radius: 60px;
  background-color: var(--pure-white);
  border: 1px solid rgba(81, 63, 199, 0.18);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--dozen-dark);
}

@media (min-width: 1024px) {
  .showcase {
    padding-block: var(--space-100);
  }

  .showcase__row {
    flex-direction: row;
    gap: 80px;
  }

  .showcase__row--reverse {
    flex-direction: row-reverse;
  }

  .showcase__media,
  .showcase__text {
    flex: 1 1 50%;
  }

  .showcase__eyebrow {
    font-style: normal;
    font-size: var(--h4-size);
    line-height: var(--h4-leading);
  }
}
