/**
 * GC Blog Feed — scoped under .gc-bf, all vars --gc-bf-*.
 */

.gc-bf {
	--gc-bf-content: 80%;
	--gc-bf-head: #FFFFFF;
	--gc-bf-lead: #9FB4C2;
	--gc-bf-card-bg: rgba(20, 33, 43, 0.6);
	--gc-bf-card-border: rgba(180, 160, 232, 0.4);
	--gc-bf-title: #FFFFFF;
	--gc-bf-body: #C9D3DA;
	--gc-bf-meta: #7E8FA0;
	--gc-bf-btn1: #5BA7DB;
	--gc-bf-btn2: #9B7BD8;
	--gc-bf-btn-text: #FFFFFF;
	--gc-bf-ok: #4FD199;
	--gc-bf-err: #F2789A;
	--gc-bf-badge: #9B7BD8;
	--gc-bf-admin: #E5484D;
	--gc-bf-like: #9B7BD8;
	--gc-bf-featured: #5BA7DB;
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	line-height: 1.6;
}
.gc-bf, .gc-bf *, .gc-bf *::before, .gc-bf *::after { box-sizing: border-box; }

.gc-bf-inner { max-width: var(--gc-bf-content); margin-inline: auto; }

.gc-bf-head {
	font-family: var(--gc-font-heading, "Manrope", system-ui, sans-serif);
	font-weight: 800;
	line-height: 1.2;
	color: var(--gc-bf-head);
	margin: 0 0 0.4em;
	font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
}
.gc-bf-lead { color: var(--gc-bf-lead); font-size: 16px; margin: 0 0 24px; }

/* ---- Members-only gate ---- */
.gc-bf--gate { display: flex; justify-content: center; padding: 40px 0; }
.gc-bf-gate {
	max-width: 420px;
	text-align: center;
	background: var(--gc-bf-card-bg);
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-md, 16px);
	padding: 36px 32px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.gc-bf-gate-head {
	font-family: var(--gc-font-heading, "Manrope", system-ui, sans-serif);
	font-weight: 800;
	color: var(--gc-bf-head);
	margin: 0 0 10px;
	font-size: 1.4rem;
}
.gc-bf-gate-text { color: var(--gc-bf-lead); margin: 0 0 22px; }
.gc-bf-gate-btn {
	display: inline-flex;
	padding: 11px 26px;
	border-radius: var(--gc-radius-pill, 999px);
	background: linear-gradient(135deg, var(--gc-bf-btn1), var(--gc-bf-btn2));
	color: var(--gc-bf-btn-text);
	font-weight: 600;
	text-decoration: none;
	box-shadow: var(--gc-shadow-button, 0 6px 16px -2px rgba(91, 167, 219, 0.3));
}
.gc-bf-gate-btn:hover { box-shadow: 0 14px 40px -10px rgba(91, 167, 219, 0.45); }
.gc-bf-gate-btn:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }

/* Embedded WP login form (wp_login_form()) inside the gate card. */
.gc-bf-gate form { text-align: left; }
.gc-bf-gate form p { margin: 0 0 14px; }
.gc-bf-gate form label { display: block; margin: 0 0 6px; font-size: 13px; font-weight: 600; color: var(--gc-bf-lead); }
.gc-bf-gate form input[type="text"],
.gc-bf-gate form input[type="password"] {
	width: 100%;
	font: inherit;
	font-size: 15px;
	color: var(--gc-bf-title);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-sm, 10px);
	padding: 10px 12px;
}
.gc-bf-gate form input[type="text"]:focus,
.gc-bf-gate form input[type="password"]:focus {
	outline: none;
	border-color: var(--gc-bf-btn1);
	box-shadow: 0 0 0 3px rgba(91, 167, 219, 0.2);
}
.gc-bf-gate .login-remember label { display: flex; align-items: center; gap: 8px; font-weight: 400; color: var(--gc-bf-lead); margin: 0; }
.gc-bf-gate .login-remember input { width: auto; }
.gc-bf-gate .login-submit { margin-bottom: 0; }
.gc-bf-gate #wp-submit {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	padding: 11px 26px;
	border: 0;
	border-radius: var(--gc-radius-pill, 999px);
	background: linear-gradient(135deg, var(--gc-bf-btn1), var(--gc-bf-btn2));
	color: var(--gc-bf-btn-text);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	box-shadow: var(--gc-shadow-button, 0 6px 16px -2px rgba(91, 167, 219, 0.3));
}
.gc-bf-gate #wp-submit:hover { box-shadow: 0 14px 40px -10px rgba(91, 167, 219, 0.45); }
.gc-bf-gate #wp-submit:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }

