/**
 * TechBBQ Volunteering Agenda — dates grid with Apply Now CTA.
 *
 * Figma refs in widget PHP (1440 / 1024 / 768 / 360).
 * Section vertical spacing lives on .techbbq-volunteering-agenda (widget root), not the Elementor container,
 * so the orb backdrop fills the padded area.
 *
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024–1439, 1440+.
 */

.techbbq-volunteering-agenda {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	padding: 48px 0;
	overflow: hidden;
	color: var(--techbbq-content-primary);
	background-color: var(--techbbq-bg-main);
}

.techbbq-volunteering-agenda__orb {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
}

img.techbbq-volunteering-agenda__orb-image,
.techbbq-volunteering-agenda__orb-picture {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
}

.techbbq-volunteering-agenda__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-3);
	align-items: stretch;
	width: 100%;
}

.techbbq-volunteering-agenda__title {
	margin: 0;
}

.techbbq-volunteering-agenda__body {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-3);
	align-items: stretch;
	width: 100%;
}

.techbbq-volunteering-agenda__items {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-3);
	width: 100%;
}

.techbbq-volunteering-agenda__item {
	display: flex;
	flex-direction: column;
	gap: var(--techbbq-space-1);
	align-items: flex-start;
	min-width: 0;
}

.techbbq-volunteering-agenda__label {
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--techbbq-content-secondary);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.techbbq-volunteering-agenda__value {
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-l-size);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: var(--techbbq-text-paragraph-letter-spacing);
}

.techbbq-volunteering-agenda__actions {
	display: flex;
	width: 100%;
}

.techbbq-volunteering-agenda__button {
	display: inline-flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 64px;
	padding: 8px 20px 8px 30px;
	font-size: 20px;
	letter-spacing: 0.02em;
}

.techbbq-volunteering-agenda__button-label {
	flex: 0 1 auto;
}

.techbbq-volunteering-agenda__button-icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: var(--techbbq-radius-pill);
	background-color: #e3e3e3;
}

.techbbq-volunteering-agenda__button-icon-image {
	display: block;
	width: 12px;
	height: 12px;
	filter: brightness(0);
}

/* ── Tablet (768–1023) ── */
@media (min-width: 768px) {
	.techbbq-volunteering-agenda {
		padding: 72px 0;
	}

	.techbbq-volunteering-agenda__inner {
		gap: var(--techbbq-space-5);
	}

	.techbbq-volunteering-agenda__body {
		gap: var(--techbbq-space-5);
	}

	.techbbq-volunteering-agenda__items {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: var(--techbbq-space-2);
		row-gap: var(--techbbq-space-3);
	}

	.techbbq-volunteering-agenda__item {
		gap: 12px;
	}

	.techbbq-volunteering-agenda__value {
		font-size: var(--techbbq-text-paragraph-xl-size);
		line-height: 1.2;
	}

	.techbbq-volunteering-agenda__button {
		width: auto;
	}
}

/* ── Desktop (1024–1439) ── */
@media (min-width: 1024px) {
	.techbbq-volunteering-agenda {
		padding: 80px 0;
	}
}

/* ── Wide screen (1440+) ── */
@media (min-width: 1440px) {
	.techbbq-volunteering-agenda {
		padding: 72px 0;
	}

	.techbbq-volunteering-agenda__body {
		flex-direction: row;
		gap: var(--techbbq-space-2);
		align-items: flex-start;
	}

	.techbbq-volunteering-agenda__items {
		display: flex;
		flex: 1 1 0;
		flex-direction: row;
		gap: var(--techbbq-space-2);
		min-width: 0;
	}

	.techbbq-volunteering-agenda__item {
		flex: 1 1 0;
		min-width: 0;
	}

	.techbbq-volunteering-agenda__actions {
		flex: 0 0 auto;
		width: auto;
	}
}
