/*------------------------------------------------------------------
[ AB Venue Card ]
------------------------------------------------------------------*/
.ab-venue-card {
	position: relative;
	background: #1c1c1c;
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

/* ---------- Image ---------- */
.ab-vc-image-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	flex-shrink: 0;
}

.ab-vc-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.ab-venue-card:hover .ab-vc-image-wrap img {
	transform: scale(1.04);
}

/* ---------- Body ---------- */
.ab-vc-body {
	padding: 28px 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	flex: 1;
}

/* ---------- Title ---------- */
.ab-vc-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin: 0;
}

/* ---------- Contacts ---------- */
.ab-vc-contacts {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.ab-vc-contacts-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 10px;
	display: block;
}

.ab-vc-contact-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	text-decoration: none;
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	transition: color 0.2s ease;
}

.ab-vc-contact-row:last-child {
	border-bottom: none;
}

.ab-vc-contact-row:hover {
	color: #ffffff;
}

.ab-vc-contact-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.ab-vc-contact-row:hover .ab-vc-contact-icon {
	background: var(--ab-vc-color, var(--ab-main-color, #EC944A));
}

.ab-vc-contact-icon svg {
	width: 16px;
	height: 16px;
	stroke: rgba(255, 255, 255, 0.6);
	transition: stroke 0.2s ease;
}

.ab-vc-contact-row:hover .ab-vc-contact-icon svg {
	stroke: #ffffff;
}

/* ---------- Map button ---------- */
.ab-vc-map-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(
		90deg,
		var(--ab-vc-color, var(--ab-main-color, #EC944A)),
		var(--ab-vc-color-alt, var(--ab-main-alt, #d97d2c)),
		var(--ab-vc-color, var(--ab-main-color, #EC944A))
	);
	background-size: 200% 100%;
	border-radius: 50px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;

	text-transform: uppercase;
	text-decoration: none;
	padding: 13px 26px;
	transition: background-position 0.5s ease;
	align-self: flex-start;
	white-space: nowrap;
	margin-top: 4px;
}

.ab-vc-map-btn:hover {
	background-position: 100% 0;
	color: #ffffff;
}

.ab-vc-map-btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}
