/*
 * 국회한눈 프런트 스타일.
 *
 * 모든 규칙은 .gh-app 안으로 한정해 테마와 부딪히지 않게 한다.
 * 글자는 크게(본문 17px 기준), 표결 상태는 색만이 아니라 기호와 글자로도 나타낸다.
 */

.gh-app {
	--gh-navy: #16243f;
	--gh-navy-2: #24365a;
	--gh-ivory: #faf7f0;
	--gh-paper: #ffffff;
	--gh-teal: #0f7b7b;
	--gh-teal-soft: #e3f2f1;
	--gh-line: #dfd9cd;
	--gh-text: #1d2430;
	--gh-dim: #5d6675;
	--gh-yes: #1553b8;
	--gh-no: #c62828;
	--gh-abs: #d97706;
	--gh-none: #8a8f98;
	--gh-radius: 14px;
	--gh-shadow: 0 1px 2px rgba(22, 36, 63, .06), 0 8px 24px rgba(22, 36, 63, .06);

	max-width: 1180px;
	margin: 0 auto;
	padding: 8px 0 56px;
	color: var(--gh-text);
	font-size: 17px;
	line-height: 1.65;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.gh-app *,
.gh-app *::before,
.gh-app *::after {
	box-sizing: border-box;
}

.gh-app a {
	color: var(--gh-navy);
	text-decoration: none;
}

.gh-app a:hover,
.gh-app a:focus-visible {
	color: var(--gh-teal);
	text-decoration: underline;
}

.gh-app :focus-visible {
	outline: 3px solid var(--gh-teal);
	outline-offset: 2px;
	border-radius: 4px;
}

.gh-app h1,
.gh-app h2,
.gh-app h3 {
	color: var(--gh-navy);
	line-height: 1.3;
	margin: 0 0 12px;
	word-break: keep-all;
}

.gh-app h2 {
	font-size: 22px;
	margin-top: 4px;
}

.gh-app h2 small {
	font-size: 15px;
	font-weight: 400;
	color: var(--gh-dim);
	margin-left: 6px;
}

.gh-app p {
	margin: 0 0 12px;
}

/* ---------- 머리 ---------- */

.gh-head {
	margin-bottom: 20px;
}

.gh-brand {
	display: inline-block;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: -.02em;
	color: var(--gh-teal) !important;
	margin-bottom: 8px;
}

.gh-title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -.03em;
	margin: 10px 0 6px;
}

.gh-sub {
	color: var(--gh-dim);
	font-size: 17px;
	max-width: 46em;
}

.gh-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	border-bottom: 2px solid var(--gh-line);
}

.gh-nav li {
	margin: 0;
}

.gh-nav a {
	display: block;
	padding: 10px 14px;
	font-size: 16px;
	font-weight: 600;
	color: var(--gh-dim) !important;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.gh-nav a:hover {
	color: var(--gh-navy) !important;
	text-decoration: none;
	background: var(--gh-ivory);
}

.gh-nav a.gh-on {
	color: var(--gh-navy) !important;
	border-bottom-color: var(--gh-teal);
}

/* ---------- 검색 ---------- */

.gh-search {
	display: flex;
	gap: 8px;
	margin: 18px 0 6px;
}

.gh-search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 14px 16px;
	font-size: 17px;
	border: 2px solid var(--gh-line);
	border-radius: var(--gh-radius);
	background: var(--gh-paper);
	color: var(--gh-text);
}

.gh-search input[type="search"]:focus {
	border-color: var(--gh-teal);
}

.gh-search-help {
	font-size: 15px;
	color: var(--gh-dim);
}

.gh-btn {
	display: inline-block;
	padding: 12px 20px;
	min-height: 46px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	border: 2px solid var(--gh-navy);
	border-radius: var(--gh-radius);
	background: var(--gh-navy);
	color: #fff !important;
	cursor: pointer;
	text-align: center;
}

.gh-btn:hover,
.gh-btn:focus-visible {
	background: var(--gh-teal);
	border-color: var(--gh-teal);
	color: #fff !important;
	text-decoration: none;
}

