.festival-like-block {
	margin: 32px 0; /* desktop default */
}
@media (max-width: 991px) {
	.festival-like-block {
		margin: -45px 0 30px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
	} /* mobile/tablet ~30px */
	.festival-vertical-banner {
		display: none !important;
	}
}

.like-row {
	display: flex;
	align-items: center;
	row-gap: 12px;
	flex-wrap: wrap;
}
.like-row.share-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-like {
	border-radius: 9999px;
	padding: 10px 46px;
	font-weight: 600;
	border: 2px solid #e74c3c; /* red border */
	color: #e74c3c; /* red text */
	background: transparent;
	transition: all 0.2s ease;
}
.btn-like.is-outline:hover {
	background: rgba(231, 76, 60, 0.08);
}
.btn-like.is-filled {
	background: #d1220e;
	color: #fff;
	border-color: #e74c3c;
}
.like-msg {
	font-size: 14px;
	opacity: 0.85;
}
.like-msg.ok {
	color: #2f7d32;
}
.like-msg.err {
	color: #b00020;
}

.festival-actions {
	margin-top: 16px;
	display: grid;
	gap: 20px;
}
.share-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.share-label {
	opacity: 0.7;
}
.share-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
}
.share-btn {
	text-decoration: none;
	border: 1px solid currentColor;
	opacity: 0.9;
	padding: 5px 10px;
	line-height: 1;
	border-radius: 30px;
}
.share-btn:hover {
	opacity: 1;
}

/* Vertical banner */

.festival-vertical-banner {
	margin-top: 50px;
	max-width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.festival-vertical-banner img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}

/* Modal */
.fest-modal::backdrop {
	background: rgba(0, 0, 0, 0.4);
}
.fest-modal {
	border: 0;
	border-radius: 16px;
	padding: 0;
	max-width: 560px;
	width: calc(100% - 32px);
}
.fest-modal__panel {
	padding: 20px;
}
.fest-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}
.fest-modal__close {
	background: transparent;
	border: 0;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}
.members-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 8px;
}
.members-form input[type='email'] {
	flex: 1;
	min-width: 220px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #ddd;
}
.members-form button[type='submit'] {
	padding: 10px 16px;
	border-radius: 999px;
	background: #e74c3c;
	color: #fff;
	border: 0;
	font-weight: 600;
	cursor: pointer;
}
.members-error {
	color: #b00020;
}
.members-success {
	color: #2f7d32;
}

.fest-status-msg {
	margin-top: 10px;
	font-size: 0.95rem;
	text-align: center;
	transition: opacity 0.3s ease;
}
.fest-status-msg.ok {
	color: #2ecc71; /* green */
}
.fest-status-msg.err {
	color: #e74c3c; /* red */
}
button#festUnlikeBtn {
	border: 1px solid transparent;
	border-radius: 30px;
	padding: 6px 15px;
	margin-bottom: 9px;
}
