/* ================================================================
   VLB Partners — Single Partner Page
   ================================================================ */

.vlbps {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 20px 60px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	background-color: #fff;
}

/* ----------------------------------------------------------------
   Breadcrumb
   ---------------------------------------------------------------- */
.vlbps-breadcrumb {
	margin-bottom: 24px;
}

.vlbps-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #0073aa;
	text-decoration: none;
	transition: color .15s;
}

.vlbps-breadcrumb a:hover {
	color: #005a87;
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.vlbps-header {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.vlbps-name {
	margin: 0;
	font-size: 28px;
	font-weight: 800;
	color: #1f2937;
	line-height: 1.2;
}

.vlbps-badge {
	display: inline-block;
	padding: 3px 10px;
	background: #e3f2fd;
	color: #0073aa;
	font-size: 12px;
	font-weight: 700;
	border-radius: 12px;
	text-transform: uppercase;
	letter-spacing: .3px;
	white-space: nowrap;
}

/* ----------------------------------------------------------------
   Address
   ---------------------------------------------------------------- */
.vlbps-address {
	margin: 0 0 12px;
	font-size: 15px;
	color: #6b7280;
	line-height: 1.4;
}

/* ----------------------------------------------------------------
   Contact links
   ---------------------------------------------------------------- */
.vlbps-contact {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	margin-bottom: 24px;
}

.vlbps-contact__link {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 8px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	text-decoration: none;
	transition: background .15s, border-color .15s, transform .1s;
	min-width: 0;
}

.vlbps-contact__link:hover {
	background: #e5e7eb;
	border-color: #d1d5db;
	color: #1f2937;
	transform: translateY(-1px);
}

.vlbps-contact__link svg {
	flex-shrink: 0;
	color: #6b7280;
}

.vlbps-contact__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ----------------------------------------------------------------
   Photo
   ---------------------------------------------------------------- */
.vlbps-photo {
	margin-bottom: 24px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.vlbps-photo img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover;
}

/* ----------------------------------------------------------------
   Sections (Offer, Rules, Why we like)
   ---------------------------------------------------------------- */
.vlbps-section {
	margin-bottom: 24px;
	padding: 20px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
}

.vlbps-section__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	color: #1f2937;
}

.vlbps-section__body {
	font-size: 15px;
	line-height: 1.6;
	color: #374151;
}

.vlbps-section__body p {
	margin: 0 0 8px;
}

.vlbps-section__body p:last-child {
	margin-bottom: 0;
}

/* Offer — accent styling */
.vlbps-section--offer {
	background: #ee79ad;
	border-color: #ee79ad;
}

.vlbps-section--offer .vlbps-section__title {
	color: #fff;
}

.vlbps-section--offer .vlbps-section__body {
	color: #fff;
}

.vlbps-section--offer .vlbps-section__body a {
	color: #fff;
	text-decoration: underline;
}

.vlbps-section--offer .vlbps-section__body a:hover {
	opacity: 0.9;
}

/* Why we like — accent styling */
.vlbps-section--why {
	background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
	border-color: #f9a8d4;
}

.vlbps-section--why .vlbps-section__title {
	color: #BE024A;
}

/* ----------------------------------------------------------------
   Map
   ---------------------------------------------------------------- */
.vlbps-map {
	width: 100%;
	height: 300px;
	min-height: 300px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 12px;
	background-color: #f3f4f6;
	position: relative;
}

.vlbps-map.leaflet-container {
	background-color: #f3f4f6;
}

.vlbps-dir-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	padding: 10px 20px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background .15s;
}

.vlbps-dir-btn:hover {
	background: #005a87;
	color: #fff;
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 959px) {
	.vlbps-contact {
		flex-wrap: wrap;
		gap: 6px;
	}

	.vlbps-contact__link {
		flex: 1 1 calc(50% - 3px);
		min-width: calc(50% - 3px);
		padding: 10px 6px;
		font-size: 12px;
	}

	.vlbps-contact__text {
		display: none;
	}

	.vlbps-contact__link svg {
		width: 16px;
		height: 16px;
	}
}

@media (min-width: 768px) {
	.vlbps-contact {
		flex-wrap: nowrap;
	}

	.vlbps-contact__link {
		flex: 1 1 0;
		min-width: 0;
	}

	.vlbps-contact__text {
		display: inline;
	}
}

@media (max-width: 768px) {
	.vlbps {
		padding: 20px 16px 40px;
	}

	.vlbps-name {
		font-size: 22px;
	}

	.vlbps-photo img {
		max-height: 260px;
	}

	.vlbps-section {
		padding: 16px;
	}

	.vlbps-map {
		height: 220px;
	}
}
