.snsp-events {
	--snsp-events-red: #a61335;
	--snsp-events-text: #272727;
	--snsp-events-soft: #f4efef;
	--snsp-events-line: #e8d8d9;
	font-family: "Jost", sans-serif;
	color: var(--snsp-events-text);
}

.snsp-events-filters {
	margin: 0 0 30px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--snsp-events-line);
}

.snsp-events-filters-label {
	margin: 0 0 12px;
	font-size: 0.95rem;
	line-height: 1.4;
	font-weight: 600;
	color: var(--snsp-events-red);
}

.snsp-events-filters-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.snsp-events-filter-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 18px;
}

.snsp-events-filter-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.98rem;
	line-height: 1.4;
	color: var(--snsp-events-text);
	cursor: pointer;
}

.snsp-events-filter-item input {
	margin: 0;
	accent-color: var(--snsp-events-red);
}

.snsp-events-reset {
	flex: 0 0 auto;
	padding: 8px 14px;
	border: 1px solid #e8a9b7;
	border-radius: 2px;
	background: #fff;
	color: #d24b6c;
	font-family: "Jost", sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
}

.snsp-events-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 26px;
}

.snsp-event-card {
	background: var(--snsp-events-soft);
	box-shadow: 4px 4px 0 rgba(39, 39, 39, 0.1);
	min-height: 355px;
}

.snsp-event-card-body {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 20px 22px 18px;
	box-sizing: border-box;
}

.snsp-event-card-index {
	margin: 0 0 14px;
	font-size: 12px;
	line-height: 1.2;
	color: #b7b0b0;
}

.snsp-event-card-title {
	margin: 0 0 14px;
	font-family: "Jost", sans-serif;
	font-size: 20px;
	line-height: 1.32;
	font-weight: 700;
}

.snsp-event-card-title a {
	color: var(--snsp-events-text);
	text-decoration: none;
}

.snsp-event-card-date {
	margin: 0 0 14px;
	font-size: 14px;
	line-height: 1.35;
	color: #8f8a8a;
}

.snsp-event-card-excerpt {
	font-size: 14px;
	line-height: 1.68;
	color: #3a3a3a;
}

.snsp-event-card-link {
	margin-top: auto;
	padding-top: 18px;
	align-self: flex-end;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--snsp-events-red);
	text-decoration: none;
}

.snsp-events-more {
	display: flex;
	justify-content: center;
	margin-top: 26px;
	padding-top: 6px;
}

.snsp-events-more-button {
	border: 0;
	background: transparent;
	padding: 0;
	color: var(--snsp-events-red);
	font-family: "Jost", sans-serif;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 500;
	cursor: pointer;
}

.snsp-events-empty {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 1rem;
	color: #5f5f5f;
}

@media (max-width: 1024px) {
	.snsp-events-filters-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.snsp-events-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.snsp-events-filters {
		margin-bottom: 24px;
	}

	.snsp-events-filter-list {
		gap: 8px 14px;
	}

	.snsp-event-card {
		min-height: auto;
	}

	.snsp-event-card-body {
		padding: 16px 16px 14px;
	}

	.snsp-event-card-title {
		font-size: 18px;
	}

	.snsp-event-card-excerpt {
		font-size: 14px;
		line-height: 1.58;
	}
}
