.action-list {
    position: relative;
    margin-bottom: 30px;
}

.action-list__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -10px;
    margin-right: -10px;
}

.action {
    width: 25%;
    margin: 0 0 20px;
    padding: 0 10px;
}

.action__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #EDF2F6;
  height: 100%;
}

.action__image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
    width: 100%;
}

.action__image a {
    display: block;
    width: 100%;
    height: 200px;
}

.action__title {
    padding: 20px 20px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 0;
}

.action__title a {
    color: #0061aa;
    font-weight: bold;
    font-size: 16px;
    max-height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.action__share-period {
    font-size: 13px;
    margin-top: 12px;
}

.action__button {
    padding: 20px 0 0;
}

.action__button a {
    display: inline-block;
    background: #0babcd;
    color: #fff;
    padding: 15px 3px;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 1024px) {
  .action {
      width: 33%;
  }

  .action-list {
    margin: 40px 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .action {
    width: 50%;
  }
}


@media screen and (max-width: 450px) {
  .action {
      width: 100%;
      min-width: inherit;
  }
}
