	.img-wrap {
	  width: 100%;
	  text-align: center;
	  padding: 25px;
	  box-sizing: border-box;
	}

	.img-wrap img {
	  width: 60%;
	  max-width: 100%;
	  height: auto;
	  margin: 0 auto;
	}

	.grid--4 {grid-template-columns:repeat(4, 1fr);}
	.media {min-width: 160px !important;}
	span.media-title {font-size: 21px !important;}
	p.media-desc {font-size: 15px !important;}


	@media screen and (max-width: 1024px) {
	
	.grid--4 {grid-template-columns:repeat(2, 1fr);}
	
	}

	/* 태블릿 */
	@media screen and (max-width: 768px) {

	  .img-wrap {
		display: none !important;
	  }
	
	  .img-wrap img {
		display: none !important;
	  }

	.grid--4{grid-template-columns:1fr;}
	}

	/* 모바일 */
	@media screen and (max-width: 480px) {
	  .img-wrap {
		display: none !important;
	  }

	}	  