/**
 * Gemeenteberichten Stylesheet
 * Styles voor de PDF viewer en archief
 */

/* Main Container */
.hillegom-gemeenteberichten-page {
	max-width: 1200px;
	margin: 0 auto;
}

/* Nieuwste Editie */
.gemeentebericht-nieuwste {
	margin-bottom: 50px;
}

.gemeentebericht-header {
	padding: 15px 20px;
	background: #f8f9fa;
	border: 1px solid #e0e5eb;
	border-radius: 6px 6px 0 0;
	border-bottom: none;
}

.gemeentebericht-meta {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

.gemeentebericht-meta .badge {
	display: inline-block;
	padding: 6px 14px;
	background: #4A90E2;
	color: white;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.gemeentebericht-meta .date {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

.gemeentebericht-viewer {
	background: #fff;
	padding: 20px;
	border: 1px solid #e0e5eb;
	border-radius: 0 0 6px 6px;
}

.pdf-embed-container {
	width: 100%;
	height: 1200px;
	min-height: 800px;
	position: relative;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}

.pdf-embed-container embed {
	display: block;
	width: 100%;
	height: 100%;
}

/* Download Button */
.download-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #4A90E2;
	color: white !important;
	text-decoration: none !important;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.download-btn:hover {
	background: #357ABD;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
}

.download-btn .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
}

/* Archief Section */
.gemeentebericht-year-section {
	margin-bottom: 40px;
}

.year-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid #4A90E2;
	color: #333;
}

.gemeentebericht-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.gemeentebericht-item {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	transition: all 0.3s ease;
	gap: 20px;
}

.gemeentebericht-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #4A90E2;
}

.gb-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	background: #4A90E2;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gb-icon .dashicons {
	font-size: 32px;
	width: 32px;
	height: 32px;
	color: white;
}

.gb-info {
	flex: 1;
}

.gb-info h4 {
	margin: 0 0 8px 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.gb-meta {
	display: flex;
	gap: 15px;
	font-size: 14px;
	color: #666;
}

.gb-meta .week {
	font-weight: 600;
	color: #4A90E2;
}

.gb-actions {
	flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.gemeentebericht-header h2 {
		font-size: 22px;
	}

	.gemeentebericht-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.gemeentebericht-viewer iframe {
		height: 600px;
	}

	.gemeentebericht-item {
		flex-direction: column;
		text-align: center;
	}

	.gb-icon {
		width: 50px;
		height: 50px;
	}

	.gb-icon .dashicons {
		font-size: 24px;
		width: 24px;
		height: 24px;
	}

	.gb-meta {
		flex-direction: column;
		gap: 5px;
	}

	.year-title {
		font-size: 20px;
	}

	.gb-info h4 {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.gemeentebericht-viewer iframe {
		height: 500px;
	}

	.download-btn {
		font-size: 13px;
		padding: 10px 18px;
	}
}
