.list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0;
  width: 100%;
}

.list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin: 30px 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.1);
  transition: box-shadow .5s;
}

.list__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 25px;
}

.list__content__date {
  color: #e22927;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 800;
  letter-spacing: 3px;
}

.list__content__name {
  padding: 11px 0;
  width: 100%;
  color: #1b191c;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 36.8px;
  line-height: 2.3rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 600;
  text-decoration: none;
}

.list__content__name::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}

.list__content__detail {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 9px 0;
}

.list__content__detail-text {
  padding-left: 5px;
  color: #e22927;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 17.6px;
  line-height: 1.1rem;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.list__content__detail-icon {
  width: 12px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.list__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.list__image.-done .list__image-inner {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.list__image-inner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list__image-inner {
    height: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .list.-stretch {
    align-items: stretch;
  }

  .list__item {
    margin: 30px 11px;
    width: 48%;
    max-width: 330px;
  }

  .list__item:hover {
    box-shadow: 0 12px 12px 0 rgba(212, 210, 210, 0.4);
  }

  .list__item:hover .-done .list__image-inner {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .list__image {
    height: 205px;
  }
}

@media only screen and (min-width: 1024px) {
  .list {
    justify-content: center;
  }
}

@media only screen and (min-width: 1248px) {
  .list__item {
    max-width: 360px;
  }

  .list__content {
    padding: 40px;
  }
}

@media only screen and (min-width: 1400px) {
  .list {
    justify-content: center;
  }
}
