/**
 * Event Countdown — Elementor editor panel styles.
 * Scoped to our own controls so nothing leaks into the rest of the panel.
 *
 * @since 2.1.0
 */

.tecc-preset-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 2px 0 0;
}

.tecc-preset-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 8px;
	border: 1px solid #d5d8dc;
	border-radius: 5px;
	background: #fff;
	cursor: pointer;
	text-align: start;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.tecc-preset-card:hover {
	border-color: #a4afb7;
}
.tecc-preset-card.is-active {
	border-color: #93003c;
	box-shadow: 0 0 0 1px #93003c;
}

.tecc-preset-card__label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	color: #495157;
}

.tecc-preset-card__desc {
	font-size: 10.5px;
	font-weight: 400;
	line-height: 1.4;
	color: #a4afb7;
}

/* The "presets overwrite your styles" note under the grid. */
.tecc-preset-note {
	font-style: normal;
	line-height: 1.5;
}
