:root {
	--bn-red: #176f9b;
	--bn-red-dark: #125a7e;
	--bn-ink: #17191d;
	--bn-text: #30343a;
	--bn-muted: #707780;
	--bn-line: #e1e4e8;
	--bn-soft: #f6f7f8;
	--bn-white: #fff;
	--bn-shadow: 0 18px 46px rgba(26, 31, 38, .08);
}

.bn-shell,
.bn-shell * {
	box-sizing: border-box;
}

.bn-shell {
	width: 1104px;
	max-width: calc(100% - 32px);
	margin: 30px auto 72px;
	color: var(--bn-text);
	font-family: "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

.bn-shell a {
	color: inherit;
	text-decoration: none;
}

.bn-shell button,
.bn-shell input,
.bn-shell select,
.bn-shell textarea {
	font: inherit;
}

.bn-shell a:focus-visible,
.bn-shell button:focus-visible,
.bn-shell input:focus-visible,
.bn-shell select:focus-visible,
.bn-shell textarea:focus-visible {
	outline: 3px solid rgba(23, 111, 155, .22);
	outline-offset: 2px;
}

.bn-flash {
	position: fixed;
	top: 18px;
	left: 50%;
	z-index: 10000;
	min-width: 320px;
	max-width: min(640px, calc(100% - 32px));
	padding: 14px 20px;
	border: 1px solid #b9d8c6;
	border-radius: 10px;
	background: #edf9f1;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
	color: #176137;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	transform: translateX(-50%);
}

.bn-flash--error {
	border-color: #efc1c4;
	background: #fff1f2;
	color: #99131b;
}

.bn-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	min-height: 190px;
	padding: 38px 42px;
	overflow: hidden;
	border-radius: 22px;
	background:
		radial-gradient(circle at 92% 10%, rgba(255, 255, 255, .12) 0 110px, transparent 111px),
		linear-gradient(135deg, #17324d 0%, #176f9b 60%, #4b9d82 100%);
	box-shadow: var(--bn-shadow);
	color: var(--bn-white);
}

.bn-hero::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: #4b9d82;
	content: "";
}

.bn-hero__copy {
	position: relative;
	z-index: 1;
}

.bn-eyebrow {
	display: block;
	margin-bottom: 13px;
	color: rgba(255, 255, 255, .74);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
}

.bn-hero h1 {
	margin: 0;
	color: var(--bn-white);
	font-size: 38px;
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -.045em;
}

.bn-hero p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .72);
	font-size: 15px;
	line-height: 1.65;
}

.bn-hero__home {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, .26);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: var(--bn-white) !important;
	font-size: 13px;
	font-weight: 700;
	transition: background .18s ease, border-color .18s ease;
}

.bn-hero__home:hover {
	border-color: rgba(255, 255, 255, .5);
	background: rgba(255, 255, 255, .16);
}

.bn-tabs {
	display: flex;
	gap: 7px;
	margin-top: 18px;
	padding: 7px;
	overflow-x: auto;
	border: 1px solid var(--bn-line);
	border-radius: 13px;
	background: var(--bn-white);
	scrollbar-width: thin;
}

.bn-tabs a {
	display: inline-flex;
	flex: 1 0 auto;
	align-items: center;
	justify-content: center;
	height: 41px;
	padding: 0 15px;
	border-radius: 8px;
	color: #5d636b;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	transition: color .18s ease, background .18s ease;
}

.bn-tabs a:hover {
	background: var(--bn-soft);
	color: var(--bn-ink);
}

.bn-tabs a.is-current {
	background: var(--bn-ink);
	color: var(--bn-white);
}

.bn-list-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 66px;
	padding: 15px 2px 10px;
}

.bn-list-head strong {
	color: var(--bn-ink);
	font-size: 15px;
}

.bn-list-head strong em {
	margin-left: 4px;
	color: var(--bn-red);
	font-style: normal;
}

.bn-list-head > span {
	color: var(--bn-muted);
	font-size: 13px;
}

.bn-search-result {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin-left: 10px;
	padding: 0 10px;
	border-radius: 999px;
	background: #e8f2f6;
	color: #176f9b;
	font-size: 12px;
	font-weight: 700;
}

