/* ================================
   ARTICLE LAYOUT
================================ */
.article-title {
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.article-meta {
	font-size: 0.9rem;
	color: #6b7280;
	margin-bottom: 1.5rem;
	display: flex;
	gap: 12px;
}

.article-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	/* margin: 1.5rem 0; */
}

/* ================================
   CONTENT
================================ */
.article-body{
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}
.article-body p:empty {
    display: none;
}
.article-body p {
	margin-bottom: 1.25rem;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
	margin: 2rem 0 1rem;
	font-weight: 600;
	color: #111827;
}

.article-body a {
	color: #2563eb;
	text-decoration: underline;
    overflow-wrap: anywhere;
}

.article-body img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	/* margin: 1.5rem 0; */
}

.article-body blockquote {
	border-left: 4px solid #2563eb;
	padding: 1rem 1.25rem;
	background: #f9fafb;
	font-style: italic;
	margin: 2rem 0;
	border-radius: 4px;
}

.article-body pre {
	background: #111827;
	color: #f9fafb;
	padding: 1rem;
	overflow-x: auto;
	border-radius: 6px;
	margin: 2rem 0;
}

.article-body code {
	background: #f3f4f6;
	padding: 2px 6px;
	border-radius: 4px;
}

/* ================================
   FOOTER
================================ */
.article-footer {
	margin-top: 2rem;
	font-size: 0.9rem;
	color: #374151;
}

/* ============================== */
/* COMMENTS WRAPPER */
/* ============================== */
.comments-area {
    margin-top: 50px;
    padding: 0 10px;
}

.comments-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ============================== */
/* COMMENT LIST */
/* ============================== */
ol.commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 15px;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    background: #ffffff;
}

.comment .children {
    margin-top: 20px;
    list-style: none;
}

span.says {
    display: none;
}
.comment-content {
    font-size: 15px;
}
/* ============================== */
/* AUTHOR SECTION */
/* ============================== */
.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    margin-right: 12px;
}

.comment-author .fn {
    font-weight: bold;
    font-size: 16px;
}

/* ============================== */
/* COMMENT META */
/* ============================== */
.comment-metadata {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

/* ============================== */
/* COMMENT TEXT */
/* ============================== */
.comment-content p {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
}

/* ============================== */
/* REPLY LINK */
/* ============================== */
.reply a {
    font-weight: 600;
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
}

.reply a:hover {
    text-decoration: underline;
}


/* ============================== */
/* COMMENT FORM */
/* ============================== */
.comment-respond {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 25px;
    border: 1px solid #ddd;
    background: #fafafa;
    border-radius: 10px;
    
}

.comment-reply-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.comment-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #222;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 97%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border-color 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.comment-form textarea {
    min-height: 120px;
}

/* Submit Button */
.comment-form .form-submit input[type="submit"] {
    background-color: #0066cc;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-form .form-submit input[type="submit"]:hover {
    background-color: #004999;
}


/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
	.comments-area {
		padding: 16px;
	}

	.article-title {
		font-size: 1.75rem;
	}
    .article-body ul, .article-body ol{
        padding-left: 20px;
    }
    .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
        max-width: 90%;
    }
}
