.colunistas ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
	list-style:none;
}

.colunistas ul li {
    margin-left: 0;
}
.colunistas ul li a{
    margin-block: 10px;
    font-weight: 600;
}

.colunistas ul li p{
    padding-top: 10px;
    margin-bottom: 0px;
    line-height: 8px;
}

.editoria-colunistas{
    display: inline-block;
    margin-bottom: 10px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-size: 1rem;
    text-transform: none;
    font-weight: 500;
    padding: 0 5px;
    line-height: 16px;
    text-align: left;
    margin-right: 5px;
    margin-bottom: 5px;
    transition: all .3s;
    height: 16px;
}

.editoria-colunistas:hover{
    background-color: #3f51b5;
}

.colunistas img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover; 
}



/*.penci-block-vc .penci-cat-name {
    float: left;
    display: inline-block;
    
}

.penci-block-vc .penci_post_thumb:hover .penci-cat-name {
    background-color: #3f51b5;
    text-decoration: none;
}*/

.insta-reels {
    font-family: system-ui, sans-serif;
    background: #fafafa;
    color: #333;
    margin: 0;
    padding: 20px;
}

.insta-reels h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.insta-reels .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    justify-items: center;
}

.insta-reels .reel {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.insta-reels .reel:hover {
    transform: scale(1.03);
}

.insta-reels .reel video {
    width: 100%;
    height: auto;
    display: block;
}

.insta-reels .caption {
    padding: 10px;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
}

.insta-reels.info {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 20px;
}

@media screen and (max-width:380px) {   
    .insta-reels .grid {
        grid-template-columns: 1fr;
    }
    .insta-reels .reel video {
        height: 220px;
        object-fit: cover;
    }
}