/* Article Container */
.article-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 3rem 2rem;
}

/* Back Link */
.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #6b5d52;
	text-decoration: none;
	margin-bottom: 2rem;
	font-size: 1rem;
	transition: opacity 0.3s ease;
}

.back-link:hover {
	opacity: 0.6;
}

/* Article Header */
.article-header {
	margin-bottom: 3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.article-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	display: block;
	width: 100%;
}

.article-subtitle {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
	display: block;
	width: 100%;
}

.article-date {
	font-size: 0.9rem;
	color: #999;
	display: block;
	width: 100%;
}

/* Featured Image */
.featured-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 3rem;
}

/* Article Content */
.article-content {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #444;
}

.article-content p {
	margin-bottom: 1.5rem;
}

.article-content h2 {
	font-size: 2rem;
	font-weight: 400;
	margin-top: 3rem;
	margin-bottom: 1rem;
	color: #2d2d2d;
}

.article-content h3 {
	font-size: 1.5rem;
	font-weight: 400;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #6b5d52;
}

.article-content ul,
.article-content ol {
	margin-bottom: 1.5rem;
	margin-left: 2rem;

	li::marker {
		font-size: 2rem;
		font-weight: 400;
		color: #2d2d2d;
	}
}

.article-content li {
	margin-bottom: 0.5rem;

	h3 {
		font-size: 2rem;
		font-weight: 400;
		color: #2d2d2d;
	}
}


.article-content img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 2rem 0;
}

.article-content blockquote {
	border-left: 4px solid #6b5d52;
	padding-left: 2rem;
	margin: 2rem 0;
	font-style: italic;
	color: #666;
	font-size: 1.2rem;
}

.article-content a {
    color: #6b5d52;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.article-content a:hover {
    opacity: 0.6;
}

/* Pull Quote */
.pull-quote {
	background: #d9d3ca;
	padding: 2rem;
	border-radius: 8px;
	margin: 3rem 0;
	text-align: center;
	font-size: 1.4rem;
	font-style: italic;
	color: #2d2d2d;
}

/* Author Section */
.author-section {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	margin-top: 4rem;
	display: flex;
	gap: 2rem;
	align-items: center;
}

.author-image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.author-info h4 {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.author-info p {
	color: #666;
	line-height: 1.6;
}

/* Related Posts */
.related-posts {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 2px solid #d9d3ca;
}

.related-posts h3 {
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 2rem;
	text-align: center;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.related-post {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.related-post:hover {
	transform: translateY(-5px);
}

.related-post img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.related-content {
	padding: 1.5rem;
}

.related-content h4 {
	font-size: 1.1rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.related-content p {
	font-size: 0.9rem;
	color: #999;
}

/* CTA Section */
.cta-section {
	background: #6b5d52;
	color: white;
	padding: 3rem;
	border-radius: 12px;
	text-align: center;
	margin-top: 4rem;
}

.cta-section h3 {
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.cta-section p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.properties-btn {
	display: inline-block;
	padding: 1rem 2.5rem;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.properties-btn-light {
	background: white;
	color: #6b5d52;
}

.properties-btn-light:hover {
	background: #f5f1eb;
	transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.related-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.article-title {
		font-size: 2rem;
	}

	.featured-image {
		height: 300px;
	}

	.author-section {
		flex-direction: column;
		text-align: center;
	}

	.article-content h2 {
		font-size: 1.5rem;
	}
}