.gh-btn-ghost {
	background: transparent;
	color: var(--gh-navy) !important;
}

.gh-btn-ghost:hover {
	background: var(--gh-navy);
	color: #fff !important;
}

/* ---------- 거르기 ---------- */

.gh-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px;
	padding: 16px;
	margin: 16px 0;
	background: var(--gh-ivory);
	border: 1px solid var(--gh-line);
	border-radius: var(--gh-radius);
}

.gh-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1 1 170px;
	min-width: 0;
}

.gh-field-wide {
	flex-basis: 100%;
}

.gh-flabel {
	font-size: 14px;
	font-weight: 700;
	color: var(--gh-dim);
}

.gh-field input,
.gh-field select,
.gh-field textarea {
	width: 100%;
	padding: 11px 12px;
	font-size: 16px;
	font-family: inherit;
	border: 2px solid var(--gh-line);
	border-radius: 10px;
	background: var(--gh-paper);
	color: var(--gh-text);
	min-height: 46px;
}

.gh-field input:focus,
.gh-field select:focus,
.gh-field textarea:focus {
	border-color: var(--gh-teal);
	outline: none;
}

.gh-note {
	font-size: 15px;
	color: var(--gh-dim);
	background: var(--gh-teal-soft);
	border-left: 4px solid var(--gh-teal);
	padding: 10px 14px;
	border-radius: 0 10px 10px 0;
}

.gh-dim {
	color: var(--gh-dim);
	font-size: 15px;
}

.gh-flash {
	max-width: 1180px;
	margin: 0 auto 16px;
	padding: 14px 18px;
	background: #e7f6ec;
	border: 1px solid #9ed3b0;
	border-radius: 12px;
	font-size: 16px;
}

/* ---------- 숫자 카드 ---------- */

.gh-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin: 20px 0;
}

.gh-stat {
	display: block;
	padding: 18px;
	background: var(--gh-navy);
	color: #fff !important;
	border-radius: var(--gh-radius);
	text-align: center;
}

.gh-stat:hover {
	background: var(--gh-navy-2);
	text-decoration: none;
	color: #fff !important;
}

.gh-stat-n {
	display: inline;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -.02em;
}

.gh-stat-u {
	font-size: 16px;
	margin-left: 2px;
	opacity: .9;
}

.gh-stat-l {
	display: block;
	font-size: 16px;
	opacity: .85;
	margin-top: 4px;
}

.gh-numbers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	margin: 18px 0;
}

.gh-num {
	padding: 14px;
	background: var(--gh-ivory);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
	text-align: center;
}

.gh-num b {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: var(--gh-navy);
}

.gh-num b small {
	font-size: 14px;
	font-weight: 600;
	margin-left: 2px;
}

.gh-num span {
	font-size: 15px;
	color: var(--gh-dim);
}

/* ---------- 패널 ---------- */

.gh-panel {
	padding: 20px;
	margin: 18px 0;
	background: var(--gh-paper);
	border: 1px solid var(--gh-line);
	border-radius: var(--gh-radius);
	box-shadow: var(--gh-shadow);
}

.gh-grid2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gh-more {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 600;
}

.gh-empty {
	padding: 32px 20px;
	background: var(--gh-ivory);
	border: 2px dashed var(--gh-line);
	border-radius: var(--gh-radius);
	text-align: center;
}

.gh-empty-admin {
	font-size: 15px;
	color: var(--gh-dim);
}

/* ---------- 의원 카드 ---------- */

.gh-mgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 12px;
	margin: 16px 0;
}

.gh-mgrid-sm {
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.gh-mcard {
	display: flex;
	gap: 12px;
	padding: 12px;
	background: var(--gh-paper);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
	align-items: flex-start;
}

.gh-mcard:hover {
	border-color: var(--gh-teal);
	text-decoration: none;
	box-shadow: var(--gh-shadow);
}

.gh-mphoto img {
	display: block;
	width: 72px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	background: var(--gh-ivory);
}

.gh-noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 90px;
	border-radius: 8px;
	background: var(--gh-ivory);
	color: var(--gh-dim);
	font-size: 28px;
	font-weight: 800;
}

