.spektrix-archive {
	max-width: 1200px;
	margin: 0 auto;
}

.spektrix-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
	margin: 40px 0;
	max-width: 100%;
}

.spektrix-event-card {
	background: #fff;
	border: 4px solid #081d3a;
	border-radius: 4px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spektrix-event-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.spektrix-event-image {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: #f0f0f0;
}

.spektrix-event-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.spektrix-event-card:hover .spektrix-event-image img {
	transform: scale(1.12);
}

.spektrix-event-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #ffb800;
	color: #000;
	padding: 6px 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 10;
}

.spektrix-event-card.has-performances .spektrix-event-badge {
	display: none;
}

.spektrix-event-content {
	padding: 20px;
}

.spektrix-event-title {
	font-family: Raleway, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #081d3a;
	margin: 0 0 10px 0;
}

.spektrix-event-subtitle {
	font-size: 13px;
	color: #666;
	margin: 0 0 15px 0;
}

.spektrix-event-button {
	display: inline-block;
	background: #c23030;
	color: #ffffff !important;
	text-decoration: none;
	padding: 12px 24px;
	font-family: Raleway, sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
	cursor: pointer;
	border: none;
	line-height: 24px;
}

.spektrix-event-button:visited,
.spektrix-event-button:hover,
.spektrix-event-button:focus,
.spektrix-event-button:active {
	color: #ffffff !important;
}

.spektrix-event-button:hover {
	background: #a92727;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.spektrix-event-button:focus {
	outline: 3px solid #26e78a;
	outline-offset: 2px;
}

.spektrix-event-button:active {
	transform: scale(0.98);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.spektrix-filters {
	background: #f5f5f5;
	padding: 30px;
	margin: 30px 0;
	border-radius: 4px;
}

.spektrix-filters-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	align-items: flex-end;
}

.spektrix-filter-group {
	display: flex;
	flex-direction: column;
}

.spektrix-filter-label {
	font-family: Raleway, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #081d3a;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.spektrix-filter-select,
.spektrix-filter-input {
	padding: 12px 16px;
	border: 2px solid #081d3a;
	border-radius: 3px;
	font-family: Raleway, sans-serif;
	font-size: 14px;
	color: #081d3a;
	background: #ffffff;
	transition: border-color 0.3s, box-shadow 0.3s;
	height: 44px;
	box-sizing: border-box;
}

.spektrix-filter-input::placeholder {
	color: #999;
	font-style: italic;
}

.spektrix-filter-select:focus,
.spektrix-filter-input:focus {
	outline: none;
	border-color: #26e78a;
	box-shadow: 0 0 0 3px rgba(38, 231, 138, 0.2);
}

.spektrix-filter-button,
.spektrix-more-button {
	background: #c23030;
	color: #fff;
	border: none;
	padding: 12px 24px;
	font-family: Raleway, sans-serif;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	border-radius: 3px;
	transition: background 0.3s, box-shadow 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.spektrix-filter-button:hover,
.spektrix-more-button:hover {
	background: #a92727;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.spektrix-filter-button:focus,
.spektrix-more-button:focus {
	outline: 3px solid #26e78a;
	outline-offset: 2px;
}

.spektrix-pagination {
	text-align: center;
	margin: 40px 0;
}

@media (max-width: 768px) {
	.spektrix-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.spektrix-filters-row {
		grid-template-columns: 1fr;
	}
	.spektrix-event-image {
		height: 240px;
	}
}

@media (max-width: 375px) {
	.spektrix-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.spektrix-event-image {
		height: 220px;
	}
}
