/**
 * SF Beer Week Sponsors Page
 * Full-width logo grid
 */

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

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

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

/* Sponsor Grid */
.sponsors-grid {
	padding: 1rem 0;
	max-width: 1060px;
	margin-left: auto;
	margin-right: auto;
}

.sponsor-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
}

.sponsor-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

/* Trade Sponsors - 4/3 layout, 10% smaller */
.trade-sponsors-grid {
	margin-top: 2rem;
	max-width: 1260px;
	margin-left: auto;
	margin-right: auto;
}

.trade-sponsors-grid .col {
	max-width: 288px;
}

/* Media Partners - 20% smaller */
.media-sponsors-grid .col {
	max-width: 256px;
}

/* Section Headings */
.section-sponsors-heading {
	color: var(--secondary-color);
	text-align: center;
	margin: 3rem 0 1.5rem;
}

/* CTA Section */
.sponsor-cta {
	text-align: center;
	padding: 3rem 0;
	margin-top: 2rem;
}

.sponsor-cta h3 {
	color: var(--secondary-color);
	margin-bottom: 1rem;
}

.sponsor-cta p {
	color: #666;
	margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 576px) {
	.sponsor-item {
		width: 100%;
		max-width: 280px;
	}

	.sponsors-header h1 {
		font-size: 2rem;
	}
}