/* ---- Add-update trigger + composer ---- */
.gc-bf-addbtn {
	display: inline-flex;
	align-items: center;
	margin: 0 0 20px;
	padding: 10px 22px;
	border: 0;
	border-radius: var(--gc-radius-pill, 999px);
	background: linear-gradient(135deg, var(--gc-bf-btn1), var(--gc-bf-btn2));
	color: var(--gc-bf-btn-text);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	box-shadow: var(--gc-shadow-button, 0 6px 16px -2px rgba(91, 167, 219, 0.3));
}
.gc-bf-addbtn:hover { box-shadow: 0 14px 40px -10px rgba(91, 167, 219, 0.45); }
.gc-bf-addbtn:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }

.gc-bf-composer {
	background: var(--gc-bf-card-bg);
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-md, 16px);
	padding: 18px 20px;
	margin: 0 0 24px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

/* ---- Rich-text toolbar ---- */
.gc-bf-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 10px; }
.gc-bf-toolbar button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 8px;
	border: 1px solid var(--gc-bf-card-border);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--gc-bf-title);
	font-size: 13px;
	cursor: pointer;
}
.gc-bf-toolbar button:hover { background: rgba(255, 255, 255, 0.1); }
.gc-bf-toolbar button:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }
.gc-bf-toolbar-sep { width: 1px; height: 20px; background: var(--gc-bf-card-border); margin: 0 2px; }

/* ---- Editable / composer inputs ---- */
.gc-bf-input {
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-sm, 10px);
	padding: 10px 12px;
	margin-bottom: 10px;
	color: var(--gc-bf-body);
	background: rgba(255, 255, 255, 0.03);
	min-height: 1.6em;
}
.gc-bf-input:focus { outline: none; border-color: var(--gc-bf-btn1); box-shadow: 0 0 0 3px rgba(91, 167, 219, 0.2); }
.gc-bf-title, .gc-bf-newtitle {
	font-family: var(--gc-font-heading, "Manrope", system-ui, sans-serif);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--gc-bf-title);
}
.gc-bf-body, .gc-bf-newbody { min-height: 4em; }
.gc-bf-newtitle:empty::before,
.gc-bf-newbody:empty::before { content: attr(data-placeholder); color: var(--gc-bf-meta); }

.gc-bf-signature {
	display: block;
	width: 100%;
	font: inherit;
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-size: 13px;
	font-style: italic;
}
.gc-bf-signature::placeholder { color: var(--gc-bf-meta); font-style: italic; opacity: 1; }

.gc-bf-tag {
	display: block;
	width: auto;
	max-width: 200px;
	font: inherit;
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-size: 13px;
	color: var(--gc-bf-body);
	background: rgba(255, 255, 255, 0.03);
	cursor: pointer;
}
.gc-bf-tag option { color: #14212b; }

/* "Feature this post" tickbox (composer + every editable card). */
.gc-bf-featurewrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-size: 13px;
	font-weight: 600;
	color: var(--gc-bf-body);
	cursor: pointer;
}
.gc-bf-featurewrap input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--gc-bf-featured);
	cursor: pointer;
}
.gc-bf-featurewrap input:focus-visible { outline: 2px solid var(--gc-bf-featured); outline-offset: 2px; }
.gc-bf-featurenote { font-weight: 400; font-size: 12px; color: var(--gc-bf-meta); }

