﻿/* Detail Page Styles */
		.detail-hero {
			position: relative;
			height: 300px;
			margin-top: -70px;
			padding-top: 80px;
			background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
			display: flex;
			align-items: center;
			text-align: center;
			color: white;
		}

		.detail-hero-content {
			position: relative;
			z-index: 2;
			max-width: 800px;
			margin: 0 auto;
			padding: 0 20px;
		}

		.detail-hero h1 {
			font-size: 3rem;
			font-weight: 700;
			margin-bottom: 1rem;
			line-height: 1.2;
		}

		.detail-hero .breadcrumb {
			font-size: 1rem;
			opacity: 0.8;
			margin-bottom: 2rem;
		}

		.detail-hero .breadcrumb a {
			color: #fff;
			text-decoration: none;
		}

		.detail-hero .breadcrumb a:hover {
			text-decoration: underline;
		}

		/* Detail Content */
		.detail-content {
			padding: 80px 0;
			background: #ffffff;
		}

		.detail-container {
			max-width: 1200px;
			margin: 0 auto;
			padding: 0 20px;
		}

		.detail-layout {
			display: grid;
			grid-template-columns: 2fr 1fr;
			gap: 60px;
		}

		.detail-main {
			background: #fff;
		}

		.detail-featured-image {
			width: 100%;
			height: 400px;
			object-fit: cover;
			border-radius: 12px;
			margin-bottom: 30px;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		}

		.detail-meta {
			display: flex;
			align-items: center;
			gap: 20px;
			margin-bottom: 30px;
			padding-bottom: 20px;
			border-bottom: 1px solid #eee;
		}

		.detail-category {
			background: #4ADE80;
			color: white;
			padding: 6px 12px;
			border-radius: 20px;
			font-size: 0.85rem;
			font-weight: 500;
		}

		.detail-date {
			color: #666;
			font-size: 0.9rem;
		}

		.detail-content-body {
			font-size: 1.1rem;
			line-height: 1.8;
			color: #333;
		}

		.detail-content-body p {
			margin-bottom: 1.5rem;
		}

		.detail-content-body h2 {
			font-size: 1.8rem;
			color: #2c3e50;
			margin: 2rem 0 1rem 0;
			font-weight: 600;
		}

		.detail-content-body h3 {
			font-size: 1.4rem;
			color: #2c3e50;
			margin: 1.5rem 0 1rem 0;
			font-weight: 600;
		}

		.detail-content-body ul {
			margin: 1.5rem 0;
			padding-left: 2rem;
		}

		.detail-content-body li {
			margin-bottom: 0.5rem;
		}

		/* Sidebar */
		.detail-sidebar {
			background: #f8f9fa;
			padding: 40px;
			border-radius: 12px;
			height: fit-content;
			position: sticky;
			top: 100px;
		}

		.sidebar-section {
			margin-bottom: 40px;
		}

		.sidebar-section:last-child {
			margin-bottom: 0;
		}

		.sidebar-title {
			font-size: 1.3rem;
			color: #2c3e50;
			font-weight: 600;
			margin-bottom: 20px;
		}

		.sidebar-cta {
			background: #3EA74C;
			color: white;
			padding: 30px;
			border-radius: 8px;
			text-align: center;
		}

		.sidebar-cta h3 {
			font-size: 1.4rem;
			margin-bottom: 15px;
			font-weight: 600;
		}

		.sidebar-cta p {
			font-size: 1rem;
			margin-bottom: 20px;
			opacity: 0.9;
		}

		.sidebar-cta .btn {
			background: white;
			color: #3EA74C;
			padding: 12px 24px;
			border-radius: 6px;
			text-decoration: none;
			font-weight: 600;
			display: inline-block;
			transition: all 0.3s ease;
		}

		.sidebar-cta .btn:hover {
			background: #f0f0f0;
			transform: translateY(-1px);
		}

		.related-scams {
			list-style: none;
			padding: 0;
		}

		.related-scams li {
			margin-bottom: 15px;
		}

		.related-scams a {
			color: #2c3e50;
			text-decoration: none;
			font-weight: 500;
			display: block;
			padding: 12px;
			border-radius: 6px;
			transition: all 0.3s ease;
		}

		.related-scams a:hover {
			background: #e3f2fd;
			color: #1976d2;
		}

		/* Navigation */
		.detail-navigation {
			display: flex;
			justify-content: space-between;
			margin-top: 60px;
			padding-top: 40px;
			border-top: 1px solid #eee;
		}

		.nav-btn {
			background: #4ADE80;
			color: white;
			padding: 12px 24px;
			border-radius: 6px;
			text-decoration: none;
			font-weight: 500;
			transition: all 0.3s ease;
		}

		.nav-btn:hover {
			background: #22c55e;
			transform: translateY(-1px);
		}

		.nav-btn.disabled {
			background: #ccc;
			cursor: not-allowed;
		}

		/* CTA Section */
		.detail-cta {
			padding: 80px 0;
			background: #3EA74C;
			color: #fff;
			text-align: center;
		}

		.detail-cta h2 {
			font-size: 2.5rem;
			color: #fff;
			margin-bottom: 20px;
			font-weight: 700;
		}

		.detail-cta p {
			font-size: 1.1rem;
			margin-bottom: 30px;
			max-width: 600px;
			margin-left: auto;
			margin-right: auto;
		}

		.detail-cta .btn {
			background: white;
			color: #3EA74C;
			padding: 15px 30px;
			border-radius: 6px;
			text-decoration: none;
			font-weight: 600;
			display: inline-block;
			transition: all 0.3s ease;
		}

		.detail-cta .btn:hover {
			background: #f0f0f0;
			transform: translateY(-2px);
		}

		/* Responsive Design */
		@media (max-width: 992px) {
			.detail-layout {
				grid-template-columns: 1fr;
				gap: 40px;
			}

			.detail-sidebar {
				position: static;
			}
		}

		@media (max-width: 768px) {
			.mobile-menu-toggle {
				display: block;
			}

			.detail-hero h1 {
				font-size: 2.5rem;
			}

			.detail-featured-image {
				height: 250px;
			}

			.detail-sidebar {
				padding: 30px;
			}

			.detail-navigation {
				flex-direction: column;
				gap: 15px;
			}
		}

		@media (max-width: 480px) {
			.detail-hero h1 {
				font-size: 2rem;
			}

			.detail-content {
				padding: 40px 0;
			}

			.detail-sidebar {
				padding: 20px;
			}
		}