/* ==========================================================================
   BoardGameLink Blog — public index grid + article page + comments
   ========================================================================== */

.blog-page {
	background-color: #f6efe9;
	margin-top: calc(-1 * var(--bgl-header-h));
}

.blog-shell {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 24px;
}
.blog-shell--narrow { max-width: 760px; }

@media (max-width: 768px) {
	.blog-shell { padding: 0 20px; }
}

/* ---------------------------------- Masthead ----------------------------- */
.blog-masthead { padding: calc(64px + var(--bgl-header-h)) 0 8px; }
.blog-masthead-title {
	font-family: 'Crimson Pro', Georgia, serif;
	font-size: 52px; font-weight: 700; color: #001a1f;
	line-height: 1.08; letter-spacing: -1px; margin: 0;
}
.blog-masthead-tagline {
	font-family: 'Fustat', 'Manrope', sans-serif;
	font-size: 19px; font-weight: 400; color: #4b5c5c;
	line-height: 1.5; margin: 14px 0 0; max-width: 620px;
}
/* No category nav yet (teasers only): extra breathing room below the tagline. */
.blog-masthead:not(:has(.blog-nav)) {
	padding-bottom: 40px;
}
.blog-masthead:not(:has(.blog-nav)) .blog-masthead-tagline {
	margin-bottom: 28px;
}
.blog-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px; margin-top: 22px; }
.blog-nav-link {
	display: inline-flex; align-items: center; gap: 7px;
	font-family: 'Fustat', 'Manrope', sans-serif; font-size: 14px; font-weight: 500;
	color: #4b5c5c; text-decoration: none; padding: 7px 15px; border-radius: 999px;
	background: #f5f5f5; white-space: nowrap;
	transition: background 0.18s ease, color 0.18s ease;
}
.blog-nav-link i { font-size: 16px; line-height: 1; opacity: 0.75; }
.blog-nav-link:hover { background: #ececec; color: #001a1f; text-decoration: none; }
.blog-nav-link.is-active { background: #003842; color: #fff; }
.blog-nav-link.is-active i { opacity: 1; }
.blog-nav-status {
	margin-left: auto; font-family: 'Fustat', 'Manrope', sans-serif; font-size: 11px;
	font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #001a1f;
	opacity: 0.4; white-space: nowrap;
}
@media (max-width: 768px) {
	.blog-masthead { padding: calc(44px + var(--bgl-header-h)) 0 4px; }
	.blog-masthead:not(:has(.blog-nav)) { padding-bottom: 32px; }
	.blog-masthead:not(:has(.blog-nav)) .blog-masthead-tagline { margin-bottom: 22px; }
	.blog-masthead-title { font-size: 38px; }
	.blog-masthead-tagline { font-size: 17px; }
}
@media (max-width: 560px) {
	.blog-nav { flex-wrap: nowrap; gap: 24px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
	.blog-nav::-webkit-scrollbar { display: none; }
}

/* ---------------------------------- Lead --------------------------------- */
.blog-lead { padding: 40px 0 64px; }
.blog-lead-inner { max-width: 760px; }
.blog-lead-title {
	font-family: 'Crimson Pro', Georgia, serif; font-size: 40px; font-weight: 700;
	color: #001a1f; line-height: 1.18; letter-spacing: -0.6px; margin: 0 0 24px;
}
.blog-lead-body {
	font-family: 'Fustat', 'Manrope', sans-serif; font-size: 18px; font-weight: 400;
	color: #001a1f; line-height: 1.65; opacity: 0.9;
}
.blog-lead-body p { margin: 0 0 1.1em; }
.blog-lead-body p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
	.blog-lead { padding: 28px 0 52px; }
	.blog-lead-title { font-size: 30px; }
	.blog-lead-body { font-size: 16px; }
}

/* ---------------------------- Article grid ------------------------------- */
.blog-articles-section { background-color: #ffffff; padding: 56px 0 76px; z-index: 2; }
.blog-articles-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 32px; }
.blog-articles-heading {
	font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase; color: #001a1f; opacity: 0.55; margin: 0;
}
.blog-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* Up Next: 3 visible cards; horizontal scroll + arrows when more (index.php game-row pattern). */
.blog-teasers-track {
	position: relative;
	overflow: visible;
	container-type: inline-size;
}
.blog-teasers-scroll {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 26px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	-ms-overflow-style: none;
	min-width: 0;
	padding: 8px 0 12px;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}
.blog-teasers-scroll::-webkit-scrollbar { display: none; }
.blog-teasers-scroll.is-vertical-touch {
	overflow-x: hidden;
	scroll-snap-type: none;
}
.blog-teasers-scroll .blog-article-card {
	flex: 0 0 calc((100% - 2 * 26px) / 3);
	min-width: 0;
	scroll-snap-align: start;
	scroll-snap-stop: normal;
}
.blog-teasers-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	transform: translateY(-50%);
	z-index: 3;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #003038;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
	/* Center on the cover image (3 visible cards, 26px gaps). */
	top: calc((100cqw - 52px) / 3 * 5 / 16);
}
.blog-teasers-nav:hover:not(:disabled) {
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.blog-teasers-nav:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}
.blog-teasers-nav i { font-size: 22px; }
.blog-teasers-nav-prev { left: 4px; }
.blog-teasers-nav-next { right: 4px; }

.blog-article-card {
	display: flex; flex-direction: column; background: #ffffff;
	border: 1px solid rgba(0, 26, 31, 0.08); border-radius: 18px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 26, 31, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}
.blog-article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0, 26, 31, 0.10); text-decoration: none; }

