.decta-lightbox-trigger {
	display: inline-block;
	padding: 10px 20px;
	background-color: #194d2a;
	color: #fff;
	border-radius: 24px;
	text-decoration: none;
	font-weight: bold;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

.decta-lightbox-trigger:hover {
	background-color: #0e3018;
}

.decta-events-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin: 40px 0;
}

.decta-event {
	background: #e6f1e6;
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	width: 300px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
}

.decta-event:hover {
	transform: translateY(-4px);
}

.decta-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	margin-bottom: 16px;
}

.decta-title {
	font-size: 20px;
	font-weight: 700;
	color: #09370f;
	margin: 10px 0 5px;
}

.decta-date {
	font-size: 14px;
	font-weight: 600;
	color: #274f2c;
	margin: 5px 0;
}

.decta-brief {
	font-size: 15px;
	color: #2e4033;
	margin: 10px 0 20px;
}

.decta-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #194d2a;
	color: #fff;
	border-radius: 24px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
}

.decta-btn:hover {
	background-color: #0e3018;
}

.decta-btn.alt {
	background-color: #f05222;
	color: #fff;
}

.decta-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	justify-content: center;
	align-items: center;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
}

.decta-lightbox-inner {
	background: #fff;
	max-width: 600px;
	width: 100%;
	padding: 30px;
	border-radius: 12px;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	text-align: left;
}

.decta-lightbox-close {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #000;
	cursor: pointer;
}