.collabs-header {
	text-align: center;
	padding: 3rem 0 2rem;
}

.collabs-header h1 {
	color: var(--secondary-color);
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
}

.collabs-header .lead {
	color: #666;
	font-size: 1.1rem;
}

/* Hero Image - Viewport height like /fest */
.collabs-hero-image {
	position: relative;
	margin: 0 -20px;
	height: 50vh;
	min-height: 350px;
	max-height: 500px;
	overflow: hidden;
}

.collabs-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collabs-hero-caption {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 0.5rem 1rem;
	margin: 0;
	font-size: 0.85rem;
	border-radius: 4px;
}

/* Intro Section */
.collabs-intro-section {
	background: var(--secondary-color);
	color: white;
	padding: 3rem 0;
	margin: 0 -20px;
	text-align: center;
}

.collabs-intro-section h1 {
	color: var(--primary-color);
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.collabs-intro {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.collabs-guild {
	color: white;
	font-size: 1.1rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.collabs-subtitle {
	color: var(--primary-color);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.collabs-intro-section p {
	line-height: 1.7;
	margin-bottom: 1rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.collabs-cta {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.collabs-buttons {
	margin-top: 1.5rem;
}

/* Beer Cards Section */
.collabs-beers-section {
	background: var(--surface);
	padding: 3rem 0;
	margin: 0 -20px;
}

.collabs-beers-section .container-fluid {
	padding: 0 2rem;
}

.collab-beer-card {
	background: white;
	padding: 1.5rem;
	border-radius: 8px;
	height: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--primary-color);
}

.collab-beer-card h4 {
	color: var(--secondary-color);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.collab-host {
	color: var(--primary-color);
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.collab-beer-card p:last-child {
	margin-bottom: 0;
	color: var(--text-dark);
	line-height: 1.6;
	font-size: 0.95rem;
}

/* Trade Sponsors Section */
.collabs-sponsors-section {
	background: var(--surface);
	padding: 3rem 2rem 4rem 2rem;
	margin: 0 -20px;
	margin-bottom: -100px;
	padding-bottom: 100px;
	text-align: center;
}

.collabs-sponsors-section h3 {
	color: var(--secondary-color);
	margin-bottom: 2rem;
}

.collabs-sponsors-grid {
	max-width: 1000px;
	margin: 0 auto;
}

.collabs-sponsors-grid .col {
	max-width: 230px;
}

.collabs-sponsor-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: white;
	border-radius: 8px;
	height: 100%;
	transition: all 0.2s ease;
}

.collabs-sponsor-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.collabs-sponsor-item img {
	max-width: 100%;
	max-height: 120px;
	object-fit: contain;
}

/* Responsive */
@media (max-width: 991px) {
	.collabs-intro-section h1 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.collabs-hero-image {
		height: auto;
		min-height: 0;
		max-height: none;
	}

	.collabs-hero-image img {
		object-fit: contain;
	}

	.collabs-intro-section {
		padding: 2rem 1rem;
	}

	.collabs-beers-section .container-fluid {
		padding: 0 1rem;
	}
}
