.main__3 {
  padding: 100px 0;
  padding-right: 9px;
}
.main__3__title {
  text-align: center;
}
.main__3__title p:first-child {
  font-size: 40px;
  line-height: 60px;
  font-weight: bold;
}
.main__3__title p:last-child {
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
  margin-bottom: 20px;
}
.main__3__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.main__3__wrap__list {
  width: calc(33.3333333333% - 10px);
  margin: 5px;
  height: 280px;
  background: rgb(240, 240, 240);
}
.main__3__wrap__list__top {
  overflow: hidden;
  height: 168px;
}
.main__3__wrap__list__top img {
  width: 100%;
  height: 168px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.main__3__wrap__list__bottom {
  padding: 10px;
}
.main__3__wrap__list__bottom__hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main__3__wrap__list__bottom__hd__category {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  padding: 6px;
  background: white;
  color: #832065;
}
.main__3__wrap__list__bottom__hd__date {
  display: inline-block;
  font-size: 10px;
  line-height: 16px;
  color: black;
}
.main__3__wrap__list__bottom__title {
  font-size: 16px;
  line-height: 24px;
  color: black;
}
.main__3__wrap__list:hover .main__3__wrap__list__top img {
  transform: scale(1.2);
}
.main__3__wrap__list:hover .main__3__wrap__list__bottom__title {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .main__3__wrap__list {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 467px) {
  .main__3__wrap__list {
    width: calc(100% - 40px);
  }
}