.gh-minfo {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.gh-mname {
	font-size: 19px;
	font-weight: 800;
	color: var(--gh-navy);
}

.gh-mparty {
	font-size: 15px;
	font-weight: 700;
	color: var(--gh-party, var(--gh-dim));
}

.gh-mdist {
	font-size: 15px;
	color: var(--gh-dim);
}

.gh-mnums {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 6px;
	font-size: 14px;
	color: var(--gh-dim);
}

.gh-mnums b {
	color: var(--gh-navy);
	font-size: 15px;
}

/* ---------- 의원 상세 ---------- */

.gh-profile {
	display: flex;
	gap: 20px;
	padding: 20px;
	background: var(--gh-ivory);
	border-left: 6px solid var(--gh-party, var(--gh-teal));
	border-radius: var(--gh-radius);
	margin-bottom: 16px;
}

.gh-pphoto img {
	display: block;
	width: 140px;
	height: 175px;
	object-fit: cover;
	border-radius: 10px;
	background: #fff;
}

.gh-pinfo {
	flex: 1 1 auto;
	min-width: 0;
}

.gh-dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: 4px 16px;
	margin: 0;
}

.gh-dl dt {
	font-size: 15px;
	font-weight: 700;
	color: var(--gh-dim);
}

.gh-dl dd {
	margin: 0;
	font-size: 16px;
}

.gh-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	border-bottom: 2px solid var(--gh-line);
	margin: 18px 0 0;
}

.gh-tabs a {
	padding: 10px 16px;
	font-size: 16px;
	font-weight: 700;
	color: var(--gh-dim) !important;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
}

.gh-tabs a.gh-on {
	color: var(--gh-navy) !important;
	border-bottom-color: var(--gh-teal);
}

.gh-tabs a:hover {
	text-decoration: none;
	background: var(--gh-ivory);
}

.gh-tabbody {
	padding-top: 18px;
}

/* ---------- 법안 ---------- */

.gh-bills {
	list-style: none;
	margin: 12px 0;
	padding: 0;
}

.gh-bill {
	padding: 14px 0;
	border-bottom: 1px solid var(--gh-line);
}

.gh-bill:last-child {
	border-bottom: 0;
}

.gh-bill-name {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	color: var(--gh-navy) !important;
}

.gh-bills-lg .gh-bill-name {
	font-size: 19px;
}

.gh-bill-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
}

.gh-chip {
	display: inline-block;
	padding: 4px 11px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 999px;
	background: var(--gh-ivory);
	border: 1px solid var(--gh-line);
	color: var(--gh-dim);
	white-space: nowrap;
}

.gh-chip-lg {
	font-size: 15px;
	padding: 6px 14px;
}

.gh-p-passed {
	background: #e8f1ff;
	border-color: #a9c8f5;
	color: #0f3d8a;
}

.gh-p-alt {
	background: #eef5e9;
	border-color: #b6d6a4;
	color: #38621f;
}

.gh-p-rejected {
	background: #fdeaea;
	border-color: #f0b0b0;
	color: #8f1b1b;
}

.gh-p-dropped {
	background: #f1f1f2;
	border-color: #d5d5d8;
	color: #55575c;
}

.gh-p-pending {
	background: #fff5e6;
	border-color: #f0cf9e;
	color: #8a5a10;
}

.gh-chip-vote {
	background: var(--gh-teal-soft);
	border-color: #9ccfcc;
	color: #0c5c5c;
}

.gh-chip-ok {
	background: #e7f6ec;
	border-color: #9ed3b0;
	color: #1c6b3c;
}

.gh-chip-mav {
	background: #f3e9fb;
	border-color: #cdaee6;
	color: #59308a;
}

.gh-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 8px;
	align-items: center;
}

.gh-topic {
	font-size: 14px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--gh-teal-soft);
	color: #0c5c5c !important;
}

.gh-topic:hover {
	background: var(--gh-teal);
	color: #fff !important;
	text-decoration: none;
}

.gh-billhead {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 14px;
}

.gh-topicgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 10px;
}

.gh-topicbox {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 14px 16px;
	background: var(--gh-ivory);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
}

