/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.14
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/*
 * TEC List view: show multiple event cards per row (Elementor row template + default rows).
 * Month headings stay full-width.
 */
.tribe-events .tribe-events-calendar-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: stretch;
}

@media (min-width: 600px) {
	.tribe-events .tribe-events-calendar-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.tribe-events .tribe-events-calendar-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Month separator rows must span all columns */
.tribe-events .tribe-events-calendar-list__month-separator {
	grid-column: 1 / -1;
}

/* Let each card fill its grid cell (helps Elementor templates) */
.tribe-events .tribe-events-calendar-list > li > .tribe-events-calendar-list__event-wrapper {
	height: 100%;
	min-width: 0;
}

/* [tec_featured_label] pill (Elementor / TEC list cards) */
.tec-featured-pill {
	display: inline-block;
	padding: 0.2em 0.65em !important;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #fff;
	background: #c41e3a;
	border-radius: 3px;
}

li.tribe-common-g-row.tribe-events-calendar-list__event-row.teh-tec-list-event--elementor [data-elementor-type="section"] {
	width: stretch;
}

.event-card-padding{
	padding: 10px !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-calendar-list__month-separator+.tribe-events-calendar-list__event-row {
    margin-top: 48px;
}