.item12 {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid var(--light-gray2);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.item12-image {
  flex: none;
  border-right: 1px solid var(--light-gray2);
}

.item12-image img {
  display: block;
}

.item12-content {
  padding: 25px;
}

.item12--title {
  font-size: 18px;
  font-weight: bold;
  color: var(--blue);
}

.item12--desc {
  font-size: 16px;
  color: var(--dark-gray);
  margin-top: 10px;
}

.black-yellow .item12-image,
.black-yellow .item12 {
  background-color: #000;
  border-color: #000 !important;
}
.black-yellow .item12--desc,
.black-yellow .item12--title {
  color: yellow;
}

@media screen and (max-width: 575.98px) {
  .item12 {
    flex-direction: column;
  }
  .item12-image {
    border-bottom: 1px solid var(--light-gray2);
    border-right: none;
  }
  .item12-content {
    padding: 15px;
  }
}
