.epg-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.epg-content_grid {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.epg-content_grid .epg-agent-image {
	flex: 1 1 30%;
    border-radius: 12px;
    overflow: hidden;
}

.epg-post.custom-type .eael-creative-button {
	font-size: 50px;
    padding: 0;
}

.epg-post.custom-type .eael-creative-button .eael-creative-button-icon-right {
	margin-left:  0;
}
.epg-post.custom-type .eael-creative-button .eael-creative-button-icon-right i {
	transform: rotate(-45deg);
    transition: all 500ms ease;
}

.epg-post.custom-type .eael-creative-button:hover .eael-creative-button-icon-right i {
	transform: rotate(0deg);
}

.epg-post.custom-type .eael-creative-button .creative-button-inner {
    justify-content: start;
}

.epg-post.custom-type .epg-content h5 {
	padding-bottom: 0;
    font-weight: 500;
}
.epg-content_grid .epg-title {
	flex: 1 1 70%;
}
.epg-content_grid .epg-title a {
	font-weight: unset;
}
.epg-agent-image {
	flex: 1 1 30%;
}
.epg-post {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    -moz-box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    box-shadow: 3px 3px 5px -3px rgba(66, 68, 90, 0.57);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 500ms ease;
    box-sizing: border-box;
}
.epg-post * {
	transition: all 500ms ease;
}
.epg-post:hover {
	background: #021A3C;
}

.epg-post:hover * {
	color: #ffffff;
}
.epg-post:hover a:hover {
	color: #ffffff;
}

.epg-thumb img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 4px; */
   
}

.epg-post:hover .epg-thumb img {
	
}
.epg-content {
    padding: 15px;
}
.epg-content h5 {
	margin: 0;
   	padding-bottom: 15px;
    min-height: 50px;
    font-weight: 500;
}
.epg-content h5 a {
	font-weight: unset;
}
.epg-content small {
    color: #666;
    margin-bottom: 10px;
    display: block;
}

.epg-excerpt {
    margin: 10px 0;
    color: #333;
}

.epg-readmore {
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    display: inline-block;
    color: #0073aa;
}

.epg-readmore:hover {
    text-decoration: underline;
}

.epg-author {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.epg-author-avatar {
    margin-right: 10px;
    flex-shrink: 0;
    display: none;
}

.epg-author-avatar img {
    border-radius: 50%;
}

.epg-author-name {
    color: #444;
}
@media (max-width: 1336px) {
	
  }
  
  /* Max width 1024px */
  @media (max-width: 1024px) {
	
  }
  
  /* Max width 991px */
  @media (max-width: 991px) {
	.epg-post-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
    .epg-post-grid .epg-post {
    flex: 0 0 50%;
    }
  }
  
 /* Responsive */
    @media screen and (max-width: 768px) {
	.epg-post-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column */
    }
    .epg-post-grid .epg-post {
    flex: 0 0 100%;
    }
    .cretive-button-text {
    display: none;
    }
    .eael-creative-button {
    min-width: unset!important;
    padding: 7px !important;
    }
    .eael-creative-button-icon-right {
    margin-left: 0px !important;
    }
    .epg-post.custom-type .eael-creative-button {
    display: block !important;
    }
    }
  
  /* Max width 500px */
  @media (max-width: 500px) {
  .epg-content_grid .epg-agent-image {
	flex: 1 1 20%;
	}
    
  }