 

.wrapper .header{
	width: 100%;
	height: 50px;
	background: #e36686;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-weight: 900;
    
}

.cards_wrap{
	padding: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    text-align: right
}

.cards_wrap .card_item{
	padding: 15px 25px;
	width: 30%;
}

.cards_wrap .card_inner{
	background: #fff;
	border-radius: 10px;
	padding: 35px 20px;
	min-width: 225px;
	min-height: 350px;
	max-height: 370px;
	width: 100%;
     
  box-shadow: 5px 5px #aaa;
}

.cards_wrap .card_item img{
	width: 80px;
	height: 80px;
	margin-bottom: 5px;
}

.cards_wrap .card_item .role_name{
	color: #8C7B1E;   
	font-size: 20px; 
    overflow: hidden;
    text-overflow: ellipsis;
}

.cards_wrap .card_item .real_name{
	color: #b6c0c2;
	font-size: 12px;
	font-weight: 100;
	margin: 5px 0 10px;
}

.cards_wrap .card_item .film{
	font-size: 14px;
	line-height: 24px;
	color: #7b8ca0;
}

@media screen and (max-width: 1024px){
	.cards_wrap .card_item{
		width: 33%;
	}
}

@media screen and (max-width: 768px){
	.cards_wrap .card_item{
		width: 50%;
	}
	.wrapper .header{
		font-size: 16px;
		height: 60px;
	}
}

@media screen and (max-width: 568px){
	.cards_wrap .card_item{
		width: 100%;
	}
	.wrapper .header{
		font-size: 14px;
	}
}

    
.film a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #8C7B1E;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
    margin-top: 30px
}

.film a:hover {
  background-color: #AB9936;
}

.film a:active {
  background-color: #AB9B47;
}