.gh-topicbox b {
	color: var(--gh-teal);
	font-size: 17px;
	white-space: nowrap;
}

.gh-topicbox:hover {
	border-color: var(--gh-teal);
	text-decoration: none;
}

.gh-topicgrid-lg .gh-topicbox {
	padding: 18px;
	font-size: 17px;
}

/* ---------- 표결 ---------- */

.gh-v-yes { color: var(--gh-yes); }
.gh-v-no { color: var(--gh-no); }
.gh-v-abs { color: var(--gh-abs); }
.gh-v-none { color: var(--gh-none); }
.gh-v-unknown { color: var(--gh-none); }

.gh-vote {
	display: inline-block;
	padding: 4px 12px;
	font-size: 15px;
	font-weight: 800;
	border-radius: 999px;
	white-space: nowrap;
	border: 2px solid currentColor;
}

.gh-vote.gh-v-yes { background: #eaf1fd; }
.gh-vote.gh-v-no { background: #fdecec; }
.gh-vote.gh-v-abs { background: #fdf3e4; }
.gh-vote.gh-v-none,
.gh-vote.gh-v-unknown { background: #f2f3f4; }

.gh-vbar {
	display: flex;
	height: 16px;
	border-radius: 999px;
	overflow: hidden;
	background: #eceff3;
	margin: 10px 0 6px;
}

.gh-vb-yes { background: var(--gh-yes); }
.gh-vb-no { background: var(--gh-no); }
.gh-vb-abs { background: var(--gh-abs); }

.gh-vnums {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	font-size: 15px;
	font-weight: 700;
}

.gh-votecards {
	list-style: none;
	margin: 16px 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.gh-votecard {
	padding: 16px;
	background: var(--gh-paper);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
}

.gh-vc-name {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: var(--gh-navy) !important;
}

.gh-vc-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 6px;
}

.gh-votelist {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-votelist li {
	padding: 10px 0;
	border-bottom: 1px solid var(--gh-line);
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: baseline;
}

.gh-votelist li > a {
	flex: 1 1 100%;
	font-weight: 700;
}

.gh-tally b {
	font-size: 15px;
	margin-right: 8px;
}

.gh-vfilter {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 12px 0;
	font-size: 15px;
}

.gh-vfilter > span {
	font-weight: 700;
	color: var(--gh-dim);
	margin-right: 4px;
}

.gh-vfilter a {
	padding: 7px 14px;
	border: 1px solid var(--gh-line);
	border-radius: 999px;
	font-weight: 600;
	background: var(--gh-paper);
}

.gh-vfilter a.gh-on {
	background: var(--gh-navy);
	border-color: var(--gh-navy);
	color: #fff !important;
}

.gh-vdate {
	font-size: 16px;
	color: var(--gh-dim);
}

.gh-pdot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--gh-party, var(--gh-dim));
	margin-right: 6px;
	vertical-align: baseline;
}

/* ---------- 표 ---------- */

.gh-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 12px 0;
}

.gh-table {
	width: 100%;
	min-width: 520px;
	border-collapse: collapse;
	font-size: 16px;
	background: var(--gh-paper);
}

.gh-table th,
.gh-table td {
	padding: 11px 12px;
	border-bottom: 1px solid var(--gh-line);
	text-align: left;
	vertical-align: top;
}

.gh-table thead th {
	background: var(--gh-ivory);
	font-size: 15px;
	color: var(--gh-dim);
	white-space: nowrap;
}

.gh-table tbody th {
	font-weight: 700;
	color: var(--gh-navy);
	white-space: nowrap;
	width: 1%;
}

.gh-table-vote .gh-tname {
	min-width: 260px;
}

.gh-table-members {
	min-width: 620px;
}

.gh-numcell {
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.gh-compare th[scope="col"] {
	min-width: 130px;
}

.gh-bars {
	width: 100%;
	border-collapse: collapse;
	font-size: 16px;
}

.gh-bars th {
	text-align: left;
	font-weight: 600;
	padding: 6px 12px 6px 0;
	white-space: nowrap;
	width: 1%;
}

.gh-bars td {
	padding: 6px 0;
	width: 100%;
}

.gh-bar {
	display: block;
	height: 14px;
	border-radius: 999px;
	background: var(--gh-teal);
	min-width: 6px;
}

.gh-barn {
	width: 1%;
	white-space: nowrap;
	padding-left: 10px;
	color: var(--gh-dim);
	font-size: 15px;
}

/* ---------- 일정 ---------- */

.gh-days {
	display: grid;
	gap: 12px;
}

.gh-day {
	padding: 16px 18px;
	background: var(--gh-paper);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
}

.gh-day-now {
	border-color: var(--gh-teal);
	background: var(--gh-teal-soft);
}

.gh-day h2 {
	font-size: 19px;
	margin-bottom: 8px;
}

.gh-day h2 small {
	font-size: 15px;
}

.gh-sched {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-sched li {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 0, 0, .06);
	align-items: baseline;
}

.gh-sched li:last-child {
	border-bottom: 0;
}

.gh-stime,
.gh-sdate {
	font-weight: 700;
	color: var(--gh-teal);
	font-size: 15px;
	white-space: nowrap;
}

.gh-scn {
	flex: 1 1 220px;
	min-width: 0;
	font-size: 16px;
}

/* ---------- 위원회 ---------- */

.gh-cgrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 10px;
}

.gh-cbox {
	display: block;
	padding: 14px 16px;
	background: var(--gh-ivory);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
}

.gh-cbox b {
	display: block;
	font-size: 17px;
	color: var(--gh-navy);
}

.gh-cbox span {
	display: block;
	font-size: 15px;
	color: var(--gh-dim);
}

.gh-cbox:hover {
	border-color: var(--gh-teal);
	text-decoration: none;
}

.gh-cmits {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gh-cmits li {
	padding: 8px 0;
	border-bottom: 1px solid var(--gh-line);
	font-size: 17px;
}

.gh-schip {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	background: var(--gh-paper);
	border: 1px solid var(--gh-line);
	border-left: 4px solid var(--gh-party, var(--gh-dim));
	border-radius: 10px;
	min-width: 0;
}

.gh-schip img {
	width: 36px;
	height: 45px;
	object-fit: cover;
	border-radius: 6px;
	flex: none;
}

.gh-schip b {
	font-size: 16px;
	color: var(--gh-navy);
}

.gh-schip span {
	font-size: 14px;
	color: var(--gh-dim);
	display: block;
}

.gh-schip-off {
	opacity: .75;
}

.gh-schip:hover {
	text-decoration: none;
	border-color: var(--gh-teal);
}

/* ---------- 출처·배지 ---------- */

.gh-badge {
	display: inline-block;
	padding: 3px 10px;
	font-size: 13px;
	font-weight: 800;
	border-radius: 999px;
	color: #fff;
	vertical-align: middle;
	white-space: nowrap;
}

.gh-badge-official { background: #1553b8; }
.gh-badge-speech { background: #6b3fa0; }
.gh-badge-ai { background: #0f7b7b; }
.gh-badge-verified { background: #7a5320; }

.gh-badge-note {
	font-size: 15px;
	color: var(--gh-dim);
}

.gh-source {
	margin-top: 24px;
	padding-top: 14px;
	border-top: 1px solid var(--gh-line);
	font-size: 15px;
	color: var(--gh-dim);
}

.gh-srclist {
	margin: 0 0 16px;
	padding-left: 18px;
	font-size: 15px;
}

.gh-srclist code {
	font-size: 13px;
	background: var(--gh-ivory);
	padding: 1px 5px;
	border-radius: 4px;
}

.gh-src-link {
	font-size: 15px;
	font-weight: 700;
}

.gh-principles ul {
	margin: 0;
	padding-left: 20px;
	font-size: 16px;
}

.gh-principles li {
	margin-bottom: 6px;
}

/* ---------- 정정 요청 ---------- */

.gh-report {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: flex-end;
	padding: 16px;
	background: var(--gh-ivory);
	border: 1px solid var(--gh-line);
	border-radius: 12px;
}

.gh-report-wrap {
	margin-top: 18px;
}

.gh-report-wrap summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--gh-navy);
	padding: 8px 0;
}

.gh-compare-pick {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: flex-end;
	margin: 16px 0;
}

/* ---------- 쪽 넘김 ---------- */

.gh-pager {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 20px 0;
	font-size: 16px;
}

.gh-pager a,
.gh-pager .gh-now {
	display: inline-block;
	min-width: 46px;
	min-height: 46px;
	padding: 11px 14px;
	text-align: center;
	border: 1px solid var(--gh-line);
	border-radius: 10px;
	font-weight: 700;
	background: var(--gh-paper);
}

.gh-pager .gh-now {
	background: var(--gh-navy);
	border-color: var(--gh-navy);
	color: #fff;
}

.gh-pager .gh-gap {
	color: var(--gh-dim);
}

.gh-pager .gh-count {
	margin-left: auto;
	font-size: 15px;
	color: var(--gh-dim);
}

.gh-app .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- 좁은 화면 ---------- */

@media (max-width: 860px) {
	.gh-grid2 {
		grid-template-columns: 1fr;
	}

	.gh-profile {
		flex-direction: column;
	}

	.gh-pphoto img {
		width: 110px;
		height: 138px;
	}

	.gh-title {
		font-size: 27px;
	}
}

@media (max-width: 560px) {
	.gh-app {
		font-size: 16px;
	}

	.gh-dl {
		grid-template-columns: 1fr;
		gap: 0 0;
	}

	.gh-dl dt {
		margin-top: 8px;
	}

	.gh-search {
		flex-direction: column;
	}

	.gh-stats {
		grid-template-columns: 1fr 1fr;
	}

	.gh-nav a,
	.gh-tabs a {
		padding: 10px 12px;
		font-size: 15px;
	}
}

/* ---------- 어두운 화면 ---------- */

@media (prefers-color-scheme: dark) {
	.gh-app {
		--gh-navy: #cfe0ff;
		--gh-navy-2: #22304d;
		--gh-ivory: #1b2130;
		--gh-paper: #151a26;
		--gh-teal: #4fd1c5;
		--gh-teal-soft: #17313a;
		--gh-line: #2c3547;
		--gh-text: #e6e9ef;
		--gh-dim: #9aa4b6;
		--gh-yes: #7fb0ff;
		--gh-no: #ff8a8a;
		--gh-abs: #f0b45e;
		--gh-none: #9aa4b6;
		--gh-shadow: none;
	}

	.gh-app .gh-stat,
	.gh-app .gh-btn,
	.gh-app .gh-pager .gh-now,
	.gh-app .gh-vfilter a.gh-on {
		background: #22304d;
		border-color: #22304d;
		color: #eaf1ff !important;
	}

	.gh-app .gh-p-passed { background: #16294a; border-color: #2c4a80; color: #a8c6ff; }
	.gh-app .gh-p-alt { background: #1a2b1c; border-color: #37592f; color: #b3dfa5; }
	.gh-app .gh-p-rejected { background: #3a1c1c; border-color: #6b3232; color: #f2b5b5; }
	.gh-app .gh-p-dropped { background: #262a33; border-color: #3b414d; color: #b9bfc9; }
	.gh-app .gh-p-pending { background: #34290f; border-color: #6a5320; color: #eccb8f; }
	.gh-app .gh-vote.gh-v-yes { background: #16294a; }
	.gh-app .gh-vote.gh-v-no { background: #3a1c1c; }
	.gh-app .gh-vote.gh-v-abs { background: #34290f; }
	.gh-app .gh-vote.gh-v-none,
	.gh-app .gh-vote.gh-v-unknown { background: #262a33; }
	.gh-app .gh-flash { background: #16321f; border-color: #2f6b42; color: #cdebd7; }
}

/* 테마가 찍는 페이지 제목이 화면 안의 제목과 겹쳐 두 번 나온다.
   국회한눈 페이지에서만 테마 쪽 제목을 감춘다. (GH_Pages::body_class) */
body.gh-page .entry-header,
body.gh-page .page-header,
body.gh-page .wp-block-post-title {
	display: none;
}
