/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child theme para GeneratePress
Author: Tu nombre
Template: generatepress
Version: 1.0
*/
.agm-nearby-events-pro {
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: none;
}

.agm-nearby-events-pro__title {
	margin: 0 0 18px;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 700;
}

.agm-nearby-events-pro__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.agm-nearby-events-pro__item {
	margin: 0;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.agm-nearby-events-pro__item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
	border-color: #dcdcdc;
}

.agm-nearby-events-pro__link {
	display: inline-block;
	margin: 0 0 8px;
	font-size: 1.08rem;
	line-height: 1.35;
	font-weight: 700;
	text-decoration: none;
}

.agm-nearby-events-pro__link:hover {
	text-decoration: underline;
}

.agm-nearby-events-pro__meta {
	margin-top: 2px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #666;
}

.agm-nearby-events-pro__sep {
	color: #b5b5b5;
}

/* Opcional: 2 columnas en pantallas amplias */
@media (min-width: 768px) {
	.agm-nearby-events-pro__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}