@charset "UTF-8";
/* CSS Document */
/*
*{
	margin: 0;
	padding: 0;
}


body{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

*/
#flexbox{
	display: flex;
	justify-content: space-between;
}

.card{
	width: 19%;
	border: 1px solid #dddddd;
	position: relative;
	color: #262626;
}

.card:nth-child(n+6){
	display: none;
}

.card::before{
	position: absolute;
	font-family: "Font Awesome 5 Brands";
	font-weight: 400;
	content: "\f16d";
	top: 10px;
	left: 10px;
	opacity: 0.5;
}

.main{
	width: 100%;
}

.content{
	padding: 10px;
	text-align: justify;
	text-justify: inter-character;
	overflow: hidden;
}

.icon{
	width: 20px;
	vertical-align: middle;
	border-radius: 10px;
	margin-right: 5px;
}

.user{
	position: relative;
	font-size: 14px;
	font-weight: bold;
}

.user::after{
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: "\f02e";
	right: 0;
}

.text{
	margin: 15px 0;
	font-size: 14px;
	line-height: 1.5;
}

.date{
	font-size: 12px;
	text-align: right;
	position: relative;
}

.date::before{
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	content: "\f004  \f075  \f1d8";
	left: 0;
}


@media screen and (max-width: 767px){
	
	#flexbox{
		overflow-x: scroll;
	}
	
	.card{
		width: 100%;
		margin: 0 5px;
	}
	
	.card .main{
		width: 200px;
	}
	
	.card:nth-child(n+6){
		display: inline-block;
	}

}
