.ias-event {
  margin-top: 30px;
  background-image: url('../image/ias_bg.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 50px;
  color: #000;
  position: relative;
}

.ias-event:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  min-height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: .8;
}

.ias-event-title {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Garamond",serif;
}

.ias-event-title a {
  height: 40px;
  font-size: 30px;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 20px;
}

/* .ias-event-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
} */

.ias-event-list-item {
  display: flex;
  width: 100%;
  cursor: pointer;
  align-items: stretch;
  margin-top: 30px;
}

.ias-event-list-item:first-of-type {
  margin-top: 0;
}

.ias-event-list-item-date>div {
  text-decoration: none !important;
}

.ias-event-list-item-date {
  max-height: 100px;
}

.ias-event-list-item-date>div {
  width: 100px;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #92D050;
  color: #fff;
  font-size: 18px;
}

.ias-event-list-item-date>div:last-child {
  background-color: #2E75B6;
}

.ias-event-list-item-desc {
  padding-left: 20px;
  font-size: 18px;
  color: #03315c;
}

.ias-event-list-item-desc .title {
  
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;

  font-size:22px;
}

.ias-event-list-item-desc .intro {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ias-event-list-item-desc .intro p:first-of-type {
  width: 100%;
}

.ias-event-list-item-desc i {
  font-size: 18px;
}


@media screen and (max-width:1200px) {
  .ias-event-list-item {
    align-items: flex-start;
  }

  .ias-event-list-item-date>div {
    height: 50px;
  }
}


@media screen and (max-width:965px) {
  .ias-event-list {
    flex-direction: column;

  }

  .ias-event-list-item {
    width: 96%;
    margin: 20px 0;
    text-align: center;
  }

  .ias-event-list-item>.ias-event-list-item-desc {
    text-align: left;
  }
}