/**
 * Universal Conference Manager - Frontend Stylesheet
 * Scoped to .ucm-scope
 * Version: 1.2.2
 */

/* Container wrapper */
.ucm-scope {
	width: 100%;
	max-width: var(--ucm-max-width, 100%);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.ucm-upcoming-container,
.ucm-archived-container {
	width: 100%;
	max-width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

.ucm-scope *,
.ucm-scope *::before,
.ucm-scope *::after {
	box-sizing: border-box;
}

/* Empty state */
.ucm-empty-state {
	padding: 30px 20px;
	text-align: center;
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	color: #64748b;
	font-size: 15px;
}

/* ==========================================================================
   1. UPCOMING CONFERENCES - GRID LAYOUT ([ucm_landing_upcoming])
   ========================================================================== */

.ucm-upcoming-container {
	width: 100%;
	margin: 0 auto;
}

.ucm-upcoming-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--ucm-up-grid-gap, 24px);
	align-items: stretch;
}

/* Card */
.ucm-upcoming-card {
	background: var(--ucm-up-bg, #ffffff);
	border: var(--ucm-up-border-width, 1px) solid var(--ucm-up-border-color, #e5e7eb);
	border-radius: var(--ucm-up-border-radius, 14px);
	box-shadow: var(--ucm-up-shadow, 0 4px 16px rgba(0, 0, 0, 0.06));
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ucm-upcoming-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
	border-color: #cbd5e1;
}

/* Media & Badges */
.ucm-card-media-wrapper {
	position: relative;
	width: 100%;
	height: var(--ucm-up-img-h-desk, 150px);
	background: #0f172a;
	overflow: hidden;
}

.ucm-card-image-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.ucm-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.ucm-upcoming-card:hover .ucm-card-image {
	transform: scale(1.05);
}

.ucm-card-image-placeholder {
	width: 100%;
	height: 100%;
	background: #1e293b;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
}

.ucm-card-status-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	background-color: var(--ucm-up-badge-bg, #20c997);
	color: var(--ucm-up-badge-text, #ffffff);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 20px;
	text-transform: uppercase;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ucm-card-date-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background-color: var(--ucm-up-datebox-bg, #ffffff);
	color: var(--ucm-up-datebox-text, #152f54);
	padding: 6px 10px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 44px;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
	z-index: 2;
	line-height: 1.1;
}

.ucm-card-month {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ucm-card-day {
	font-size: 16px;
	font-weight: 800;
}

/* Card Content Area */
.ucm-card-content {
	padding: var(--ucm-up-pad-desk, 18px);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.ucm-card-title {
	font-family: var(--ucm-up-title-font, inherit);
	font-size: var(--ucm-up-title-size, 18px);
	font-weight: var(--ucm-up-title-weight, 700);
	line-height: 1.35;
	margin: 0 0 10px 0;
}

.ucm-card-title a {
	color: var(--ucm-up-title-color, #152f54);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ucm-card-title a:hover {
	color: var(--ucm-secondary, #c58d24);
}

.ucm-card-dept {
	font-family: var(--ucm-up-dept-font, inherit);
	font-size: var(--ucm-up-dept-size, 14px);
	color: var(--ucm-up-dept-color, #4b5563);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.4;
}

.ucm-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	flex-shrink: 0;
}

/* Card Footer */
.ucm-card-footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
	gap: 8px;
}

.ucm-card-countdown {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: var(--ucm-up-countdown-size, 13px);
	color: var(--ucm-up-countdown-color, #e65100);
	font-weight: 700;
}

.ucm-btn-view-details {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background-color: var(--ucm-up-btn-bg, #152f54);
	color: var(--ucm-up-btn-text, #ffffff);
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.ucm-btn-view-details:hover {
	background-color: var(--ucm-secondary, #c58d24);
	color: #ffffff;
	transform: translateX(2px);
}

/* ==========================================================================
   2. ARCHIVED CONFERENCES - ROW LAYOUT ([ucm_landing_archived])
   ========================================================================== */

.ucm-archived-container {
	width: 100%;
	margin: 0 auto;
}

.ucm-archived-list {
	display: flex;
	flex-direction: column;
	gap: var(--ucm-arc-gap, 16px);
}

.ucm-archived-row {
	background: var(--ucm-arc-bg, #ffffff);
	border: var(--ucm-arc-border-width, 1px) solid var(--ucm-arc-border-color, #e5e7eb);
	border-radius: var(--ucm-arc-border-radius, 12px);
	box-shadow: var(--ucm-arc-shadow, 0 2px 10px rgba(0, 0, 0, 0.04));
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ucm-archived-row:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

.ucm-archived-row-inner {
	display: flex;
	align-items: center;
	padding: var(--ucm-arc-pad, 16px 20px);
	gap: 20px;
}

.ucm-archived-media {
	width: var(--ucm-arc-img-w, 220px);
	height: var(--ucm-arc-img-h, 90px);
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #0f172a;
}

.ucm-archived-media a {
	display: block;
	width: 100%;
	height: 100%;
}

.ucm-archived-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ucm-archived-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e293b;
	color: #64748b;
}

.ucm-archived-date-badge {
	background: var(--ucm-arc-datebox-bg, #f0f4f8);
	color: var(--ucm-arc-datebox-text, #152f54);
	padding: 10px 14px;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	flex-shrink: 0;
	line-height: 1.15;
}

.ucm-archived-month {
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.ucm-archived-year {
	font-size: 15px;
	font-weight: 800;
	margin-top: 2px;
}

.ucm-archived-info {
	flex-grow: 1;
	min-width: 0;
}

.ucm-archived-title {
	font-family: var(--ucm-arc-title-font, inherit);
	font-size: var(--ucm-arc-title-size, 18px);
	font-weight: var(--ucm-arc-title-weight, 700);
	margin: 0 0 6px 0;
	line-height: 1.35;
}

.ucm-archived-title a {
	color: var(--ucm-arc-title-color, #152f54);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ucm-archived-title a:hover {
	color: var(--ucm-secondary, #c58d24);
}

.ucm-archived-dept,
.ucm-archived-date-full {
	font-family: var(--ucm-arc-dept-font, inherit);
	font-size: var(--ucm-arc-dept-size, 14px);
	color: var(--ucm-arc-dept-color, #4b5563);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
}

.ucm-archived-date-full {
	margin-bottom: 0;
}

.ucm-archived-action {
	flex-shrink: 0;
}

.ucm-archived-row .ucm-btn-view-details {
	background-color: var(--ucm-arc-btn-bg, #ffffff);
	color: var(--ucm-arc-btn-text, #152f54);
	border: 1px solid var(--ucm-arc-btn-border, #152f54);
}

.ucm-archived-row .ucm-btn-view-details:hover {
	background-color: var(--ucm-primary, #152f54);
	color: #ffffff;
}

/* ==========================================================================
   3. RECENTLY COMPLETED SHORTCODE ([ucm_recently_completed])
   ========================================================================== */

.ucm-recent-completed-container {
	width: calc(100% - 40px);
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.ucm-recent-completed-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.ucm-recent-completed-layout {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.ucm-recent-details-card {
	flex: 0 0 50%;
	padding: 44px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #ffffff;
}

.ucm-recent-badge-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.ucm-recent-badge {
	display: inline-block;
	background: #f1f5f9;
	color: #475569;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.6px;
	padding: 4px 12px;
	border-radius: 20px;
	text-transform: uppercase;
}

.ucm-recent-cat {
	background: #e6fffa;
	color: #007c66;
}

.ucm-recent-title {
	font-size: 26px;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 0 18px 0;
}

.ucm-recent-title a {
	color: #152f54;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ucm-recent-title a:hover {
	color: #c58d24;
}

.ucm-recent-meta-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.ucm-recent-meta-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	color: #475569;
}

.ucm-recent-icon {
	color: #c58d24;
	display: inline-flex;
	align-items: center;
}

.ucm-recent-actions {
	margin-top: 10px;
}

.ucm-btn-recent-details {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #152f54;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ucm-btn-recent-details:hover {
	background-color: #c58d24;
	color: #ffffff;
	transform: translateY(-2px);
}

.ucm-recent-media-wrap {
	flex: 0 0 50%;
	position: relative;
	min-height: 380px;
	background: #0f172a;
	overflow: hidden;
}

.ucm-recent-media-link {
	display: block;
	width: 100%;
	height: 100%;
}

.ucm-recent-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ucm-recent-media-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
	pointer-events: none;
}

.ucm-recent-media-caption {
	position: absolute;
	bottom: 24px;
	right: 24px;
	text-align: right;
	z-index: 2;
}

.ucm-recent-caption-text {
	color: #ffffff;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* ==========================================================================
   4. FULL-PAGE LISTING SHORTCODES:
      [ucm_upcoming_conferences_page] & [ucm_archived_conferences_page]
   ========================================================================== */

.ucm-fullpage-listing {
	width: 100%;
	padding: 20px 0 60px 0;
}

.ucm-fullpage-container {
	width: calc(100% - 40px);
	max-width: var(--ucm-up-page-max-w, 1400px);
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: var(--ucm-up-page-col-gap, 30px);
	position: relative;
}

.ucm-archived-page-scope .ucm-fullpage-container {
	max-width: var(--ucm-arc-page-max-w, 1400px);
	gap: var(--ucm-arc-page-col-gap, 30px);
}

/* Sticky Filter Aside */
.ucm-filter-panel-aside {
	flex: 0 0 var(--ucm-up-page-filter-w, 300px);
	width: var(--ucm-up-page-filter-w, 300px);
	position: sticky;
	top: var(--ucm-up-page-sticky-top, 40px);
	z-index: 10;
}

.ucm-archived-page-scope .ucm-filter-panel-aside {
	flex: 0 0 var(--ucm-arc-page-filter-w, 300px);
	width: var(--ucm-arc-page-filter-w, 300px);
	top: var(--ucm-arc-page-sticky-top, 40px);
}

.ucm-mobile-filter-toggle {
	display: none;
	width: 100%;
	padding: 12px 16px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 700;
	color: #152f54;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ucm-filter-card {
	font-family: var(--ucm-up-page-filter-font, inherit);
	background-color: var(--ucm-up-page-filter-bg, #ffffff);
	border: var(--ucm-up-page-filter-border, 1px solid #e2e8f0);
	border-radius: var(--ucm-up-page-filter-radius, 14px);
	box-shadow: var(--ucm-up-page-filter-shadow, 0 4px 20px rgba(0, 0, 0, 0.04));
	padding: var(--ucm-up-page-filter-pad, 24px);
}

.ucm-archived-page-scope .ucm-filter-card {
	font-family: var(--ucm-arc-page-filter-font, inherit);
	background-color: var(--ucm-arc-page-filter-bg, #ffffff);
	border: var(--ucm-arc-page-filter-border, 1px solid #e2e8f0);
	border-radius: var(--ucm-arc-page-filter-radius, 14px);
	box-shadow: var(--ucm-arc-page-filter-shadow, 0 4px 20px rgba(0, 0, 0, 0.04));
	padding: var(--ucm-arc-page-filter-pad, 24px);
}

.ucm-filter-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 14px;
	border-bottom: 1px solid #f1f5f9;
	margin-bottom: 18px;
}

.ucm-filter-header-icon {
	color: #152f54;
	display: inline-flex;
}

.ucm-filter-heading {
	font-size: 18px;
	font-weight: 800;
	color: #152f54;
	margin: 0;
}

.ucm-filter-group {
	margin-bottom: 18px;
}

.ucm-filter-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #334151;
	margin-bottom: 8px;
	text-transform: capitalize;
}

.ucm-search-input-wrap {
	position: relative;
	width: 100%;
}

.ucm-filter-input {
	width: 100%;
	padding: 10px 36px 10px 14px;
	font-size: 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #ffffff;
	color: #334151;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ucm-filter-input:focus {
	border-color: #152f54;
	box-shadow: 0 0 0 3px rgba(21, 47, 84, 0.1);
}

.ucm-search-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
	display: inline-flex;
}

.ucm-checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 220px;
	overflow-y: auto;
	padding-right: 4px;
}

.ucm-checkbox-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13.5px;
	color: #475569;
	user-select: none;
}

.ucm-filter-checkbox {
	width: 16px;
	height: 16px;
	accent-color: #152f54;
	cursor: pointer;
	margin: 0;
}

.ucm-select-wrap select {
	width: 100%;
	padding: 10px 14px;
	font-size: 14px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background-color: #ffffff;
	color: #334151;
	cursor: pointer;
	outline: none;
}

.ucm-select-wrap select:focus {
	border-color: #152f54;
	box-shadow: 0 0 0 3px rgba(21, 47, 84, 0.1);
}

.ucm-filter-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
}

.ucm-btn-filter-apply {
	width: 100%;
	background-color: #152f54;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	padding: 11px 16px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.ucm-btn-filter-apply:hover {
	background-color: #c58d24;
}

.ucm-btn-filter-clear {
	width: 100%;
	background: transparent;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
	padding: 6px;
	border: none;
	cursor: pointer;
	text-decoration: underline;
	transition: color 0.2s ease;
}

.ucm-btn-filter-clear:hover {
	color: #152f54;
}

.ucm-filter-quote {
	margin-top: 20px;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
	text-align: center;
}

.ucm-filter-quote p {
	font-size: 13px;
	font-style: italic;
	color: #64748b;
	margin: 0;
	line-height: 1.45;
}

/* Results Section on the right */
.ucm-results-section {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Results Toolbar */
.ucm-results-toolbar {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.ucm-toolbar-left {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.ucm-results-heading {
	font-size: 20px;
	font-weight: 800;
	color: #152f54;
	margin: 0;
}

.ucm-results-count-badge {
	background: #f1f5f9;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 16px;
}

.ucm-toolbar-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ucm-sort-label {
	font-size: 13px;
	color: #64748b;
	font-weight: 600;
	white-space: nowrap;
}

.ucm-sort-select {
	padding: 8px 12px;
	font-size: 13px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	color: #152f54;
	font-weight: 600;
	cursor: pointer;
	outline: none;
}

/* Fullpage Conference Rows */
.ucm-conference-rows-list {
	display: flex;
	flex-direction: column;
	gap: var(--ucm-up-page-row-spacing, 18px);
}

.ucm-archived-page-scope .ucm-conference-rows-list {
	gap: var(--ucm-arc-page-row-spacing, 18px);
}

.ucm-fullpage-row {
	background-color: var(--ucm-up-page-row-bg, #ffffff);
	border: var(--ucm-up-page-row-border, 1px solid #e2e8f0);
	border-radius: var(--ucm-up-page-row-radius, 14px);
	box-shadow: var(--ucm-up-page-row-shadow, 0 4px 16px rgba(0, 0, 0, 0.04));
	padding: var(--ucm-up-page-row-pad, 20px);
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ucm-archived-page-scope .ucm-fullpage-row {
	background-color: var(--ucm-arc-page-row-bg, #ffffff);
	border: var(--ucm-arc-page-row-border, 1px solid #e2e8f0);
	border-radius: var(--ucm-arc-page-row-radius, 14px);
	box-shadow: var(--ucm-arc-page-row-shadow, 0 4px 16px rgba(0, 0, 0, 0.04));
	padding: var(--ucm-arc-page-row-pad, 20px);
}

.ucm-fullpage-row:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	border-color: #cbd5e1;
}

.ucm-row-media {
	flex: 0 0 var(--ucm-up-page-img-w, 220px);
	width: var(--ucm-up-page-img-w, 220px);
	height: var(--ucm-up-page-img-h-desk, 145px);
	border-radius: var(--ucm-up-page-img-radius, 10px);
	overflow: hidden;
	background: #0f172a;
	position: relative;
}

.ucm-archived-page-scope .ucm-row-media {
	flex: 0 0 var(--ucm-arc-page-img-w, 220px);
	width: var(--ucm-arc-page-img-w, 220px);
	height: var(--ucm-arc-page-img-h-desk, 145px);
	border-radius: var(--ucm-arc-page-img-radius, 10px);
}

.ucm-row-media a {
	display: block;
	width: 100%;
	height: 100%;
}

.ucm-row-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.ucm-fullpage-row:hover .ucm-row-img {
	transform: scale(1.05);
}

.ucm-row-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1e293b;
	color: #64748b;
}

.ucm-row-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ucm-row-header-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.ucm-row-title {
	font-family: var(--ucm-up-page-title-font, inherit);
	font-size: var(--ucm-up-page-title-size, 18px);
	font-weight: var(--ucm-up-page-title-weight, 700);
	margin: 0;
	line-height: 1.35;
}

.ucm-archived-page-scope .ucm-row-title {
	font-family: var(--ucm-arc-page-title-font, inherit);
	font-size: var(--ucm-arc-page-title-size, 18px);
	font-weight: var(--ucm-arc-page-title-weight, 700);
}

.ucm-row-title a {
	color: var(--ucm-up-page-title-color, #152f54);
	text-decoration: none;
	transition: color 0.2s ease;
}

.ucm-archived-page-scope .ucm-row-title a {
	color: var(--ucm-arc-page-title-color, #152f54);
}

.ucm-row-title a:hover {
	color: #c58d24;
}

.ucm-row-status-badge {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	flex-shrink: 0;
}

.ucm-badge-upcoming {
	background-color: #e6fffa;
	color: #007c66;
}

.ucm-badge-archived {
	background-color: #f1f5f9;
	color: #64748b;
}

.ucm-row-meta-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ucm-row-meta-item {
	font-family: var(--ucm-up-page-dept-font, inherit);
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: var(--ucm-up-page-dept-size, 14px);
	color: var(--ucm-up-page-dept-color, #475569);
	line-height: 1.4;
}

.ucm-archived-page-scope .ucm-row-meta-item {
	font-family: var(--ucm-arc-page-dept-font, inherit);
	font-size: var(--ucm-arc-page-dept-size, 14px);
	color: var(--ucm-arc-page-dept-color, #475569);
}

.ucm-row-meta-item.ucm-row-date {
	color: var(--ucm-up-page-date-color, #152f54);
	font-weight: 600;
}

.ucm-row-meta-item .ucm-meta-icon {
	color: #c58d24;
	display: inline-flex;
}

.ucm-meta-sep {
	color: #cbd5e1;
	margin: 0 2px;
}

.ucm-meta-venue {
	color: #64748b;
	font-weight: normal;
}

.ucm-row-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}

.ucm-category-tag {
	background: #f1f5f9;
	color: #475569;
	font-size: 11px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 4px;
}

/* Action block on the right */
.ucm-row-action-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	min-width: 140px;
}

.ucm-row-countdown-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.1;
}

.ucm-cd-number {
	font-size: 32px;
	font-weight: 900;
	color: #152f54;
	letter-spacing: -0.5px;
}

.ucm-cd-label {
	font-size: 11px;
	font-weight: 800;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.6px;
}

.ucm-row-archived-date-box .ucm-arc-month-txt {
	font-size: 20px;
	font-weight: 800;
	color: #152f54;
}

.ucm-row-archived-date-box .ucm-arc-year-txt {
	font-size: 15px;
	font-weight: 700;
	color: #64748b;
}

.ucm-fullpage-row .ucm-btn-view-details {
	background-color: var(--ucm-up-page-btn-bg, #152f54);
	color: var(--ucm-up-page-btn-text, #ffffff);
	padding: 10px 18px;
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 6px;
	width: 100%;
	justify-content: center;
}

.ucm-archived-page-scope .ucm-fullpage-row .ucm-btn-view-details {
	background-color: var(--ucm-arc-page-btn-bg, #152f54);
	color: var(--ucm-arc-page-btn-text, #ffffff);
}

.ucm-fullpage-row .ucm-btn-view-details:hover {
	background-color: var(--ucm-up-page-btn-hover-bg, #c58d24);
	color: var(--ucm-up-page-btn-hover-text, #ffffff);
}

/* No results state */
.ucm-no-results {
	background: #ffffff;
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	padding: 48px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.ucm-no-results-icon {
	color: #94a3b8;
}

.ucm-no-results-text {
	font-size: 16px;
	font-weight: 600;
	color: #475569;
	margin: 0;
}

.ucm-btn-reset-filters {
	background-color: #152f54;
	color: #ffffff;
	border: none;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.ucm-btn-reset-filters:hover {
	background-color: #c58d24;
}

/* ==========================================================================
   5. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
	.ucm-upcoming-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ucm-card-media-wrapper {
		height: var(--ucm-up-img-h-tab, 200px);
	}

	.ucm-archived-media {
		width: 180px;
		height: 85px;
	}

	.ucm-recent-completed-layout {
		flex-direction: column;
		gap: 24px;
	}

	.ucm-recent-details-card {
		flex: none;
		width: 100%;
		padding: 30px;
	}

	.ucm-recent-media-wrap {
		flex: none;
		width: 100%;
		height: 340px;
		min-height: 340px;
	}

	/* Full page shortcodes tablet */
	.ucm-fullpage-container {
		gap: 20px;
	}

	.ucm-filter-panel-aside {
		flex: 0 0 240px;
		width: 240px;
	}

	.ucm-row-media {
		flex: 0 0 180px;
		width: 180px;
		height: var(--ucm-up-page-img-h-tab, 135px);
	}
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
	.ucm-upcoming-grid {
		grid-template-columns: 1fr;
	}

	.ucm-card-media-wrapper {
		height: var(--ucm-up-img-h-mob, 190px);
	}

	.ucm-archived-row-inner {
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
		gap: 14px;
	}

	.ucm-archived-media {
		width: 100%;
		height: 140px;
	}

	.ucm-archived-date-badge {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 6px 12px;
		width: fit-content;
	}

	.ucm-archived-year {
		margin-top: 0;
	}

	.ucm-btn-view-details {
		width: 100%;
		justify-content: center;
		padding: 11px 18px;
	}

	/* Recently Completed: Image on Top, Details on Bottom */
	.ucm-recent-completed-layout {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.ucm-recent-media-wrap {
		order: 1;
		width: 100%;
		height: 240px;
		min-height: 240px;
		border-radius: 12px;
	}

	.ucm-recent-media-caption {
		bottom: 16px;
		right: 16px;
		max-width: 80%;
	}

	.ucm-recent-caption-text {
		font-size: 18px;
	}

	.ucm-recent-details-card {
		order: 2;
		width: 100%;
		padding: 22px 18px;
		border-radius: 12px;
	}

	.ucm-recent-title {
		font-size: 20px;
	}

	.ucm-btn-recent-details {
		width: 100%;
		justify-content: center;
		padding: 11px 18px;
	}

	/* Full page shortcodes mobile */
	.ucm-fullpage-container {
		flex-direction: column;
		gap: 20px;
		width: calc(100% - 24px);
	}

	.ucm-filter-panel-aside {
		width: 100%;
		flex: none;
		position: static;
		top: auto;
	}

	.ucm-mobile-filter-toggle {
		display: flex;
	}

	.ucm-filter-card {
		display: none;
		margin-bottom: 8px;
	}

	.ucm-filter-card.is-open {
		display: block;
	}

	.ucm-fullpage-row {
		flex-direction: column;
		align-items: stretch;
		padding: 16px;
		gap: 16px;
	}

	.ucm-row-media {
		width: 100%;
		flex: none;
		height: var(--ucm-up-page-img-h-mob, 190px);
	}

	.ucm-row-action-block {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-top: 14px;
		border-top: 1px solid #f1f5f9;
	}

	.ucm-row-countdown-box {
		flex-direction: row;
		gap: 8px;
		align-items: center;
	}

	.ucm-cd-number {
		font-size: 24px;
	}

	.ucm-fullpage-row .ucm-btn-view-details {
		width: auto;
		padding: 10px 18px;
	}
}