.bn-table-card {
	overflow: hidden;
	border: 1px solid var(--bn-line);
	border-radius: 15px;
	background: var(--bn-white);
	box-shadow: 0 10px 28px rgba(27, 31, 36, .05);
}

.bn-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.bn-col-number {
	width: 82px;
}

.bn-col-writer {
	width: 130px;
}

.bn-col-date {
	width: 126px;
}

.bn-col-hit {
	width: 82px;
}

.bn-table thead th {
	height: 51px;
	padding: 0 14px;
	border-bottom: 1px solid #30343a;
	background: #17324d;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.bn-table tbody td {
	height: 64px;
	padding: 10px 14px;
	border-bottom: 1px solid #eceef0;
	color: #626870;
	font-size: 13px;
	text-align: center;
	vertical-align: middle;
}

.bn-table tbody tr:last-child td {
	border-bottom: 0;
}

.bn-table tbody tr {
	transition: background .15s ease;
}

.bn-table tbody tr:hover {
	background: #fafafa;
}

.bn-table .bn-cell-subject {
	text-align: left;
}

.bn-cell-number,
.bn-cell-hit {
	font-variant-numeric: tabular-nums;
}

.bn-subject {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 7px;
	padding-left: calc(var(--reply-depth, 0) * 16px);
}

