/* Simple Events — minimal front-end styles. Safe to edit or remove. */

.se-archive,
.se-single {
	max-width: 900px;
	margin: 2rem auto;
	padding: 0 1rem;
}

/* Archive header + toggle */
.se-archive-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
}
.se-toggle {
	display: inline-flex;
	border: 1px solid #ddd;
	border-radius: 999px;
	overflow: hidden;
}
.se-toggle-link {
	padding: .4rem 1rem;
	font-size: .9rem;
	text-decoration: none;
	color: #444;
}
.se-toggle-link.is-active {
	background: #1a1a1a;
	color: #fff;
}

/* Event list */
.se-event-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.se-event-item {
	display: flex;
	gap: 1.25rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid #eee;
}
.se-event-item.is-past {
	opacity: .65;
}
.se-event-thumb img {
	width: 160px;
	height: auto;
	border-radius: 6px;
	display: block;
}
.se-event-body {
	flex: 1;
}
.se-event-date,
.se-single-date {
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .03em;
	color: #b8860b;
	margin: 0 0 .25rem;
}
.se-event-name {
	margin: .1rem 0 .4rem;
	font-size: 1.3rem;
}
.se-event-name a,
.se-event-more {
	text-decoration: none;
}
.se-event-excerpt {
	color: #555;
	margin-bottom: .4rem;
}
.se-past-label {
	display: inline-block;
	margin-left: .5rem;
	padding: .05rem .5rem;
	font-size: .7rem;
	background: #eee;
	color: #666;
	border-radius: 4px;
	vertical-align: middle;
}

/* Single */
.se-single-back a {
	text-decoration: none;
	font-size: .9rem;
	color: #666;
}
.se-single-title {
	margin: .3rem 0;
}
.se-single-thumb img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 1rem 0;
}
.se-single-content {
	margin-top: 1.5rem;
	line-height: 1.7;
}

.se-empty {
	padding: 2rem 0;
	color: #666;
}
.se-pagination {
	margin-top: 2rem;
}

@media (max-width: 600px) {
	.se-event-item { flex-direction: column; }
	.se-event-thumb img { width: 100%; }
}