/* Teaser cards: unpublished previews shown as non-clickable "Coming soon". */
.blog-article-card--teaser { cursor: default; }
.blog-article-card--teaser:hover { transform: none; box-shadow: 0 4px 16px rgba(0, 26, 31, 0.04); }
.blog-article-card--teaser:hover .blog-article-arrow { transform: none; }

.blog-article-thumb {
	position: relative; aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 84% 22%, color-mix(in srgb, var(--blog-thumb-accent, #428583) 20%, transparent) 0, transparent 46%),
		radial-gradient(circle at 10% 96%, color-mix(in srgb, var(--blog-thumb-accent, #428583) 12%, transparent) 0, transparent 42%),
		var(--blog-thumb-tint, #eef2f2);
}
.blog-article-thumb::after {
	content: ""; position: absolute; inset: 0;
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 55%);
	pointer-events: none;
}
.blog-article-thumb i {
	position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
	width: 84px; height: 84px; border-radius: 50%; background: rgba(255, 255, 255, 0.62);
	color: var(--blog-thumb-accent, #428583); font-size: 38px; line-height: 1;
	box-shadow: 0 8px 20px rgba(0, 26, 31, 0.08);
}
.blog-article-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.blog-article-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.blog-article-kicker {
	font-family: 'Fustat', 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
	letter-spacing: 0.09em; text-transform: uppercase; color: var(--blog-thumb-accent, #428583); margin: 0 0 10px;
}
.blog-article-title {
	font-family: 'Crimson Pro', Georgia, serif; font-size: 24px; font-weight: 700;
	color: #001a1f; line-height: 1.2; letter-spacing: -0.4px; margin: 0 0 10px;
}
.blog-article-standfirst { font-family: 'Fustat', 'Manrope', sans-serif; font-size: 15px; line-height: 1.55; color: #4b5c5c; margin: 0 0 20px; }
.blog-article-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(0, 26, 31, 0.08); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.blog-article-status { font-family: 'Fustat', 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #001a1f; opacity: 0.45; }
.blog-article-date { font-family: 'Fustat', 'Manrope', sans-serif; font-size: 12px; color: #6b7c7c; }
.blog-article-arrow { display: inline-flex; align-items: center; justify-content: center; font-size: 18px; line-height: 1; color: var(--blog-thumb-accent, #428583); transition: transform 0.2s ease; }
.blog-article-card:hover .blog-article-arrow { transform: translateX(4px); }

@media (max-width: 900px) { .blog-articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
	.blog-articles-section { padding: 44px 0 60px; }
	.blog-teasers-track { overflow: hidden; padding: 0 4px; }
	.blog-teasers-scroll {
		gap: 16px;
		touch-action: manipulation;
	}
	.blog-teasers-scroll .blog-article-card {
		flex: 0 0 calc(50% - 8px);
	}
	.blog-teasers-nav { top: calc(50cqw * 5 / 16); }
}
@media (max-width: 600px) {
	.blog-articles-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; gap: 22px; }
	.blog-teasers-scroll .blog-article-card {
		flex: 0 0 calc(100% - 8px);
		max-width: 440px;
	}
	.blog-teasers-nav { top: calc((100cqw - 8px) * 5 / 16); }
}

/* ---------------------------- Contribute CTA ----------------------------- */
.blog-share-section { background-color: #f0e7db; padding: 68px 0 80px; z-index: 2; }
.blog-share-card { background: #003842; border-radius: 24px; padding: 52px 56px 48px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.blog-share-eyebrow { font-family: 'Fustat', 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #ea9921; margin: 0 0 12px; }
.blog-share-title { font-family: 'Crimson Pro', Georgia, serif; font-size: 34px; font-weight: 700; color: #ffffff; line-height: 1.18; letter-spacing: -0.5px; margin: 0 0 18px; }
.blog-share-body { font-family: 'Fustat', 'Manrope', sans-serif; font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, 0.88); max-width: 620px; margin: 0; }
.blog-share-body p { margin: 0 0 0.9em; }
.blog-share-body p:last-child { margin-bottom: 0; }
.blog-share-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Fustat', 'Manrope', sans-serif; font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 999px; background: #ea9921; color: #ffffff; border: 2px solid #ea9921; text-decoration: none; white-space: nowrap; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease; }
.blog-share-btn:hover { background: #d4861a; border-color: #d4861a; color: #ffffff; transform: translateY(-1px); }
@media (max-width: 820px) { .blog-share-card { grid-template-columns: 1fr; gap: 28px; } .blog-share-btn { justify-self: start; } }
@media (max-width: 768px) { .blog-share-section { padding: 56px 0 64px; } .blog-share-card { padding: 38px 28px 34px; border-radius: 20px; } .blog-share-title { font-size: 27px; } .blog-share-body { font-size: 16px; } }

/* ---------------------------- Closing ------------------------------------ */
.blog-closing-section { background-color: #ffffff; padding: 60px 0 84px; z-index: 2; }
.blog-closing-inner { max-width: 720px; }
.blog-closing-title { font-family: 'Crimson Pro', Georgia, serif; font-size: 28px; font-weight: 700; color: #001a1f; line-height: 1.25; letter-spacing: -0.4px; margin: 0 0 14px; }
.blog-closing-text { font-family: 'Fustat', 'Manrope', sans-serif; font-size: 17px; line-height: 1.65; color: #4b5c5c; margin: 0; max-width: 620px; }
@media (max-width: 768px) { .blog-closing-section { padding: 48px 0 64px; } .blog-closing-title { font-size: 24px; } .blog-closing-text { font-size: 16px; } }

/* ==========================================================================
   Article page
   ========================================================================== */
.blog-article-page { background: #fff; margin-top: calc(-1 * var(--bgl-header-h)); }

.blog-article-hero { background: #f6efe9; padding: calc(56px + var(--bgl-header-h)) 0 40px; }
.blog-article-backlink { display: inline-flex; align-items: center; gap: 6px; font-family: 'Fustat','Manrope',sans-serif; font-size: 14px; font-weight: 600; color: #428583; text-decoration: none; margin-bottom: 18px; }
.blog-article-backlink:hover { text-decoration: underline; color: #428583; }
.blog-article-hero-kicker { font-family: 'Fustat','Manrope',sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #428583; margin: 0 0 12px; }
.blog-article-hero-title { font-family: 'Crimson Pro', Georgia, serif; font-size: 46px; font-weight: 700; color: #001a1f; line-height: 1.1; letter-spacing: -0.8px; margin: 0; }
.blog-article-hero-subtitle { font-family: 'Fustat','Manrope',sans-serif; font-size: 20px; line-height: 1.5; color: #4b5c5c; margin: 16px 0 0; }
.blog-article-hero-meta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 20px; font-family: 'Fustat','Manrope',sans-serif; font-size: 14px; color: #6b7c7c; }
.blog-article-hero-meta .dot { opacity: 0.5; }
.blog-preview-banner { background: #fff4d6; border: 1px solid #f0d488; color: #7a5b12; border-radius: 12px; padding: 12px 16px; font-family: 'Fustat','Manrope',sans-serif; font-size: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.blog-preview-banner i { font-size: 18px; }

.blog-article-cover { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.blog-article-cover-inner { border-radius: 20px; overflow: hidden; margin-top: -20px; box-shadow: 0 20px 50px rgba(0,26,31,0.14); background: #eef2f2; }
.blog-article-cover-inner img { width: 100%; height: auto; display: block; }

.blog-article-content {
	font-family: 'Fustat','Manrope',sans-serif;
	font-size: 17px;
	line-height: 1.65;
	color: #1c2f31;
	padding: 44px 0 20px;
	max-width: 680px;
	--blog-qa-gutter: 1.75rem;
	--blog-qa-marker-gap: 0.75rem;
	--blog-qa-text-indent: calc(var(--blog-qa-gutter) + var(--blog-qa-marker-gap));
}
.blog-article-content .blog-article-paragraph { margin: 0 0 1.4em; }
.blog-article-content .blog-article-paragraph a { color: #428583; text-decoration: underline; }

/* Interview Q&A blocks — sizes inherit from .blog-article-content body text */
.blog-article-content .blog-article-qa { margin: 0 0 45px; }
.blog-article-content .blog-article-qa:last-child { margin-bottom: 0; }
.blog-article-content .blog-article-qa-question-row {
	display: grid;
	grid-template-columns: var(--blog-qa-gutter) minmax(0, 1fr);
	column-gap: var(--blog-qa-marker-gap);
	align-items: start;
}
.blog-article-content .blog-article-qa-marker {
	font-family: inherit;
	font-size: inherit;
	font-weight: 700;
	line-height: 1.45;
	color: #428583;
	text-align: right;
}
.blog-article-content .blog-article-qa-question {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	font-weight: 600;
	line-height: 1.45;
	color: #428583;
}
.blog-article-content .blog-article-qa-answer {
	margin: 14px 0 0 var(--blog-qa-text-indent);
	color: #1c2f31;
	line-height: 1.58;
}
.blog-article-content .blog-article-qa-answer-p {
	margin: 0 0 16px;
	font-size: inherit;
	line-height: inherit;
}
.blog-article-content .blog-article-qa-answer-p:last-child { margin-bottom: 0; }
.blog-article-content .blog-article-qa-answer a { color: #428583; text-decoration: underline; }

/* Button row */
.blog-article-content .blog-article-buttons { margin: 2.4em 0 1.6em; }
.blog-article-content .blog-article-buttons-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}
.blog-article-content .blog-article-btn { font-size: 15px; padding: 12px 22px; }
.blog-article-content .blog-article-buttons-note {
	margin: 12px 0 0;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.55;
	color: #6b7c7c;
}

.blog-article-content .blog-article-heading { font-family: 'Crimson Pro', Georgia, serif; color: #001a1f; letter-spacing: -0.4px; line-height: 1.25; }
.blog-article-content .blog-article-h2 { font-size: 30px; margin: 1.6em 0 0.5em; }
.blog-article-content .blog-article-h3 { font-size: 24px; margin: 1.4em 0 0.4em; }
.blog-article-content .blog-article-figure { margin: 1.8em 0; }
.blog-article-content .blog-article-figure img { width: 100%; border-radius: 14px; display: block; }
.blog-article-content .blog-article-figcaption { font-size: 14px; color: #6b7c7c; text-align: center; margin-top: 10px; }
.blog-article-content .blog-article-quote { border-left: 4px solid #428583; margin: 1.8em 0; padding: 4px 0 4px 22px; }
.blog-article-content .blog-article-quote p { font-family: 'Crimson Pro', Georgia, serif; font-size: 26px; line-height: 1.4; color: #003842; font-style: italic; margin: 0; }
.blog-article-content .blog-article-cite { display: block; margin-top: 10px; font-family: 'Fustat','Manrope',sans-serif; font-style: normal; font-size: 14px; font-weight: 700; color: #6b7c7c; }
.blog-article-content .blog-article-cite::before { content: "— "; }

@media (max-width: 768px) {
	.blog-article-hero { padding: calc(40px + var(--bgl-header-h)) 0 32px; }
	.blog-article-hero-title { font-size: 32px; }
	.blog-article-hero-subtitle { font-size: 17px; }
	.blog-article-content {
		font-size: 16px;
		padding: 32px 0 12px;
		--blog-qa-gutter: 1.5rem;
		--blog-qa-marker-gap: 0.625rem;
	}
	.blog-article-content .blog-article-qa { margin-bottom: 40px; }
	.blog-article-content .blog-article-qa-question { font-size: 1.0625em; line-height: 1.45; }
	.blog-article-content .blog-article-qa-marker { font-size: 1.0625em; line-height: 1.45; }
	.blog-article-content .blog-article-qa-answer { margin-top: 12px; line-height: 1.58; }
	.blog-article-content .blog-article-qa-answer-p { margin-bottom: 14px; }
	.blog-article-content .blog-article-h2 { font-size: 25px; }
	.blog-article-content .blog-article-h3 { font-size: 21px; }
	.blog-article-content .blog-article-quote p { font-size: 22px; }
}

/* ==========================================================================
   Comments
   ========================================================================== */
.blog-comments { background: #f6efe9; padding: 56px 0 80px; }
.blog-comments-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.blog-comments-title { font-family: 'Crimson Pro', Georgia, serif; font-size: 28px; font-weight: 700; color: #001a1f; margin: 0 0 24px; }

.blog-comment-form { background: #fff; border: 1px solid rgba(0,26,31,0.08); border-radius: 16px; padding: 18px; margin-bottom: 28px; }
.blog-comment-form textarea { width: 100%; border: 1px solid #d9e2e2; border-radius: 10px; padding: 12px 14px; font: inherit; font-family: 'Fustat','Manrope',sans-serif; font-size: 15px; line-height: 1.5; resize: vertical; box-sizing: border-box; color: #1c2f31; }
.blog-comment-form textarea:focus { outline: none; border-color: #428583; box-shadow: 0 0 0 3px rgba(66,133,131,.15); }
.blog-comment-form-actions { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.blog-comment-form-hint { flex: 1 1 200px; font-family: 'Fustat','Manrope',sans-serif; font-size: 12px; line-height: 1.45; color: #6b7c7c; }
.blog-comment-post-btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Fustat','Manrope',sans-serif; font-weight: 700; font-size: 15px; padding: 10px 22px; border-radius: 999px; background: #428583; color: #fff; border: 0; cursor: pointer; transition: background .18s ease; }
.blog-comment-post-btn:hover { background: #35706f; }
.blog-comment-post-btn:disabled { opacity: 0.6; cursor: default; }

.blog-comment-cta { background: #003842; border-radius: 16px; padding: 28px 30px; margin-bottom: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.blog-comment-cta-text h3 { font-family: 'Crimson Pro', Georgia, serif; font-size: 22px; color: #fff; margin: 0 0 6px; }
.blog-comment-cta-text p { font-family: 'Fustat','Manrope',sans-serif; font-size: 15px; color: rgba(255,255,255,0.85); margin: 0; }
.blog-comment-cta-actions { display: flex; gap: 10px; }
.blog-comment-cta-actions .btn-login { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #fff; }
.blog-comment-cta-actions .btn-join { background: #ea9921; border: 2px solid #ea9921; color: #fff; }
.blog-comment-cta-actions a { display: inline-flex; align-items: center; font-family: 'Fustat','Manrope',sans-serif; font-weight: 700; font-size: 14px; padding: 9px 20px; border-radius: 999px; text-decoration: none; }

.blog-comment-guest { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.blog-comment-cta--inline { margin-bottom: 0; }
.blog-comment-field { display: block; margin-bottom: 12px; }
.blog-comment-field-label { display: block; font-family: 'Fustat','Manrope',sans-serif; font-size: 13px; font-weight: 600; color: #4b5c5c; margin-bottom: 6px; }
.blog-comment-form input[type="text"] { width: 100%; border: 1px solid #d9e2e2; border-radius: 10px; padding: 10px 14px; font: inherit; font-family: 'Fustat','Manrope',sans-serif; font-size: 15px; box-sizing: border-box; color: #1c2f31; }
.blog-comment-form input[type="text"]:focus { outline: none; border-color: #428583; box-shadow: 0 0 0 3px rgba(66,133,131,.15); }
.blog-comment-reply-name { display: block; margin-bottom: 8px; }
.blog-comment-reply-name span { display: block; font-family: 'Fustat','Manrope',sans-serif; font-size: 12px; font-weight: 600; color: #6b7c7c; margin-bottom: 4px; }
.blog-comment-reply-name input { width: 100%; border: 1px solid #d9e2e2; border-radius: 10px; padding: 8px 10px; font: inherit; font-family: 'Fustat','Manrope',sans-serif; font-size: 14px; box-sizing: border-box; }

.blog-comment-list { display: flex; flex-direction: column; gap: 20px; }
.blog-comment-thread { display: flex; flex-direction: column; gap: 12px; }
.blog-comment {
	display: flex;
	gap: 14px;
	background: #fff;
	border: 1px solid rgba(0,26,31,0.08);
	border-radius: 16px;
	padding: 16px 18px;
	box-sizing: border-box;
}
.blog-comment--reply {
	border-radius: 12px;
	padding: 14px 16px;
	background: #fff;
}
.blog-comment-avatar { flex-shrink: 0; }
.blog-comment-avatar .bgl-company-avatar { border-radius: 50%; }
.blog-comment-avatar-fallback { width: 44px; height: 44px; border-radius: 50%; background: #d7e3e3; color: #35706f; display: flex; align-items: center; justify-content: center; font-family: 'Fustat','Manrope',sans-serif; font-weight: 700; font-size: 17px; }
.blog-comment-main { flex: 1; min-width: 0; }
.blog-comment-head { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.blog-comment-author { font-family: 'Fustat','Manrope',sans-serif; font-weight: 700; font-size: 15px; color: #001a1f; }
.blog-comment-company { font-family: 'Fustat','Manrope',sans-serif; font-size: 13px; color: #6b7c7c; }
a.blog-comment-author,
a.blog-comment-company { color: inherit; text-decoration: none; }
a.blog-comment-author:hover,
a.blog-comment-company:hover { text-decoration: underline; }
.blog-comment-time { font-family: 'Fustat','Manrope',sans-serif; font-size: 12px; color: #98a4a4; }
.blog-comment-body { font-family: 'Fustat','Manrope',sans-serif; font-size: 15px; line-height: 1.6; color: #24383a; word-wrap: break-word; }
.blog-comment-actions { display: flex; gap: 14px; margin-top: 6px; }
.blog-comment-action { background: none; border: 0; padding: 0; cursor: pointer; font-family: 'Fustat','Manrope',sans-serif; font-size: 13px; font-weight: 600; color: #6b7c7c; }
.blog-comment-action:hover { color: #428583; }
.blog-comment-action.is-danger:hover { color: #b65733; }

.blog-comment-replies { display: flex; flex-direction: column; gap: 12px; padding-left: 20px; }
.blog-comment-reply-box {
	margin-top: 12px;
	background: #fff;
	border: 1px solid rgba(0,26,31,0.08);
	border-radius: 12px;
	padding: 12px 14px;
	box-sizing: border-box;
}
.blog-comment-reply-box textarea { width: 100%; border: 1px solid #d9e2e2; border-radius: 10px; padding: 10px 12px; font: inherit; font-family: 'Fustat','Manrope',sans-serif; font-size: 14px; resize: vertical; box-sizing: border-box; }
.blog-comment-reply-box textarea:focus { outline: none; border-color: #428583; box-shadow: 0 0 0 3px rgba(66,133,131,.15); }
.blog-comment-reply-actions { display: flex; gap: 8px; margin-top: 8px; }
.blog-comment-reply-actions button { font-family: 'Fustat','Manrope',sans-serif; font-weight: 600; font-size: 13px; padding: 7px 16px; border-radius: 999px; cursor: pointer; border: 0; }
.blog-comment-reply-actions .reply-submit { background: #428583; color: #fff; }
.blog-comment-reply-actions .reply-cancel { background: #eef2f2; color: #4b5c5c; }
.blog-comments-empty { font-family: 'Fustat','Manrope',sans-serif; color: #6b7c7c; font-size: 15px; }

@media (max-width: 600px) {
	.blog-comment-cta { flex-direction: column; align-items: flex-start; }
}
