/* ============================================================
   BLOG POST (single guide article) — clean, minimal, on-brand
   ============================================================ */

.single-post {
	--red: #E1251B;
	--red-dark: #B81E15;
	--ink: #1b1e23;
	--body: #4b5058;
	--muted: #8a8f98;
	--line: #e7e5e1;
	--panel: #f7f6f4;
	--green: #1a7f4b;
	--radius: 10px;
}

.single-post .ct-container-full {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}

/* ---------- Back link + hero ---------- */
.bp-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 32px 0 20px;
	font-size: 13px;
	font-weight: 700;
	color: var(--muted);
	text-decoration: none;
}
.bp-back:hover {
	color: var(--red);
}

.single-post .hero-section {
	margin-bottom: 8px;
}
.single-post .entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--muted);
	margin: 14px 0 0;
}
.single-post .entry-meta li {
	list-style: none;
}
.single-post .entry-meta .meta-categories a {
	display: inline-block;
	background: var(--panel);
	border: 1px solid var(--line);
	color: var(--red);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: .05em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 100px;
	text-decoration: none;
}
.single-post .bp-readtime::before {
	content: "\00b7";
	margin-right: 10px;
	color: var(--line);
}

.single-post .page-title {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	font-size: clamp(28px, 4vw, 38px);
	line-height: 1.15;
	letter-spacing: -.01em;
	color: var(--ink);
	margin: 14px 0 10px;
}
.single-post .page-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--body);
	max-width: 640px;
}
.single-post .page-description p {
	margin: 0;
}

/* ---------- Featured image (shown only if the post has one) ---------- */
.single-post .bp-featured-img {
	margin: 24px 0 8px;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}
.single-post .bp-featured-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Content ---------- */
.single-post .entry-content {
	max-width: 720px;
	font-size: 16px;
	line-height: 1.75;
	color: var(--body);
	margin-top: 24px;
}
.single-post .entry-content > p {
	margin: 0 0 18px;
}
.single-post .entry-content h2 {
	font-family: 'Archivo', sans-serif;
	font-weight: 800;
	font-size: 21px;
	color: var(--ink);
	letter-spacing: -.01em;
	margin: 34px 0 14px;
	padding-top: 16px;
	position: relative;
}
.single-post .entry-content h2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 36px;
	height: 3px;
	border-radius: 2px;
	background: var(--red);
}
.single-post .entry-content ul,
.single-post .entry-content ol {
	margin: 0 0 18px;
	padding-left: 22px;
}
.single-post .entry-content li {
	margin-bottom: 8px;
}
.single-post .entry-content a {
	color: var(--red);
}
.single-post .entry-content a:hover {
	color: var(--red-dark);
}
.single-post .bp-meta-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--muted);
	margin-bottom: 24px;
}

/* ---------- Helpline CTA ---------- */
.single-post .bp-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 720px;
	margin: 40px 0 0;
	padding: 22px 26px;
	background: var(--ink);
	border-radius: 14px;
	color: #fff;
}
.single-post .bp-cta h3 {
	font-family: 'Archivo', sans-serif;
	font-size: 17px;
	font-weight: 800;
	margin: 0 0 4px;
	color: #fff;
}
.single-post .bp-cta p {
	margin: 0;
	font-size: 13.5px;
	color: #b9bec6;
}
.single-post .bp-cta a.bp-cta-btn {
	flex: none;
	display: inline-flex;
	align-items: center;
	height: 46px;
	padding: 0 22px;
	background: var(--red);
	color: #fff;
	border-radius: 9px;
	font-family: 'Archivo', sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: background .15s ease;
}
.single-post .bp-cta a.bp-cta-btn:hover {
	background: var(--red-dark);
}

/* ---------- Related guides ---------- */
.single-post .bp-related {
	max-width: 800px;
	margin: 56px auto 0;
}
.single-post .bp-related h2 {
	font-family: 'Archivo', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 18px;
}

/* ---------- Comments ---------- */
.single-post .ct-comments-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 24px 60px;
	box-sizing: border-box;
	border-top: 1px solid var(--line);
	margin-top: 48px;
}
.single-post .ct-container-narrow {
	max-width: none;
	padding: 0;
}
.single-post .comment-reply-title {
	font-family: 'Archivo', sans-serif;
	font-size: 19px;
	font-weight: 800;
	color: var(--ink);
	margin: 0 0 18px;
}
.single-post .comment-form-field-input-author,
.single-post .comment-form-field-input-email,
.single-post .comment-form-field-input-url,
.single-post .comment-form-field-textarea {
	margin: 0 0 16px;
}
.single-post .comment-form label {
	display: block;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 6px;
}
.single-post .comment-form input[type="text"],
.single-post .comment-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--line) !important;
	border-radius: var(--radius) !important;
	padding: 11px 14px !important;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}
.single-post .comment-form input[type="text"]:focus,
.single-post .comment-form textarea:focus {
	border-color: var(--red) !important;
	outline: none;
}
.single-post .form-submit button {
	height: 46px;
	padding: 0 24px;
	background: var(--red) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: var(--radius) !important;
	font-family: 'Archivo', sans-serif;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
}
.single-post .form-submit button:hover {
	background: var(--red-dark) !important;
}

@media (max-width: 640px) {
	.single-post .bp-cta {
		flex-direction: column;
		align-items: flex-start;
	}
	.single-post .bp-cta a.bp-cta-btn {
		width: 100%;
		justify-content: center;
	}
}
