.item11 {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--light-gray2);
  border-radius: var(--border-radius);
  padding: 25px;
  background-color: white;
  overflow: hidden;
}

.item11-section {
  display: flex;
  justify-content: space-between;
}

.item11-image {
  flex: none;
}

.item11-image img {
  display: block;
  border: 1px solid var(--light-gray2);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.item11-content {
  padding-left: 25px;
}

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

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

.item11-footer {
  min-width: 40%;
  padding-left: 25px;
  margin-left: 25px;
  border-left: 1px solid var(--light-gray2);
  display: flex;
  flex-direction: column;
}

.item11-footer > * {
  margin: 0 !important;
}

.item11-footer > :not(:first-child) {
  margin-bottom: 5px !important;
}

.item11-btn {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.item11--tags {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.7;
}

.item11--tags span {
  display: block;
  font-size: 18px;
  color: var(--purple);
  font-weight: 500;
}

.black-yellow .item11 {
  background-color: #000;
  border-color: yellow;
}
.black-yellow .item11-footer,
.black-yellow .item11-image img {
  border-color: yellow;
}
.black-yellow .item11--tags span,
.black-yellow .item11--tags,
.black-yellow .item11--desc,
.black-yellow .item11--title {
  color: yellow;
}

@media screen and (max-width: 991.98px) {
  .item11 {
    flex-direction: column;
  }
  .item11-footer {
    min-width: unset;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid var(--light-gray2);
  }
}
@media screen and (max-width: 767.98px) {
  .item11-section {
    flex-direction: column;
  }
  .item11-content {
    padding-top: 25px;
    padding-left: 0;
  }
}
@media screen and (max-width: 575.98px) {
  .item11 {
    padding: 15px;
  }
  .item11-content {
    padding-top: 15px;
  }
  .item11-footer {
    padding-top: 10px;
    margin-top: 10px;
  }
  .item11--desc {
    font-size: 15px;
  }
  .item11--tags {
    font-size: 15px;
  }
  .item11--tags span {
    font-size: 17px;
  }
  .item11-btn .main-btn {
    padding: 0 15px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }
}
