
.example-container {
  width: 100%;
}

.example-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.example-list-item {
  width: 48%;
  margin-bottom: 2rem;
  cursor: pointer;
  border: .0625rem solid rgb(246, 246, 246);
}

.example-list-item-img {
  width: 100%;
  height: 17.5rem;
  overflow: hidden;
}

.example-list-item:hover > .example-list-item-img > img {
  transform: scale(1.2);
}

.example-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .3s;
}

.example-list-item:hover > .example-list-item-text {
  color: rgb(254, 108, 34);
}

.example-list-item-text {
  height: 3rem;
  background-color: rgb(246, 246, 246);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: .0625rem;
  font-weight: bold;
  transition: all .3s;
  font-size: .875rem;
}

@media screen and (max-width: 1920px) {
  .example-list-item {
    margin-bottom: 40px;
  }
  
  .example-list-item-text {
    height: 50px;
    letter-spacing: 1px;
    font-size: 16px;
  }
}

@media screen and (max-width: 666px) {
  .example-list-item {
    width: 100%;
  }

  .example-list-item-img {
    width: 100%;
    height: 35rem;
    overflow: hidden;
  }
}
