.oh-customer-section {
  margin: clamp(75px, 8vw, 100px) clamp(24px, 8vw, 158px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
}

.oh-customer-section__heading {
  display: grid;
  gap: 0.75rem;
  max-width: 720px;
  text-align: center;
  justify-items: center;
  margin: 0 auto;
}

.oh-customer-section__heading .oh-categories {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(5, 0, 34, 0.6);
}

.oh-customer-section__heading h2 {
  margin: 0;
}

.oh-customer-section__heading .oh-subtitle {
  margin: 0;
  color: rgba(5, 0, 34, 0.75);
}

.oh-customer-section__grid {
  display: grid;
  gap: 10px;
}

.oh-customer-section__card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 1.25rem;
  /* box-shadow: 0 18px 40px rgba(5, 0, 34, 0.08); */
}

.oh-customer-section__card .oh-btn {
  width: auto;
  justify-self: flex-start;
}

.oh-customer-section__card--media {
  padding: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.oh-customer-section__card--media img,
.oh-customer-section__card--media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.oh-customer-section__card--media .oh-customer-section__media--embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.oh-customer-section__card--media .oh-customer-section__media--embed iframe,
.oh-customer-section__card--media .oh-customer-section__media--embed embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
}

.oh-customer-section__card--case {
  padding: 30px 20px;
  gap: 1rem;
}

.oh-customer-section__category {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #050022;
}

.oh-customer-section__quote {
  margin: 0;
  color: #050022;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  font-style: italic;
}

.oh-customer-section__quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem;
  color: rgba(12, 194, 195, 0.4);
}

.oh-customer-section__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.oh-customer-section__signature-logo {
  max-width: 100px;
  max-height: 50px;
  width: auto;
  height: auto;
}

.oh-customer-section__case-logo {
  width: 100%;
  height: auto;
  display: block;
}

.oh-customer-section__case-title {
  margin: 0;
}

.oh-customer-section__cta {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .oh-customer-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  .oh-customer-section__card--main {
    grid-column: 1 / span 2;
    grid-row: 1;
  }

  .oh-customer-section__card--media {
    grid-column: 3;
    grid-row: 1;
  }

  .oh-customer-section__card--case {
    grid-column: 1;
    grid-row: 2;
  }

  .oh-customer-section__card--secondary {
    grid-column: 2 / span 2;
    grid-row: 2;
  }
}

@media (min-width: 1200px) {
  .oh-customer-section__heading {
    max-width: 860px;
  }
}
