/*
Theme Name: Breakdance Zero Theme Child
Theme URI:  https://www.wpserveur.net
Author:     WPServeur
Author URI: https://www.wpserveur.net
Template:   breakdance-zero
Version:    3.0
License:    GNU General Public License v2 or later
*/
.paolo-post-loop{
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (width > 992px){
	.paolo-post-loop{
		grid-template-columns: 1fr 1fr 1fr;
	}
}
.loop-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
/*   padding: 1.5em; */
  transition: transform 0.2s ease-in-out;
}
.loop-item:hover {
  transform: translateY(-4px);
}

.post-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0;
}

.loop-item h2 {
  margin-bottom: 15px;
  color: #1a1a1a;
	padding: 0 24px;
	margin-top: 21px;
	font-size: 20px!important;
	font-family: "Montserrat"!important;
	font-weight: 600!important;
}

.loop-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 24px!important;
	padding: 0 24px;
}

.read-more-button {
  display: inline-block;
  background-color: #000000;
  color: #ffffff!important;
  text-decoration: none;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  font-weight: 400;
  font-size: 16px;
  transition: background-color 0.3s ease;
	margin: 0 24px;
}
.read-more-button:hover {
  background-color: #005bb5;
}

.post-meta {
  font-size: 14px;
  color: #737373;
  font-style: italic;
	padding: 0 24px 24px;
}
/* Container for pagination */
.pagination {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  margin-top: 2em;
  font-family: 'Segoe UI', sans-serif;
}

/* Pagination links */
.pagination a,
.pagination span{
  padding: 0.5em 0.9em!important;
  background-color: #f2f2f2;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Hover effect */
.pagination a:hover {
  background-color: #0073e6;
  color: #fff;
}

/* Active page */
.pagination a:hover,
.pagination .current {
  background-color: #000000;
  color: #fff!important;
  font-weight: 400;
  text-decoration: none;
}

/* "Next" and "Previous" styles */
.pagination .next,
.pagination .prev {
  font-weight: 600;
}

/* Responsive tweak for mobile */
@media (max-width: 500px) {
  .pagination {
    flex-wrap: wrap;
  }
}