/* ==========================================================================
   Becomeyoo — Festival Labels Widget (bew-fl)
   ========================================================================== */

.bew-fl {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3em 0;
}

.bew-fl-inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

/* Full-width background variant */
.bew-fl--full-width {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
}

/* Row */
.bew-fl-row {
	display: flex;
	justify-content: center;
	gap: 12px;
	width: 100%;
	flex-wrap: wrap;
}

/* Label base */
.bew-fl-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	border-radius: 4px;
	text-decoration: none !important;
	line-height: 1.2;
	padding: 18px 32px;
	box-sizing: border-box;
}

/* Linked label hover */
a.bew-fl-label {
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
}

a.bew-fl-label:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	text-decoration: none !important;
}

/* 1 column: full width, biggest text */
.bew-fl-row--1 .bew-fl-label {
	flex: 1 1 100%;
	font-size: 32px;
}

/* 2 columns */
.bew-fl-row--2 .bew-fl-label {
	flex: 1 1 calc(50% - 6px);
	font-size: 26px;
}

/* 3 columns */
.bew-fl-row--3 .bew-fl-label {
	flex: 1 1 calc(33.333% - 8px);
	font-size: 20px;
}

/* ==========================================================================
   Responsive: Tablet (max-width 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
	.bew-fl-row--1 .bew-fl-label { font-size: 26px; }
	.bew-fl-row--2 .bew-fl-label { font-size: 22px; }
	.bew-fl-row--3 .bew-fl-label { font-size: 17px; }
}

/* ==========================================================================
   Responsive: Mobile (max-width 767px)
   ========================================================================== */
@media (max-width: 767px) {
	.bew-fl--mobile-stack .bew-fl-row {
		flex-direction: column;
	}

	.bew-fl--mobile-stack .bew-fl-row--1 .bew-fl-label,
	.bew-fl--mobile-stack .bew-fl-row--2 .bew-fl-label,
	.bew-fl--mobile-stack .bew-fl-row--3 .bew-fl-label {
		flex: 1 1 100%;
		font-size: 20px;
		padding: 14px 20px;
	}
}