.gc-bf-savebtn, .gc-bf-publishbtn {
	display: inline-flex;
	padding: 8px 20px;
	border: 0;
	border-radius: var(--gc-radius-pill, 999px);
	background: linear-gradient(135deg, var(--gc-bf-btn1), var(--gc-bf-btn2));
	color: var(--gc-bf-btn-text);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}
.gc-bf-savebtn:disabled { opacity: 0.6; cursor: default; }
.gc-bf-savebtn:focus-visible, .gc-bf-publishbtn:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }

.gc-bf-editbtn, .gc-bf-cancelbtn, .gc-bf-historybtn {
	display: inline-flex;
	padding: 8px 20px;
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.04);
	color: var(--gc-bf-title);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}
.gc-bf-editbtn:hover, .gc-bf-cancelbtn:hover, .gc-bf-historybtn:hover { background: rgba(255, 255, 255, 0.1); }
.gc-bf-editbtn:focus-visible, .gc-bf-cancelbtn:focus-visible, .gc-bf-historybtn:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }
.gc-bf-historybtn:disabled { opacity: 0.6; cursor: default; }
.gc-bf-editview { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gc-bf-card-border); }

.gc-bf-deletebtn {
	display: inline-flex;
	margin-right: auto;
	padding: 8px 20px;
	border: 1px solid color-mix(in srgb, var(--gc-bf-err) 45%, transparent);
	border-radius: var(--gc-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.04);
	color: var(--gc-bf-err);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}
.gc-bf-deletebtn:hover { background: color-mix(in srgb, var(--gc-bf-err) 15%, transparent); }
.gc-bf-deletebtn:focus-visible { outline: 2px solid var(--gc-bf-err); outline-offset: 2px; }
.gc-bf-deletebtn:disabled { opacity: 0.6; cursor: default; }

.gc-bf-composer-actions { display: flex; align-items: center; gap: 10px; }

.gc-bf-msg { margin-left: 12px; font-size: 13px; font-weight: 600; }
.gc-bf-msg.is-ok { color: var(--gc-bf-ok); }
.gc-bf-msg.is-err { color: var(--gc-bf-err); }

/* ---- Post list ---- */
.gc-bf-list { display: flex; flex-direction: column; gap: 16px; }
.gc-bf-card {
	background: var(--gc-bf-card-bg);
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-md, 16px);
	padding: 20px 22px;
	box-shadow: 0 10px 28px -16px rgba(0, 0, 0, 0.55);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.gc-bf-card-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.gc-bf-title-ro {
	font-family: var(--gc-font-heading, "Manrope", system-ui, sans-serif);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--gc-bf-title);
	margin: 0 0 8px;
}
.gc-bf-body-ro { color: var(--gc-bf-body); }
.gc-bf-body-ro p:last-child { margin-bottom: 0; }
.gc-bf-meta { font-size: 12.5px; color: var(--gc-bf-meta); }
.gc-bf-empty { color: var(--gc-bf-lead); }

/* ---- Featured post ----
   Reads as a different object from the feed below it, not just a card that
   happens to be first: the pill straddles the card's top edge (so badge and
   card are one unit), the surface carries an accent wash, and a gradient hair
   line runs along the top. */
.gc-bf-featured {
	position: relative;
	margin-bottom: 30px;
	padding-top: 13px;
}
.gc-bf-featured-pill {
	position: absolute;
	top: 0;
	left: 24px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 15px;
	border-radius: var(--gc-radius-pill, 999px);
	background: linear-gradient(135deg, var(--gc-bf-featured), var(--gc-bf-btn2));
	color: var(--gc-bf-btn-text);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--gc-bf-featured) 75%, transparent);
}
.gc-bf-featured-pill::before { content: "\2605"; font-size: 12px; line-height: 1; }
.gc-bf-card.is-featured {
	position: relative;
	overflow: hidden;
	padding: 30px 30px 24px;
	border: 1px solid color-mix(in srgb, var(--gc-bf-featured) 85%, transparent);
	border-radius: var(--gc-radius-md, 16px);
	background:
		radial-gradient(120% 140% at 0% 0%, color-mix(in srgb, var(--gc-bf-featured) 22%, transparent), transparent 62%),
		var(--gc-bf-card-bg);
	box-shadow:
		0 0 0 4px color-mix(in srgb, var(--gc-bf-featured) 12%, transparent),
		0 26px 60px -24px rgba(0, 0, 0, 0.75),
		0 0 46px -14px color-mix(in srgb, var(--gc-bf-featured) 55%, transparent);
}
/* Gradient hair line along the top edge. */
.gc-bf-card.is-featured::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, var(--gc-bf-featured), var(--gc-bf-btn2), transparent);
}
.gc-bf-card.is-featured .gc-bf-title-ro {
	font-size: clamp(1.4rem, 3vw, 1.9rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
}
.gc-bf-card.is-featured .gc-bf-body-ro { font-size: 17px; }
.gc-bf-card.is-featured .gc-bf-card-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid color-mix(in srgb, var(--gc-bf-featured) 22%, transparent); }

