/* Posts listing styles */
.posts-listing { padding: 60px 0; max-width:1200px; margin:0 auto; }
.posts-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
.post-card { background:#fff; border-radius:8px; overflow:hidden; box-shadow:0 6px 14px rgba(0,0,0,.06); display:flex; flex-direction:column; }
.post-thumb img { width:100%; height:180px; object-fit:cover; display:block; }
.post-info { padding:16px; display:flex; flex-direction:column; gap:10px; }
.post-cat { font-size:12px; color:#c21; text-transform:uppercase; font-weight:700; }
.post-title { margin:0; font-size:1.1rem; }
.post-location { color:#666; font-size:0.95rem; }
.post-link { margin-top:10px; color:#c21; background:#fff; padding:8px 12px; border-radius:6px; display:inline-block; text-decoration:none; }
.posts-pagination { text-align:center; margin-top:40px; }
.posts-pagination .page-numbers { display:inline-block; margin:0 6px; padding:8px 12px; background:#f5f5f5; border-radius:4px; text-decoration:none; color:#333; }
.posts-pagination .current { background:#111; color:#fff; }
@media (max-width:1100px) { .posts-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:700px) { .posts-grid{ grid-template-columns: 1fr; } .sobreus-hero{height:280px;} }

.page-template-_g3-page-entradas .site-body-container,
.page-template-_g3-page-entradas .main-section { max-width: 100% !important; width: 100% !important; padding-left: 20px !important; padding-right: 20px !important; }
#main {
    width: 100% !important;
}
/* Apply the posts grid styles also to theme archive/list containers (main archives, category, tag, blog index) */
.vk_posts-mainSection {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: start;
}

.vk_posts-mainSection .post-card,
.post-list .post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    width: 100%!important;
}

.vk_posts-mainSection .post-thumb img,
.post-list .post-thumb img {
	width:100%;
	height:180px;
	object-fit:cover;
	display:block;
}

@media (max-width:1100px) { .vk_posts-mainSection{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:700px) { .vk_posts-mainSection{ grid-template-columns: 1fr; } }

