.oem-wrapper {
  height: 100%;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-dist-bg);
  gap: 2rem;
}

.oem-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  width: 80%;
}

.oem-card-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}

.oem-bold {
  font-weight: 800;
}

.oem-container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}

.oem-card {
  display: block;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: calc(33% - 1rem);
  overflow: hidden;
  border-radius: 1rem;
  background: var(--color-bg);
  box-shadow: 0 4px 15px var(--color-box-shadow);
  transition: all 0.3s ease-in-out;
}

.oem-card img {
  width: 100%;
  padding: 1rem;
}

.oem-card h3 {
  font-size: 1.3rem;
}

.oem-card-text {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.5;
}

.oem-mobile-link {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--color-purple);
  color: white;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: none;
}

.oem-name {
  text-align: center;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .oem-wrapper {
    margin-top: 100px;
    height: 100%;
    padding-top: 60px;
  }

  .oem-wrapper h1 {
    font-size: 2.5rem;
  }

  .oem-container {
    flex-direction: column;
    padding: 1rem;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .oem-container p {
    width: 100%;
  }

  .oem-card {
    width: 100%;
    overflow: visible;
  }

  .oem-card:hover {
    filter: none;
    transform: scale(1);
  }
}