/* ---- Byline: author + role badge + date/time ---- */
.gc-bf-byline { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.gc-bf-author { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; font-size: 13px; color: var(--gc-bf-title); }
.gc-bf-badge { display: inline-flex; color: var(--gc-bf-badge); }
.gc-bf-badge svg { display: block; }
.gc-bf-badge--admin { color: var(--gc-bf-admin); }
.gc-bf-dot { color: var(--gc-bf-meta); }

/* ---- Foot actions: like button + edit/save controls ---- */
.gc-bf-foot-actions { display: flex; align-items: center; gap: 10px; }
.gc-bf-likebtn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px;
	border: 1px solid var(--gc-bf-card-border);
	border-radius: var(--gc-radius-pill, 999px);
	background: rgba(255, 255, 255, 0.04);
	color: var(--gc-bf-meta);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-weight: 600;
	font-size: 12.5px;
	cursor: pointer;
}
.gc-bf-likebtn:hover { background: rgba(255, 255, 255, 0.1); }
.gc-bf-likebtn:focus-visible { outline: 2px solid var(--gc-bf-btn1); outline-offset: 2px; }
.gc-bf-likebtn:disabled { opacity: 0.6; cursor: default; }
.gc-bf-likebtn.is-liked { color: var(--gc-bf-like); border-color: color-mix(in srgb, var(--gc-bf-like) 55%, transparent); }
.gc-bf-heart { display: inline-flex; }
.gc-bf-heart-f { display: none; }
.gc-bf-likebtn.is-liked .gc-bf-heart-o { display: none; }
.gc-bf-likebtn.is-liked .gc-bf-heart-f { display: inline-flex; color: var(--gc-bf-like); }

/* Formatting produced by the toolbar (headings, lists, links) inside editable
   and read-only post bodies alike. */
.gc-bf-body h3, .gc-bf-body-ro h3, .gc-bf-newbody h3 {
	font-family: var(--gc-font-heading, "Manrope", system-ui, sans-serif);
	font-weight: 700;
	color: var(--gc-bf-title);
	margin: 0.8em 0 0.4em;
}
.gc-bf-body ul, .gc-bf-body-ro ul, .gc-bf-newbody ul,
.gc-bf-body ol, .gc-bf-body-ro ol, .gc-bf-newbody ol {
	margin: 0 0 1em;
	padding-left: 1.4em;
}
.gc-bf-body a, .gc-bf-body-ro a, .gc-bf-newbody a { color: var(--gc-bf-btn1); }
.gc-bf-body blockquote, .gc-bf-body-ro blockquote, .gc-bf-newbody blockquote {
	margin: 1em 0;
	padding: 4px 0 4px 16px;
	border-left: 3px solid var(--gc-bf-btn1);
	color: var(--gc-bf-lead);
	font-style: italic;
}
.gc-bf-body hr, .gc-bf-body-ro hr, .gc-bf-newbody hr {
	margin: 1.4em 0;
	border: 0;
	border-top: 1px solid var(--gc-bf-card-border);
}
.gc-bf-img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--gc-radius-sm, 10px);
	margin: 0.8em 0;
}
.gc-bf-body-ro .gc-bf-img { cursor: zoom-in; }

