/* Method section */

.method__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.method__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
}

.method__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.method__content .section-head__eyebrow {
  margin-bottom: 0.75rem;
}

.method__text {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

@media (min-width: 1024px) {
  .method__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
