.secondz-product-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);

  @media screen and (min-width: 1024px) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.secondz-product-highlight-card__title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color, #2b2c37);
  margin-bottom: 1rem;

  @media screen and (min-width: 768px) {
    font-size: 34px;
    margin-bottom: 2rem;
  }
}

.secondz-product-highlight-card__title strong {
  color: var(--accent-color, #ff8c00);
}

.secondz-product-highlight-card__text {
  font-size: 16px;
  flex: 1;
  @media screen and (min-width: 768px) {
    font-size: 18px;
  }
}

.secondz-product-highlight-card {
  background-color: var(--background-color, #fff);
  color: var(--text-color, #2b2c37);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  @media screen and (min-width: 768px) {
    padding: 28px;
  }
}

.secondz-product-highlight-card__image-wrapper {
  margin-bottom: 20px;
  aspect-ratio: 16/9;
  position: relative;
}

.secondz-product-highlight-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondz-product-highlight-card .btn-primary {
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
}
