.optoma-media-objects-section {
  width: 100%;
  max-width: 1000px;
  margin: 100px auto 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.optoma-media-object-item {
  width: 100%;
}

.optoma-media-object-card {
  width: 100%;
  max-width: 1000px;
  min-height: 360px;
  padding: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  border: none;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.2);
}

.optoma-media-object-card-image {
  width: 445px;
  height: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f9fc;
}

.optoma-media-object-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.optoma-media-object-card-content {
  min-height: 300px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.optoma-media-object-card-icon {
  width: 96px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 16px;
}

.optoma-media-object-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  color: #444444;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0;
}

.optoma-media-object-card-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 16px 0 0;
  color: #444444;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  max-height: 6em;
  overflow-wrap: anywhere;
}

.optoma-media-object-card-link {
  margin-top: 16px;
  color: #287fd0;
  text-decoration: underline;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1010px) {
  .optoma-media-object-card {
    min-height: 0;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .optoma-media-object-card-image {
    width: 100%;
    max-width: 445px;
  }
  .optoma-media-object-card-content {
    min-height: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .optoma-media-object-card {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
  .optoma-media-object-card-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 445/300;
  }
  .optoma-media-object-card-content {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
  }
  .optoma-media-object-card-title,
  .optoma-media-object-card-text {
    display: block;
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: none;
  }
}
@media (max-width: 768px) {
  .optoma-media-object-card {
    padding: 30px;
    gap: 16px;
    min-height: 0;
    height: auto;
  }
  .optoma-media-object-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: 445/300;
  }
  .optoma-media-object-card-title {
    font-size: 18px;
    margin: 0 0 16px 0;
  }
  .optoma-media-object-card-content {
    width: 100%;
    min-height: 0;
    height: auto;
    justify-content: flex-start;
  }
  .optoma-media-object-card-text {
    display: block;
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    max-height: none;
    margin: 0;
    padding: 0;
  }
}

/*# sourceMappingURL=optomaMediaObjectCard.css.map */
