:root {
	--feed-bg: #eef3f8;
	--feed-paper: #ffffff;
	--feed-ink: #111827;
	--feed-muted: #6b7280;
	--feed-border: #cbd5e1;
	--feed-accent: #2563eb;
	--feed-accent-soft: #dbeafe;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1rem;
	background: var(--feed-bg);
	color: var(--feed-ink);
}

header {
	background: var(--feed-paper) !important;
	border-bottom: 3px solid var(--feed-ink) !important;
}

header h1 {
	font-weight: 800;
	letter-spacing: -.04em;
}

header h1 a {
	text-decoration:none;
	color:green;
}

.header-action {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	vertical-align: middle;
	color: #212529;
	text-decoration: none;
	font-size: 1.1rem;
	margin-left: 4px;
}

.header-user {
	height: 36px;
	vertical-align: middle;
}

.header-user img {
	width: 32px;
	height: 32px;
	object-fit: cover;
	margin-right: 4px;
}

.header-user .bi-person-circle {
	font-size: 32px;
	line-height: 1;
	vertical-align: middle;
	margin-right: 4px;
}

.site-tagline {
	font-weight: 600;
	letter-spacing: .01em;
}

.site-name {
	font-family: "Roboto Slab", sans-serif;
	font-weight: 700;
	letter-spacing: -.03em;
}

.left-rail {
	margin-top: 6rem;
}
.group-box {
	margin-left:4rem;
}

.post-card {
	border: 1px solid var(--feed-border);
	border-radius: 4px;
	box-shadow: none;
	background: var(--feed-paper);
	transition: transform .12s ease, box-shadow .12s ease;
}

.post-card:hover {
	box-shadow: 0 3px 12px rgba(0,0,0,.06);
}

.post-card .card-body {
	padding: 1rem 1.1rem;
}

.post-card .post-body {
	/* font-size: 1rem; */
	line-height: 1.5;
	margin: .9rem 0 1rem;
}

.post-card a {
	color: var(--feed-ink);
}

.post-visibility {
	font-size: .7rem !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.post-card-header {
	padding: .75rem 1rem;
	background: #f7f4ee;
	border-bottom: 1px solid var(--feed-border);
	border-left: 4px solid var(--feed-accent);
}

.post-card a:hover,
.post-card .btn-link:hover {
	color: var(--feed-accent);
}

	.post-type-label {
	display: inline-block;
	padding: .2rem .45rem;
	border-radius: 4px;
	background: var(--feed-accent);
	color: #fff;
	font-size: .68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .05em;
	line-height: 1;
}

.heart-icon {
	color: #9ca3af;
	transition: color .15s ease;
}

.heart-icon.text-danger {
	color: #dc2626 !important;
	transform: none;
}

.badge.bg-danger {
	background-color: var(--feed-accent) !important;
}

.heart-button,
.post-card .btn-link {
	color: var(--feed-muted);
	font-weight: 600;
}

.heart-button:hover,
.post-card .btn-link:hover {
	color: var(--feed-ink);
}

.heart-icon {
	transition: color .15s ease, transform .15s ease;
}

.heart-icon.text-danger {
	transform: scale(1.08);
}

.replies-list {
	margin-left: 2.25rem;
	border-top: 1px solid var(--feed-border) !important;
}

.dropdown-menu {
	border-radius: 4px;
	border-color: var(--feed-border);
	box-shadow: 0 5px 18px rgba(0,0,0,.08);
}
.btn-feed {
	background: var(--feed-accent);
	border-color: var(--feed-accent);
	color: #fff;
}

.btn-feed:hover {
	background: #982731;
	border-color: #982731;
	color: #fff;
}
.ad {
	width:120px;
	height:120px;
	border: black solid 1px;
	margin-top:4rem;
}
.no_mobile {display_block;}

@media (max-width: 767px) {
	.no_mobile {display:none;}
}