.secondz-product-highlight-card__title {
  color: var(--text-color, #003459);
  font-size: 24px;

  @media screen and (min-width: 768px) {
    font-size: var(--title-size, 32px);
  }
}
.secondz-product-highlight-card__title strong {
  color: var(--accent-color, #ff8c00);
}
.secondz-collection-list__main {
  display: flex;
  gap: 60px;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    gap: 60px;
  }
}

.secondz-collection-list__main > * {
  flex: 1;
}

.secondz-collection-list__content {
  padding: 0;
  @media screen and (min-width: 768px) {
    padding: 20px;
  }
}

.secondz-collection-list__collection-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.secondz-collection-list-card {
  background-color: var(--background-color, #f7f5f2);
  color: var(--text-color, #2b2c37);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease-out;
  text-decoration: none;
}

.secondz-collection-list-card__main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.secondz-collection-list-card__main > * {
  flex: 1;
}

.secondz-collection-list-card__title {
  margin: 0;
  font-weight: bold;
  font-size: 20px;
  color: var(--text-color, #ffffff);

  @media screen and (min-width: 768px) {
    font-size: 24px;
  }
}

.secondz-collection-list-card__image {
  margin-bottom: -20px;
  margin-top: -20px;
  height: 80px;
  width: auto;
  object-fit: contain;
}

.secondz-collection-list-card .section-img-placeholder-video {
  height: 80px;
  background-color: var(--text-color, #ffffff);
  opacity: 0.5;
}
