/* SVT Events Plugin Styles */

.svt-events-list {
	width: 100%;
}

/* ── Event row ────────────────────────────────────────────── */
.svt-event-row {
	background: #ffffff;
    border-radius: 74px;
    overflow: hidden;
    box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.03);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 25px;
    padding: 0px 25px 0px 25px;
}

.svt-event-inner {
	display: flex !important;
	flex-direction: row !important;
	align-items: stretch !important;
	width: 100%;
}

/* ── Columns ──────────────────────────────────────────────── */
.svt-col {
	box-sizing: border-box;
	padding: 20px 28px !important;
}

/* ── Column 1: Date ───────────────────────────────────────── */
.svt-col-date {
	flex: 0 0 30% !important;
	max-width: 30% !important;
	border-right: 1px solid #e8e8e8;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.svt-event-date {
	font-weight: 700 !important;
	font-size: 1rem !important;
	margin: 0 0 4px !important;
	color: #e0622a !important;
	display: block !important;
	line-height: 1.4;
}

.svt-event-month {
	font-size: 14px !important;
	color: #0b054b !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0em 0em 0em 0em !important;
	display: block !important;
}

/* ── Column 2: Event details ──────────────────────────────── */
.svt-col-details {
	flex: 1 1 auto !important;	
}

.svt-col-details p {	
	margin: 0em 0em 0em 0em !important;
	display: block !important;
	line-height: 1.6;
}

.svt-col-details p:last-child {
	margin-bottom: 0 !important;
}

.svt-event-title {
	font-weight: 700 !important;
	font-size: 1rem !important;
	color: #e0622a !important;
	margin-bottom: 6px !important;
}

.svt-event-time {
	color: #322d68 !important;
    font-size: 14px !important;
}

.svt-event-component {
	font-size: 14px !important;
	color: #312c67 !important;
}

/* ── Column 3: Register button ────────────────────────────── */
.svt-col-action {
	flex: 0 0 200px !important;
	max-width: 200px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.svt-register-btn {
	display: inline-flex !important;
	align-items: center !important;
	background-color: #e0622a !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	text-decoration: none !important;
	border-radius: 50px !important;
	overflow: hidden;
	white-space: nowrap;
	letter-spacing: 0.08em;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.svt-register-btn-label {
	padding: 10px 14px 10px 18px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
}

/* Incoming text — slides in from top on hover */
.svt-register-btn-label::before {
	content: "REGISTER";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding-left: 18px;
	transform: translateY(-100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	color: #1a1a1a;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	white-space: nowrap;
}

.svt-register-btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px 10px 10px;
	position: relative;
	transition: filter 0.3s ease;
}

.svt-register-btn-icon svg {
	width: 1em;
	height: 1em;
	fill: #ffffff;
	display: block;
	transition: fill 0.3s ease;
}

.svt-register-btn-icon:before {
	content: "";
	background-color: rgba(255, 255, 255, 0.4);
	width: 1px;
	height: 60%;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: background-color 0.3s ease;
}

/* ── Hover state ──────────────────────────────────────────── */
.svt-register-btn:hover,
.svt-register-btn:focus {
	background-color: #f69441 !important;
	color: transparent !important;
	text-decoration: none !important;
}

/* Slide original text down (fades with color: transparent) */
.svt-register-btn:hover .svt-register-btn-label,
.svt-register-btn:focus .svt-register-btn-label {
	color: transparent;
}

/* Slide incoming text down into view */
.svt-register-btn:hover .svt-register-btn-label::before,
.svt-register-btn:focus .svt-register-btn-label::before {
	transform: translateY(0);
}

/* Icon turns black */
.svt-register-btn:hover .svt-register-btn-icon svg,
.svt-register-btn:focus .svt-register-btn-icon svg {
	fill: #1a1a1a !important;
}


/* ── No-events fallback ───────────────────────────────────── */
.svt-no-events {
	text-align: center;
	color: #666666;
	font-style: italic;
	padding: 32px 0;
}

/* ── Tablet (768px – 1024px) ──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 601px) {
	.svt-col-date {
		flex: 0 0 32% !important;
		max-width: 32% !important;
	}

	.svt-col-action {
		flex: 0 0 190px !important;
		max-width: 190px !important;
	}
}

/* ── Mobile (≤600px) ──────────────────────────────────────── */
@media (max-width: 600px) {
	.svt-event-row {
		margin-bottom: 12px;
		border-radius: 17px;
        padding: 0px;
	}

	.svt-event-inner {
		flex-direction: column !important;
		text-align: center;
	}

	.svt-col {
		padding: 20px 15px !important
	}

	.svt-col-date {
		flex: 0 0 auto !important;
		max-width: 100% !important;
		border-right: none !important;

        border-style: solid;
        border-color: #0B054B1A;
        border-width: 0px 0px 1px 0px;
        padding: 20px 10px !important;
	}

	.svt-col-details {
		flex: 0 0 auto !important;
		max-width: 100% !important;
		border-right: none !important;
		border-bottom: none !important;
	}

	.svt-col-action {
		flex: 0 0 auto !important;
		max-width: 100% !important;
		border-right: none !important;
		border-bottom: none !important;		
	}

}