.bn-subject a {
	overflow: hidden;
	color: var(--bn-ink);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bn-subject a:hover {
	color: var(--bn-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bn-reply-mark {
	flex: 0 0 auto;
	color: #a0a5ac;
	font-size: 17px;
}

.bn-badge {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 900;
}

.bn-badge--new {
	background: #e8f2f6;
	color: var(--bn-red);
}

.bn-clip {
	flex: 0 0 auto;
	color: #8d949c;
	font-size: 16px;
	font-weight: 700;
	transform: rotate(-25deg);
}

.bn-empty {
	height: 220px !important;
}

.bn-empty strong,
.bn-empty span {
	display: block;
}

.bn-empty strong {
	color: #3d4248;
	font-size: 16px;
}

.bn-empty span {
	margin-top: 7px;
	color: #8a9097;
	font-size: 13px;
}

.bn-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 88px;
}

.bn-pagination a,
.bn-pagination strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 8px;
	border: 1px solid var(--bn-line);
	border-radius: 8px;
	background: var(--bn-white);
	color: #5f656d;
	font-size: 13px;
	font-weight: 700;
}

.bn-pagination a:hover {
	border-color: #a8adb3;
	color: var(--bn-ink);
}

.bn-pagination strong {
	border-color: var(--bn-red);
	background: var(--bn-red);
	color: var(--bn-white);
}

.bn-pagination .bn-page-edge {
	font-size: 19px;
	font-weight: 400;
}

.bn-tools {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px;
	border: 1px solid var(--bn-line);
	border-radius: 13px;
	background: var(--bn-soft);
}

.bn-search {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.bn-search select,
.bn-search input {
	height: 44px;
	border: 1px solid #ced2d7;
	border-radius: 8px;
	background: var(--bn-white);
	color: var(--bn-text);
	outline: 0;
}

.bn-search select {
	width: 112px;
	padding: 0 11px;
}

.bn-search input {
	width: min(390px, 100%);
	padding: 0 14px;
}

.bn-search select:focus,
.bn-search input:focus {
	border-color: var(--bn-red);
	box-shadow: 0 0 0 3px rgba(23, 111, 155, .1);
}

.bn-search button {
	height: 44px;
	padding: 0 22px;
	border: 0;
	border-radius: 8px;
	background: #176f9b;
	color: var(--bn-white);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.bn-button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: 86px;
	height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.bn-button--primary {
	border-color: var(--bn-red);
	background: var(--bn-red);
	color: var(--bn-white) !important;
}

.bn-button--primary:hover {
	border-color: var(--bn-red-dark);
	background: var(--bn-red-dark);
}

.bn-button--muted {
	border-color: #d6d9dd;
	background: var(--bn-white);
	color: #555b63 !important;
}

.bn-button--muted:hover,
.bn-button--outline:hover {
	border-color: #9399a1;
	color: var(--bn-ink) !important;
}

.bn-button--outline {
	border-color: #cdd1d6;
	background: var(--bn-white);
	color: #3e434a !important;
}

.bn-button--danger {
	border-color: #f0c7c9;
	background: #fff5f5;
	color: #a20b14;
}

.bn-button--danger:hover {
	border-color: #db8e93;
	background: #ffecee;
}

.bn-post,
.bn-form-card {
	margin-top: 26px;
	overflow: hidden;
	border: 1px solid var(--bn-line);
	border-radius: 16px;
	background: var(--bn-white);
	box-shadow: 0 10px 28px rgba(27, 31, 36, .05);
}

.bn-post__header {
	padding: 34px 38px 29px;
	border-bottom: 1px solid var(--bn-line);
	background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.bn-post__label {
	margin-bottom: 10px;
	color: var(--bn-red);
	font-size: 12px;
	font-weight: 800;
}

.bn-post__header h2 {
	margin: 0;
	color: var(--bn-ink);
	font-size: 27px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -.035em;
	overflow-wrap: anywhere;
}

.bn-post__meta {
	display: flex;
	gap: 24px;
	margin: 20px 0 0;
	color: var(--bn-muted);
	font-size: 13px;
}

.bn-post__meta div {
	display: flex;
	gap: 7px;
}

.bn-post__meta dt {
	color: #92979d;
}

.bn-post__meta dd {
	margin: 0;
	color: #575d64;
	font-weight: 600;
}

.bn-attachment {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 74px;
	padding: 13px 38px;
	border-bottom: 1px solid var(--bn-line);
	background: #fafafb;
}

.bn-attachment__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #eceef1;
	color: #555c64;
	font-size: 17px;
	font-weight: 800;
}

.bn-attachment div {
	min-width: 0;
}

.bn-attachment strong,
.bn-attachment span {
	display: block;
}

.bn-attachment strong {
	color: #444a51;
	font-size: 12px;
}

.bn-attachment div span {
	overflow: hidden;
	margin-top: 2px;
	color: #747a82;
	font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bn-attachment a {
	margin-left: auto;
	padding: 8px 13px;
	border: 1px solid #d4d8dc;
	border-radius: 7px;
	background: var(--bn-white);
	color: #444a51;
	font-size: 12px;
	font-weight: 700;
}

.bn-post__content {
	min-height: 360px;
	padding: 46px 42px 70px;
	color: #34383e;
	font-size: 15px;
	line-height: 1.85;
	overflow-wrap: anywhere;
}

.bn-post__content p:first-child {
	margin-top: 0;
}

.bn-post__content img {
	max-width: 100%;
	height: auto;
}

.bn-post__content table {
	max-width: 100%;
	border-collapse: collapse;
}

.bn-post__content th,
.bn-post__content td {
	padding: 8px;
	border: 1px solid var(--bn-line);
}

.bn-post__content blockquote {
	margin: 1.2em 0;
	padding: 12px 18px;
	border-left: 4px solid #d7dadd;
	background: #f8f8f9;
}

.bn-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
}

.bn-actions__right {
	display: flex;
	align-items: center;
	gap: 7px;
}

.bn-actions form {
	margin: 0;
}

.bn-form-head {
	padding: 34px 38px 26px;
	border-bottom: 1px solid var(--bn-line);
	background: #fbfbfc;
}

.bn-form-head > span {
	color: var(--bn-red);
	font-size: 12px;
	font-weight: 800;
}

.bn-form-head h2 {
	margin: 8px 0 0;
	color: var(--bn-ink);
	font-size: 27px;
	letter-spacing: -.035em;
}

.bn-form-head p {
	margin: 8px 0 0;
	color: var(--bn-muted);
	font-size: 13px;
}

.bn-original {
	padding: 15px 38px;
	border-bottom: 1px solid var(--bn-line);
	background: #f5fafc;
	font-size: 13px;
}

.bn-original__title {
	display: flex;
	align-items: center;
	gap: 14px;
}

.bn-original__title strong {
	color: var(--bn-red);
}

.bn-original__title span {
	overflow: hidden;
	color: #5c6269;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bn-original__content {
	max-height: 190px;
	margin-top: 13px;
	padding: 16px;
	overflow: auto;
	border: 1px solid #dcebf1;
	border-radius: 8px;
	background: #fff;
	color: #5d6268;
	line-height: 1.7;
}

.bn-original__content > :first-child {
	margin-top: 0;
}

.bn-original__content > :last-child {
	margin-bottom: 0;
}

.bn-form {
	padding: 34px 38px 38px;
}

.bn-field-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bn-field {
	position: relative;
	margin-bottom: 24px;
}

.bn-field > label {
	display: block;
	margin-bottom: 9px;
	color: #343940;
	font-size: 13px;
	font-weight: 800;
}

.bn-field > label span {
	margin-left: 4px;
	color: #959ba2;
	font-size: 11px;
	font-weight: 500;
}

.bn-field input[type="text"],
.bn-field input[type="email"],
.bn-field input[type="file"],
.bn-field textarea {
	display: block;
	width: 100%;
	border: 1px solid #ccd1d6;
	border-radius: 9px;
	background: var(--bn-white);
	color: #25292e;
	outline: 0;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.bn-field input[type="text"],
.bn-field input[type="email"] {
	height: 48px;
	padding: 0 14px;
}

.bn-field input[readonly] {
	background: #f5f6f7;
	color: #666c73;
}

.bn-field input:focus,
.bn-field textarea:focus {
	border-color: var(--bn-red);
	box-shadow: 0 0 0 3px rgba(23, 111, 155, .1);
}

.bn-upload {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 92px;
	padding: 16px 18px;
	overflow: hidden;
	border: 1px dashed #aebdc5;
	border-radius: 10px;
	background: #f7fafb;
	transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.bn-upload:hover,
.bn-upload:focus-within {
	border-color: #176f9b;
	background: #f0f7fa;
	box-shadow: 0 0 0 3px rgba(23, 111, 155, .08);
}

.bn-upload input[type="file"] {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.bn-upload__icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: #e2f0f5;
	color: #176f9b;
	font-size: 24px;
	font-weight: 400;
}

.bn-upload__copy {
	min-width: 0;
	margin-left: 14px;
}

.bn-upload__copy strong,
.bn-upload__copy small {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bn-upload__copy strong {
	color: #343a40;
	font-size: 13px;
}

.bn-upload__copy small {
	max-width: 650px;
	margin-top: 4px;
	color: #818890;
	font-size: 11px;
}

.bn-upload__button {
	flex: 0 0 auto;
	margin-left: auto;
	padding: 9px 14px;
	border: 1px solid #cbd5da;
	border-radius: 7px;
	background: #fff;
	color: #46545d;
	font-size: 12px;
	font-weight: 700;
}

.bn-editor {
	overflow: hidden;
	border: 1px solid #ccd1d6;
	border-radius: 9px;
	background: #fff;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.bn-editor:focus-within {
	border-color: var(--bn-red);
	box-shadow: 0 0 0 3px rgba(23, 111, 155, .1);
}

.bn-editor__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding: 9px 10px;
	border-bottom: 1px solid #dfe2e5;
	background: #f6f7f8;
}

.bn-editor__toolbar button {
	min-width: 36px;
	height: 32px;
	padding: 0 10px;
	border: 1px solid #d4d8dc;
	border-radius: 6px;
	background: #fff;
	color: #41464d;
	font-size: 12px;
	cursor: pointer;
}

.bn-editor__toolbar button:hover {
	border-color: #9ca2a9;
	background: #fafafa;
}

.bn-editor__surface {
	min-height: 340px;
	max-height: 680px;
	padding: 17px;
	overflow: auto;
	color: #25292e;
	font-size: 14px;
	line-height: 1.75;
	outline: 0;
	overflow-wrap: anywhere;
}

.bn-editor__surface:empty::before {
	color: #a0a5ab;
	content: attr(data-placeholder);
	pointer-events: none;
}

.bn-editor__surface p:first-child,
.bn-editor__surface div:first-child {
	margin-top: 0;
}

.bn-editor__surface img {
	max-width: 100%;
	height: auto;
}

.bn-editor__surface table {
	max-width: 100%;
	border-collapse: collapse;
}

.bn-editor__surface th,
.bn-editor__surface td {
	padding: 7px;
	border: 1px solid #dfe2e5;
}

.bn-editor__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bn-counter {
	position: absolute;
	right: 12px;
	top: 40px;
	color: #969ca3;
	font-size: 11px;
	pointer-events: none;
}

.bn-field input[type="text"]:has(+ .bn-counter) {
	padding-right: 82px;
}

.bn-help {
	margin: 7px 0 0;
	color: #8a9097;
	font-size: 11px;
	line-height: 1.5;
}

.bn-check {
	display: flex !important;
	align-items: center;
	gap: 8px;
	margin-top: 12px;
	color: #5a6068 !important;
	font-weight: 500 !important;
	cursor: pointer;
}

.bn-check input {
	width: 17px;
	height: 17px;
	accent-color: var(--bn-red);
}

.bn-form-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	padding-top: 9px;
	border-top: 1px solid #f0f1f2;
}

.bn-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.bn-home {
	margin-top: 30px;
}

.bn-home-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	min-height: 300px;
	padding: 48px 50px;
	overflow: hidden;
	border-radius: 24px;
	background:
		radial-gradient(circle at 88% 4%, rgba(255, 255, 255, .12) 0 155px, transparent 156px),
		linear-gradient(135deg, #17324d 0%, #176f9b 60%, #4b9d82 100%);
	box-shadow: 0 20px 48px rgba(23, 50, 77, .18);
	color: #fff;
}

.bn-home-hero::after {
	position: absolute;
	right: 260px;
	bottom: -115px;
	width: 260px;
	height: 260px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 50%;
	content: "";
}

.bn-home-hero__copy,
.bn-home-hero__stats {
	position: relative;
	z-index: 1;
}

.bn-home-hero h1 {
	margin: 0;
	color: #fff;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: -.05em;
}

.bn-home-hero p {
	margin: 16px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
	line-height: 1.75;
}

.bn-home-hero__actions {
	display: flex;
	gap: 8px;
	margin-top: 25px;
}

.bn-home-hero__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 43px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 9px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
}

.bn-home-hero__actions .bn-home-hero__primary {
	border-color: #fff;
	background: #fff;
	color: #17324d;
}

.bn-home-hero__stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	min-width: 265px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 15px;
	background: rgba(17, 51, 71, .2);
	backdrop-filter: blur(10px);
}

.bn-home-hero__stats div {
	padding: 22px 20px;
	text-align: center;
}

.bn-home-hero__stats div + div {
	border-left: 1px solid rgba(255, 255, 255, .2);
}

.bn-home-hero__stats strong,
.bn-home-hero__stats span {
	display: block;
}

.bn-home-hero__stats strong {
	color: #fff;
	font-size: 25px;
	font-weight: 800;
}

.bn-home-hero__stats span {
	margin-top: 4px;
	color: rgba(255, 255, 255, .68);
	font-size: 11px;
}

.bn-home-shortcuts {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
	margin-top: 16px;
}

.bn-home-shortcuts a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 92px;
	padding: 13px 9px;
	border: 1px solid var(--bn-line);
	border-radius: 12px;
	background: #fff;
	text-align: center;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.bn-home-shortcuts a:hover {
	border-color: #94becf;
	box-shadow: 0 10px 24px rgba(23, 111, 155, .1);
	transform: translateY(-2px);
}

.bn-home-shortcuts span,
.bn-home-shortcuts strong,
.bn-home-shortcuts small {
	display: block;
}

.bn-home-shortcuts span {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #e8f2f6;
	color: #176f9b;
	font-size: 9px;
	font-weight: 800;
}

.bn-home-shortcuts strong {
	overflow: hidden;
	padding-top: 10px;
	color: #28323a;
	font-size: 14px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bn-home-shortcuts small {
	position: absolute;
	right: 9px;
	bottom: 7px;
	color: #9aa0a6;
	font-size: 9px;
}

.bn-home-section {
	margin-top: 44px;
}

.bn-home-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 18px;
}

.bn-home-section__head span {
	color: #176f9b;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .1em;
}

.bn-home-section__head h2 {
	margin: 5px 0 0;
	color: #1d252b;
	font-size: 25px;
	letter-spacing: -.035em;
}

.bn-home-section__head p {
	margin: 0 2px 2px 0;
	color: #858c93;
	font-size: 12px;
}

.bn-home-grid,
.bn-home-bottom {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.bn-home-card {
	overflow: hidden;
	border: 1px solid var(--bn-line);
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(27, 31, 36, .045);
}

.bn-home-card > header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	padding: 16px 20px;
	border-bottom: 1px solid #e9ecef;
	background: linear-gradient(180deg, #fff 0%, #fafcfd 100%);
}

.bn-home-card > header span {
	display: block;
	margin-bottom: 3px;
	color: #176f9b;
	font-size: 10px;
	font-weight: 800;
}

.bn-home-card > header h3 {
	margin: 0;
	color: #283038;
	font-size: 20px;
	letter-spacing: -.025em;
}

.bn-home-card > header > a {
	color: #777f87;
	font-size: 11px;
	font-weight: 700;
}

.bn-home-card > header > a:hover {
	color: #176f9b;
}

.bn-home-card > header > a b {
	margin-left: 3px;
	font-size: 16px;
}

.bn-home-card ul {
	margin: 0;
	padding: 9px 20px 13px;
	list-style: none;
}

.bn-home-card li {
	border-bottom: 1px solid #f0f1f2;
}

.bn-home-card li:last-child {
	border-bottom: 0;
}

.bn-home-card li > a {
	display: flex;
	align-items: center;
	min-height: 38px;
	gap: 12px;
}

.bn-home-card li > a > span {
	overflow: hidden;
	color: #41484f;
	font-size: 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bn-home-card li > a:hover > span {
	color: #176f9b;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bn-home-card li time,
.bn-home-card li > a > b {
	flex: 0 0 auto;
	margin-left: auto;
	color: #9ba1a7;
	font-size: 10px;
	font-weight: 500;
}

.bn-home-card__empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 228px;
	color: #92989e;
	font-size: 12px;
}

.bn-home-bottom {
	margin-top: 15px;
}

.bn-home-card--wide,
.bn-home-card--with-write {
	position: relative;
	padding-bottom: 48px;
}

.bn-home-card__write {
	position: absolute;
	right: 20px;
	bottom: 15px;
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 11px;
	border-radius: 7px;
	background: #17324d;
	color: #fff !important;
	font-size: 10px;
	font-weight: 800;
}

@media (max-width: 767px) {
	.bn-shell {
		max-width: calc(100% - 20px);
		margin-top: 18px;
	}

	.bn-hero {
		min-height: 170px;
		padding: 28px 24px;
	}

	.bn-hero h1 {
		font-size: 31px;
	}

	.bn-hero__home {
		display: none;
	}

	.bn-tabs a {
		flex: 0 0 auto;
	}

	.bn-col-number,
	.bn-cell-number,
	.bn-col-hit,
	.bn-cell-hit {
		display: none;
	}

	.bn-col-writer {
		width: 100px;
	}

	.bn-col-date {
		width: 102px;
	}

	.bn-tools {
		align-items: stretch;
		flex-direction: column;
	}

	.bn-search input {
		width: 100%;
	}

	.bn-tools > .bn-button {
		width: 100%;
	}

	.bn-post__header,
	.bn-form-head,
	.bn-form {
		padding-right: 22px;
		padding-left: 22px;
	}

	.bn-post__content {
		padding: 34px 24px 54px;
	}

	.bn-post__meta {
		flex-wrap: wrap;
		gap: 8px 18px;
	}

	.bn-attachment {
		padding-right: 22px;
		padding-left: 22px;
	}

	.bn-field-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.bn-upload__button {
		display: none;
	}

	.bn-actions {
		align-items: stretch;
		flex-direction: column-reverse;
		gap: 8px;
	}

	.bn-actions__right,
	.bn-actions__right form,
	.bn-actions > .bn-button {
		display: flex;
		flex: 1;
	}

	.bn-actions__right .bn-button {
		flex: 1;
	}

	.bn-home-hero {
		align-items: flex-start;
		flex-direction: column;
		min-height: 0;
		padding: 34px 26px;
	}

	.bn-home-hero h1 {
		font-size: 31px;
	}

	.bn-home-hero__stats {
		width: 100%;
		margin-top: 28px;
	}

	.bn-home-shortcuts {
		display: flex;
		overflow-x: auto;
	}

	.bn-home-shortcuts a {
		flex: 0 0 135px;
	}

	.bn-home-grid,
	.bn-home-bottom {
		grid-template-columns: 1fr;
	}

	.bn-home-section__head p {
		display: none;
	}
}
