/* Event list shortcode */
.kso-events-list {
	max-width: 720px;
}

.kso-events-list-items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kso-event-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 4px;
	border-bottom: 1px solid #e5e5e5;
}

.kso-event-item:last-child {
	border-bottom: none;
}

.kso-event-main {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.kso-event-category {
	display: inline-block;
	align-self: flex-start;
	background: #eaf0fa;
	color: #083a81;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	padding: 3px 9px;
	border-radius: 100px;
}

.kso-event-title {
	font-weight: 600;
	font-size: 16px;
	color: #1d2327;
}

.kso-event-meta {
	display: flex;
	gap: 12px;
	font-size: 13px;
	color: #646970;
}

.kso-event-date,
.kso-event-time,
.kso-event-location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.kso-event-date::before {
	content: "";
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	display: inline-block;
	background-color: #083a81;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cline x1='12' y1='14' x2='12' y2='18'/%3E%3Cline x1='10' y1='16' x2='14' y2='16'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cline x1='12' y1='14' x2='12' y2='18'/%3E%3Cline x1='10' y1='16' x2='14' y2='16'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-event-time::before {
	content: "";
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	display: inline-block;
	background-color: #083a81;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 16 14'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 16 14'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-event-location::before {
	content: "";
	width: 13px;
	height: 13px;
	flex-shrink: 0;
	display: inline-block;
	background-color: #083a81;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-event-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.kso-event-register-btn {
	background: #083a81;
	color: #fff;
	padding: 8px 18px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: background-color .15s ease, transform .1s ease;
}

.kso-event-register-btn:hover {
	background: #062c61;
	transform: translateY(-1px);
	color: #fff;
}

.kso-event-calendar-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #eaf0fa;
	color: #083a81;
	border: 1px solid #b9cceb;
	padding: 8px 18px 8px 14px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}

.kso-event-calendar-btn::before {
	content: "";
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	display: inline-block;
	background-color: currentColor;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cline x1='12' y1='14' x2='12' y2='18'/%3E%3Cline x1='10' y1='16' x2='14' y2='16'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Cline x1='12' y1='14' x2='12' y2='18'/%3E%3Cline x1='10' y1='16' x2='14' y2='16'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-event-calendar-btn:hover {
	background: #083a81;
	border-color: #083a81;
	color: #fff;
	transform: translateY(-1px);
}

.kso-events-empty {
	color: #646970;
	font-style: italic;
}

/* Calendar shortcode */
.kso-events-calendar {
	max-width: 480px;
}

.kso-cal-controls {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.kso-cal-controls select {
	padding: 6px 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
	cursor: pointer;
}

.kso-cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: #646970;
	margin-bottom: 6px;
}

.kso-cal-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
}

.kso-cal-day {
	aspect-ratio: 1 / 1;
	border: none;
	background: #f6f7f7;
	border-radius: 6px;
	font-size: 13px;
	color: #1d2327;
	cursor: default;
}

.kso-cal-day:disabled {
	color: #c3c4c7;
	background: transparent;
}

.kso-cal-day-empty {
	background: transparent;
}

.kso-cal-day-has-event {
	background: #083a81;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .15s ease, transform .1s ease;
}

.kso-cal-day-has-event:hover {
	background: #062c61;
	transform: scale(1.06);
}

.kso-cal-day-events {
	margin-top: 16px;
	padding: 14px 16px;
	background: #f6f7f7;
	border-radius: 6px;
	border-left: 4px solid #083a81;
}

.kso-cal-day-events h4 {
	margin: 0 0 8px;
	font-size: 14px;
	color: #1d2327;
}

.kso-cal-event-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kso-cal-event-list li {
	padding: 6px 0;
	border-bottom: 1px solid #e5e5e5;
	font-size: 13px;
}

.kso-cal-event-list li:last-child {
	border-bottom: none;
}

.kso-cal-event-range {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 3px;
	color: #646970;
}

.kso-cal-event-range::before {
	content: "";
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	display: inline-block;
	background-color: #083a81;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-cal-event-time {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 3px;
	color: #646970;
}

.kso-cal-event-time::before {
	content: "";
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	display: inline-block;
	background-color: #083a81;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 16 14'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='12 7 12 12 16 14'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-cal-event-location {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-top: 3px;
	color: #646970;
}

.kso-cal-event-location::before {
	content: "";
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	display: inline-block;
	background-color: #083a81;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.kso-cal-event-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.kso-cal-event-link,
.kso-cal-event-calendar-btn {
	display: inline-block;
	color: #083a81;
	font-weight: 600;
	font-size: 12px;
	text-decoration: none;
}

.kso-cal-event-link:hover,
.kso-cal-event-calendar-btn:hover {
	text-decoration: underline;
}
