.epg-grid {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   margin: 0;
   padding: 0;
   gap: 15px;
}

.epg-grid__button{
   display: flex;
   align-items: center;
   justify-content: center;
}
.epg-grid__button button{
   height: 50px;
   margin: 10px;
   color: #2157A5;
   border: solid 1px #2157A5;
}

.epg-grid__button button:hover{
   color: white;
   background-color: #2157A5;
}

.epg-card {
   display: flex;
   flex-direction: column;
   width: 340px;
   height: 400px;
   flex-shrink: 0;
   cursor: pointer;
   background-color: #fff;
   color: black;
   box-shadow: 0 6px 12px 0 rgba(171, 190, 209, 0.3);
   border-radius: 15px;
}

.epg-card a {
   color: black;
   text-decoration: none !important;
}

.epg-card__image {
   width: 100%;
   height: 180px;
   min-height: 180px;
   max-height: 180px;
   border-top-left-radius: 15px!important;
   border-top-right-radius: 15px!important;
   background: #0069FF;
   background: linear-gradient(90deg, rgba(0, 105, 255, 1) 0%, rgba(15, 228, 179, 1) 100%);
}


#epg-grid-projetos  .epg-card__image {
   width: 100%;
   height: 210px;
   min-height: 210px;
   max-height: 210px;
   object-fit: cover;
   border-top-left-radius: 15px !important;
   border-top-right-radius: 15px !important;
   background: #0069FF;
}

#epg-grid-cursos .epg-card__image {
   width: 100%;
   height: 210px;
   min-height: 210px;
   max-height: 210px;
   object-fit: cover;
   border-top-left-radius: 15px !important;
   border-top-right-radius: 15px !important;
   background: #0069FF;
}


.epg-card__image_placeholder{
   width: 100%;
   padding: 15%;
   height: 180px;
   min-height: 180px;
   max-height: 180px;
   border-top-left-radius: 15px!important;
   border-top-right-radius: 15px!important;
   background: #0069FF;
   background: linear-gradient(90deg, rgba(0, 105, 255, 1) 0%, rgba(15, 228, 179, 1) 100%);
}

.epg-card__content {
   padding: 10px;
}

.epg-card__text {
   margin-bottom: 10px !important;
}

.epg-card__text:hover {
   color: black!important;
}

.epg-card__icon {
   width: 40px !important;
   margin-top: -20px;
   margin-left: 5px;
}

.epg-card__link {
   color: #2157A5;
}

.epg-card__text-limit {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   line-clamp: 2;
   -webkit-box-orient: vertical;
}

.hidden {
   display: none;
}

@media screen and (max-width: 380px) {
	.epg-card {
   		width: 90vw;
	}
}