/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.5.15,
* Autoprefixer: v10.5.0
* Browsers: last 4 version
*/

/**
 * Workshop details box — [workshop_meta]
 * ------------------------------------------------------------------
 * The venue / date / time panel with its call-to-action buttons, shown
 * on a single workshop. Colours resolve from the Elementor kit when it
 * is present, with the kit's current values as fallbacks.
 */

.ttcw-meta {
	--ttcw-meta-primary: var( --e-global-color-primary, #1980D6 );
	--ttcw-meta-text:    var( --e-global-color-text, #333333 );
	--ttcw-meta-label:   #8A8A94;
	--ttcw-meta-surface: #F2F2F2;

	padding: 32px;
	border-radius: 16px;
	background-color: var( --ttcw-meta-surface );
	font-family: "Inter", Sans-serif;
}

/* ------------------------------------------------------------------
   Label / value pairs
   ------------------------------------------------------------------ */
.ttcw-meta-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.ttcw-meta-row {
	margin: 0;
}

.ttcw-meta-row dt {
	margin: 0 0 4px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var( --ttcw-meta-label );
}

.ttcw-meta-row dd {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var( --ttcw-meta-text );
}

/* ------------------------------------------------------------------
   Actions
   ------------------------------------------------------------------ */
.ttcw-meta-actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 12px;
	margin-top: 28px;
 }

/* The list can be absent on a workshop with no venue, date or time. */
.ttcw-meta-actions:first-child {
	margin-top: 0;
}

/* Scoped through .ttcw-meta so the theme's own anchor colours don't win. */
.ttcw-meta .ttcw-meta-btn {
	display: block;
	width: 100%;
	padding: 14px 20px;
	border: 0;
	border-radius: 100px;
	background-color: var( --ttcw-meta-primary );
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .06em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFFFFF;
	cursor: pointer;
	-webkit-transition:   0.15s ease;
	transition:   0.15s ease;
}

.ttcw-meta .ttcw-meta-btn:hover,
.ttcw-meta .ttcw-meta-btn:focus {
	color: #FFFFFF;
	text-decoration: none;
	background-color:  #FFB300;
}
.ttcw-meta .ttcw-meta-btn:hover{
	    -webkit-transform: translateY(-8px);
	        -ms-transform: translateY(-8px);
	            transform: translateY(-8px);
}
.ttcw-meta .ttcw-meta-btn:focus-visible {
	outline: 2px solid var( --ttcw-meta-primary );
	outline-offset: 3px;
}

/* ------------------------------------------------------------------
   Breakpoints — same stops as the Elementor kit
   ------------------------------------------------------------------ */
@media ( max-width: 768px ) {
	.ttcw-meta {
		padding: 24px;
	}

	.ttcw-meta-list {
		gap: 16px;
	}

	.ttcw-meta-actions {
		margin-top: 24px;
	}
}