
.grid_thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    gap: 5%;
}

.grid_thumb_items {
    height: 600px;
    border: 1px solid #ffffff54;
    border-radius: 30px;
    position: relative;
}

.grid_thumb_items img {
    object-fit: cover;
    height: 70%;
    width: 100%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.post_date {
    position: absolute;
    color: white;
    padding: 20px;
    background-color: var(--brand_color);
    border-top-left-radius: 30px;
}
.post_sub_date {
    display: flex;
    
}

.day {
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    
}

.post_thumb_content {
    padding: 30px;
    color: white;
} 

.post_thumb_content h2 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
} 

.post_thumb_content p {
    font-size: 15px;
    font-weight: 300;
    display: -webkit-box;
  -webkit-line-clamp: 3;      /* número de linhas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
} 

.pagination {
    
    margin-top: 7rem;
    text-align: center;
    font-family: 'Arial', sans-serif;
    word-spacing: 6px;
}

.pagination a{
    
   color: white;
}
.pagination .current {
  color: white;
    font-weight: 100;
    opacity: 0.6;
}

@media screen and (max-width: 900px) {
.blog_flex {  
    flex-direction: column;
}

.grid_thumbs {  
    display: block;
    
}

.grid_thumb_items {
    margin-bottom: 2rem;
    
}
.pagination {
    margin-top: 4rem;
}

}

.breadcrumb {
    margin-top: -3rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.8;
    margin-left: 4px;
}

.breadcrumb a{
    margin-top: -3rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 1 !important;
    text-decoration: underline;
}