/* Unique CSS classes for this page only */
.ug-main-container {
	padding: 40px 0;
}

/* User Guide Posts Section */
.ug-posts-container {
	margin-bottom: 40px;
}

.ug-post-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	overflow: hidden;
	transition: transform 0.3s;
}

.ug-post-card:hover {
	transform: translateY(-5px);
}

.ug-post-img {
	height: 200px;
	overflow: hidden;
	background-color: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ug-post-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ug-post-body {
	padding: 20px;
}

.ug-post-title {
	font-size: 1.25rem;
	margin-bottom: 10px;
	color: #2c3e50;
}

.ug-post-desc {
	color: #7f8c8d;
	margin-bottom: 15px;
	font-size: 0.95rem;
}

.ug-post-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: #95a5a6;
}

/* New Phones Section */
.ug-phone-list {
	margin-top: 30px;
}

.ug-phone-card {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #eee;
	transition: background 0.3s;
}

.ug-phone-card:hover {
	background: #f9f9f9;
}

.ug-phone-img {
	width: 60px;
	height: 60px;
	margin-right: 15px;
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}

.ug-phone-info {
	flex: 1;
}

.ug-phone-name {
	font-weight: 500;
	margin-bottom: 5px;
}

.ug-phone-price {
	color: #e74c3c;
	font-weight: bold;
	font-size: 0.9rem;
}

/* Sidebar Sections */
.ug-sidebar-section {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	margin-bottom: 30px;
	overflow: hidden;
}

.ug-sidebar-header {
	padding: 15px 20px;
	background: #3498db;
	color: white;
}

.ug-sidebar-body {
	padding: 20px;
}

.ug-brand-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.ug-brand-item:last-child {
	border-bottom: none;
}

.ug-brand-img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background: #f8f9fa;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
	.ug-post-img {
		height: 150px;
	}
	
	.ug-sidebar-section {
		margin-top: 30px;
	}
}