/* Video file inserted from the Media Library (native <video>, not an
   embed) — has real intrinsic dimensions from the file itself, so it's
   sized like an image rather than needing the iframe's aspect-ratio box. */
.gc-bf-video-file {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: var(--gc-radius-sm, 10px);
	margin: 0.8em 0;
	background: #000;
}

/* Video embed (YouTube/Vimeo) — 16:9 responsive box; the iframe has no
   intrinsic size of its own to size against otherwise. */
.gc-bf-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 0.8em 0;
	border-radius: var(--gc-radius-sm, 10px);
	overflow: hidden;
	background: #000;
}
.gc-bf-video-wrap .gc-bf-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Toolbar align buttons on a <table>/<img>/video embed — margin-based
   positioning, not text-align (which only affects inline/text content and
   is a no-op on these). display:block + intrinsic/auto width is what lets
   margin:auto actually shift them; a video embed is already width:100% so
   these classes are effectively inert on it, which is fine. */
.gc-bf-body .gc-bf-align-center, .gc-bf-body-ro .gc-bf-align-center, .gc-bf-newbody .gc-bf-align-center {
	margin-left: auto;
	margin-right: auto;
}
.gc-bf-body .gc-bf-align-right, .gc-bf-body-ro .gc-bf-align-right, .gc-bf-newbody .gc-bf-align-right {
	margin-left: auto;
	margin-right: 0;
}
.gc-bf-body table, .gc-bf-body-ro table, .gc-bf-newbody table { margin: 0.8em 0; }
.gc-bf-uploading { opacity: 0.5; }
.gc-bf-lightbox .gc-modal__dialog { max-width: min(90vw, 1100px); background: transparent; box-shadow: none; padding: 0; }
.gc-bf-lightbox .gc-modal__body { padding: 0; }
.gc-bf-lightbox-img { display: block; max-width: 100%; max-height: 85vh; width: auto; height: auto; margin: 0 auto; border-radius: var(--gc-radius-sm, 10px); }
.gc-bf-lightbox .gc-modal__close { top: -14px; right: -14px; background: #fff; }

/* ---- Edit history modal (uses the shared .gc-modal light theme, unlike
   the rest of .gc-bf which is dark) ---- */
.gc-bf-history-title {
	font-family: var(--gc-font-heading, "Manrope", system-ui, sans-serif);
	font-weight: 800;
	font-size: 1.1rem;
	color: var(--gc-ink, #14212b);
	margin: 0 0 16px;
}
.gc-bf-history-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.gc-bf-history-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--gc-woo-border, #e1e9ee);
	font-family: var(--gc-font-body, "Inter", system-ui, sans-serif);
	font-size: 13.5px;
}
.gc-bf-history-item:last-child { border-bottom: 0; }
.gc-bf-history-name { font-weight: 600; color: var(--gc-ink, #14212b); }
.gc-bf-history-date { color: var(--gc-muted, #5a6b75); }
.gc-bf-history-empty { color: var(--gc-muted, #5a6b75); font-size: 13.5px; padding: 4px 0; }

@media (max-width: 640px) {
	.gc-bf-inner { max-width: 100%; }
	.gc-bf-head { font-size: 1.5rem; margin-bottom: 0.3em; }
	.gc-bf-lead { font-size: 15px; line-height: 1.5; margin-bottom: 18px; }

	.gc-bf--gate { padding: 20px 0; }
	.gc-bf-gate { padding: 22px 18px; -webkit-backdrop-filter: none; backdrop-filter: none; }
	.gc-bf-gate-head { font-size: 1.2rem; margin-bottom: 8px; }
	.gc-bf-gate-text { margin-bottom: 16px; font-size: 15px; }
	.gc-bf-gate form p { margin-bottom: 12px; }
	.gc-bf-gate form input[type="text"],
	.gc-bf-gate form input[type="password"],
	.gc-bf-signature,
	.gc-bf-tag { font-size: 16px; }
	.gc-bf-tag { max-width: 100%; }
	.gc-bf-gate-btn, .gc-bf-gate #wp-submit { min-height: 44px; align-items: center; box-shadow: none; }

	.gc-bf-addbtn { margin-bottom: 14px; padding: 10px 18px; min-height: 42px; align-items: center; box-shadow: none; }
	.gc-bf-composer {
		padding: 14px;
		margin-bottom: 16px;
		border-radius: var(--gc-radius-sm, 12px);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
	.gc-bf-toolbar { gap: 4px; margin-bottom: 8px; }
	.gc-bf-toolbar button { min-width: 34px; height: 34px; padding: 0 6px; font-size: 12.5px; }
	.gc-bf-toolbar-sep { display: none; }
	.gc-bf-input { padding: 9px 11px; margin-bottom: 8px; }
	.gc-bf-title, .gc-bf-newtitle { font-size: 1.02rem; }
	.gc-bf-body, .gc-bf-newbody { min-height: 3.4em; }
	.gc-bf-featurewrap { gap: 6px; margin-bottom: 10px; }
	.gc-bf-savebtn, .gc-bf-publishbtn,
	.gc-bf-editbtn, .gc-bf-cancelbtn, .gc-bf-historybtn,
	.gc-bf-deletebtn { padding: 9px 16px; min-height: 40px; align-items: center; }
	.gc-bf-composer-actions { gap: 8px; flex-wrap: wrap; }

	.gc-bf-list { gap: 12px; }
	.gc-bf-card {
		padding: 16px;
		border-radius: var(--gc-radius-sm, 12px);
		box-shadow: none;
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
	.gc-bf-title-ro { font-size: 1.08rem; margin-bottom: 6px; }
	.gc-bf-card-foot { gap: 8px; }

	.gc-bf-featured { margin-bottom: 20px; padding-top: 12px; }
	.gc-bf-featured-pill { left: 14px; padding: 4px 11px; font-size: 10px; letter-spacing: 0.04em; box-shadow: none; }
	.gc-bf-card.is-featured {
		padding: 20px 16px 16px;
		box-shadow: 0 0 0 2px color-mix(in srgb, var(--gc-bf-featured) 14%, transparent);
	}
	.gc-bf-card.is-featured .gc-bf-title-ro { font-size: 1.25rem; margin-bottom: 8px; }
	.gc-bf-card.is-featured .gc-bf-body-ro { font-size: 15px; }
	.gc-bf-card.is-featured .gc-bf-card-foot { margin-top: 12px; padding-top: 10px; }

	.gc-bf-byline { gap: 6px; }
	.gc-bf-author { font-size: 12.5px; }
	.gc-bf-meta { font-size: 12px; }
	.gc-bf-foot-actions { gap: 8px; }
	.gc-bf-likebtn { padding: 8px 12px; min-height: 36px; }
	.gc-bf-editview { margin-top: 12px; padding-top: 12px; }
	.gc-bf-history-title { font-size: 1.05rem; margin-bottom: 12px; }
}

@media (max-width: 480px) {
	.gc-bf-card-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
	.gc-bf-inner { max-width: 100%; }
	.gc-bf-head { font-size: 1.4rem; }
	.gc-bf-card { padding: 14px; }
	.gc-bf-card.is-featured { padding: 18px 14px 14px; }
	.gc-bf-composer { padding: 12px; }
	.gc-bf-gate form input[type="text"],
	.gc-bf-gate form input[type="password"],
	.gc-bf-signature,
	.gc-bf-tag { font-size: 16px; }
	.gc-bf-tag { max-width: 100%; }
	.gc-bf-composer-actions, .gc-bf-foot-actions { flex-wrap: wrap; }
	.gc-bf-body-ro, .gc-bf-body { overflow-wrap: anywhere; }
	.gc-bf-body table, .gc-bf-body-ro table, .gc-bf-newbody table { display: block; max-width: 100%; overflow-x: auto; }
	.gc-bf-history-item { flex-wrap: wrap; gap: 4px 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.gc-bf-addbtn, .gc-bf-gate-btn, .gc-bf-savebtn, .gc-bf-publishbtn { transition: none; }
}
