/* Unique CSS for guide details page */
.guide-details-section {
	padding: 60px 0;
}

.guide-main-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 30px;
}

.guide-meta {
	color: #6c757d;
	margin-bottom: 20px;
}

.guide-content {
	line-height: 1.8;
}

.related-guides {
	margin-top: 50px;
}

.related-guide-card {
	display: flex;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.related-guide-img {
	width: 100px;
	height: 70px;
	object-fit: cover;
	border-radius: 4px;
	margin-right: 15px;
}

.phone-card {
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	margin-bottom: 20px;
	overflow: hidden;
	transition: transform 0.3s;
}

.phone-card:hover {
	transform: translateY(-5px);
}

.phone-img {
	height: 150px;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
}

.phone-img img {
	max-height: 100%;
	max-width: 100%;
}

.phone-body {
	padding: 15px;
	text-align: center;
}

.brand-card {
	display: flex;
	align-items: center;
	padding: 10px;
	border-radius: 8px;
	margin-bottom: 10px;
	background: white;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.brand-img {
	width: 40px;
	height: 40px;
	margin-right: 15px;
	object-fit: contain;
}

@media (max-width: 767.98px) {
	.guide-main-img {
		height: 250px;
	}
	
	.sidebar-section {
		margin-top: 40px;
	}
}