/*
Theme Name: Bohumnachimban
Theme URI: http://localhost/bohumnachimban
Description: GeneratePress child theme styled after the "Voice" starter site, navy & gold, Noto Sans KR, native 보험 Q&A.
Author: jjyswitch
Template: generatepress
Version: 2.0.6
Text Domain: bohumnachimban
*/

/* =========================================================
   Design tokens ??single source of truth (navy & gold)
   Every rule below pulls its colour from here. To re-skin
   the site, change these values only.
   ========================================================= */
:root {
	/* Brand */
	--navy: #16264a;        /* header, navigation, primary UI */
	--navy-dark: #0e1a33;   /* hover / current, footer widgets */
	--navy-deep: #0a1424;   /* copyright bar */
	--gold: #d4af37;        /* fills, borders, and gold text on dark grounds */
	--gold-ink: #9a7b22;    /* bronze ??the only readable gold for text on white */

	/* Neutrals */
	--ink: #1c2436;         /* body text + headings */
	--muted: #5c6472;       /* secondary / meta text */
	--paper: #ffffff;       /* page background */
	--on-navy: #ffffff;     /* text & icons sitting on the navy ground */
	--on-navy-dim: rgba(255, 255, 255, 0.7);
	--hairline: #dcdcdc;    /* thin list separators */
	--dash: #c2ad74;        /* dashed column dividers (soft gold) */

	/* Footer */
	--footer-bg: var(--navy-dark);
	--footer-text: #c3ccdb;
	--footer-muted: #8b96a8;

	/* Effects */
	--shadow-nav: 0 2px 0 rgba(0, 0, 0, 0.12);

	/* Type */
	--body-font: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
	--heading-font: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", sans-serif;
	--display-font: "Black Han Sans", "Noto Sans KR", sans-serif; /* Latin numerals / short Latin labels only */
}

/* =========================================================
   Base typography
   ========================================================= */
body,
button,
input,
select,
textarea {
	font-family: var(--body-font);
	color: var(--ink);
}

body {
	background-color: var(--paper);
	font-size: 17px;
	line-height: 1.85;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.main-title,
.entry-title,
.widget-title,
.comments-title,
.comment-reply-title,
.pagination a,
.pagination span {
	font-family: var(--heading-font);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--ink);
}

/* Large display headings ??heavier weight for impact */
.page-header h1,
h1.entry-title,
.vf-title-lg,
h2.entry-title {
	font-weight: 900;
}

a {
	color: var(--gold-ink);
}

a:hover,
a:focus {
	color: var(--navy);
}

::selection {
	background: var(--navy);
	color: var(--on-navy);
}

/* =========================================================
   Header ??one continuous navy band with a centered wordmark
   ========================================================= */
.site-header {
	background-color: var(--navy);
	border: 0;
}

.site-header .inside-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 26px;
	padding-bottom: 26px;
}

.site-branding,
.site-branding-container {
	text-align: center;
	float: none;
	margin: 0;
}

.main-title,
.site-title {
	margin: 0;
	line-height: 1;
}

.main-title a,
.site-title a {
	font-family: var(--heading-font);
	font-weight: 800;
	color: var(--on-navy);
	font-size: clamp(28px, 4vw, 52px);
	letter-spacing: -0.01em;
	line-height: 1;
}

.main-title a:hover,
.site-title a:hover {
	color: var(--gold);
}

.site-description {
	margin: 13px 0 0;
	color: var(--gold);
	font-family: var(--body-font);
	font-size: 16.5px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.site-logo img {
	max-height: 66px;
	width: auto;
}

/* =========================================================
   Primary navigation ??navy, sticky, uppercase, gold underline
   ========================================================= */
.main-navigation {
	background-color: var(--navy);
	position: sticky;
	top: 0;
	z-index: 200;
	margin-top: 0;
	border-bottom: 3px solid var(--gold);
	box-shadow: var(--shadow-nav);
}

.main-navigation .inside-navigation {
	background-color: var(--navy);
}

.main-navigation .main-nav > ul > li > a,
.main-navigation .menu-toggle,
.main-navigation .menu-bar-item > a,
.main-navigation .search-item > a {
	color: var(--on-navy);
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0.01em;
	font-size: 16px;
}

.main-navigation .main-nav > ul > li:hover > a,
.main-navigation .main-nav > ul > li.sfHover > a,
.main-navigation .main-nav > ul > li[class*="current-menu"] > a,
.main-navigation .menu-bar-item:hover > a,
.main-navigation .search-item:hover > a {
	background-color: var(--navy-dark);
	color: var(--gold);
}

.main-navigation ul ul {
	background-color: var(--navy-dark);
	border-top: 2px solid var(--gold);
}

.main-navigation ul ul li a {
	color: var(--on-navy);
	text-transform: none;
	letter-spacing: 0.02em;
}

.main-navigation ul ul li:hover > a,
.main-navigation ul ul li[class*="current-menu"] > a {
	background-color: var(--navy);
	color: var(--gold);
}

/* Navigation search field */
.navigation-search input[type="search"],
.navigation-search input[type="search"]:focus {
	background-color: var(--navy-dark);
	color: var(--on-navy);
}

.navigation-search input::placeholder {
	color: var(--on-navy-dim);
}

/* Mobile toggle */
button.menu-toggle,
button.menu-toggle:hover,
button.menu-toggle:focus {
	background-color: var(--navy);
	color: var(--on-navy);
}

/* =========================================================
   Post lists / archives (category & search use GP's loop)
   ========================================================= */
.entry-title {
	font-weight: 400;
	line-height: 1.2;
}

.page-header h1,
.entry-header .entry-title,
h1.entry-title {
	font-size: clamp(28px, 3.6vw, 46px);
}

h2.entry-title {
	font-size: clamp(22px, 2.4vw, 30px);
}

.entry-title a {
	color: var(--ink);
}

.entry-title a:hover {
	color: var(--gold-ink);
}

/* Meta row */
.entry-meta {
	font-family: var(--heading-font);
	font-weight: 500;
	letter-spacing: 0;
	font-size: 13px;
	color: var(--muted);
}

.entry-meta .posted-on a,
.entry-meta .posted-on time {
	color: var(--gold-ink);
}

.entry-meta .byline a {
	color: var(--muted);
}

/* Category links rendered as rounded pills */
.entry-meta .cat-links a,
.entry-terms.category a,
.taxonomy-category a {
	display: inline-block;
	border: 1px solid var(--navy);
	border-radius: 999px;
	padding: 2px 13px 3px;
	margin: 0 4px 5px 0;
	color: var(--navy);
	font-size: 12px;
	letter-spacing: 0.01em;
	text-transform: none;
	line-height: 1.7;
}

.entry-meta .cat-links a:hover,
.entry-terms.category a:hover {
	background-color: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

/* Featured image with the signature gold top accent */
.post-image img,
.page-header-image-single img,
.wp-post-image {
	display: block;
	border-top: 6px solid var(--gold);
}

.post-image {
	margin-bottom: 1.5em;
}

/* Read more / buttons */
.read-more,
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button__link {
	background-color: var(--navy);
	color: var(--on-navy);
	border: 0;
	border-radius: 0;
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 12px 26px;
}

.read-more:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
	background-color: var(--gold);
	color: var(--navy);
}

/* Multi-column grid for category / archive / search */
.archive .site-main,
.search-results .site-main,
.blog:not(.home) .site-main {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 0;
	row-gap: 3.5rem;
	align-items: start;
}

.archive .site-main > article,
.search-results .site-main > article,
.blog:not(.home) .site-main > article {
	padding: 0 2.2rem;
	border-left: 2px dashed var(--dash);
	margin: 0;
}

.archive .site-main > article:nth-child(3n + 1),
.search-results .site-main > article:nth-child(3n + 1),
.blog:not(.home) .site-main > article:nth-child(3n + 1) {
	border-left: 0;
	padding-left: 0;
}

.archive .site-main > article:nth-child(-n + 3),
.search-results .site-main > article:nth-child(-n + 3),
.blog:not(.home) .site-main > article:nth-child(-n + 3) {
	padding-top: 0;
}

.archive .site-main > *:not(article),
.search-results .site-main > *:not(article),
.blog:not(.home) .site-main > *:not(article) {
	grid-column: 1 / -1;
}

.archive .site-main .inside-article,
.search-results .site-main .inside-article,
.blog:not(.home) .site-main .inside-article {
	display: flex;
	flex-direction: column;
}

.archive .site-main .inside-article .post-image,
.search-results .site-main .inside-article .post-image,
.blog:not(.home) .site-main .inside-article .post-image {
	order: -1;
	margin-bottom: 1.2em;
}

.archive .site-main .inside-article .entry-title,
.search-results .site-main .inside-article .entry-title,
.blog:not(.home) .site-main .inside-article .entry-title {
	font-size: clamp(19px, 1.7vw, 24px);
	font-weight: 700;
	line-height: 1.3;
	margin-top: 0;
	margin-bottom: 0.35em;
}

.archive .site-main .inside-article .entry-meta,
.search-results .site-main .inside-article .entry-meta,
.blog:not(.home) .site-main .inside-article .entry-meta {
	margin-bottom: 1em;
}

@media (max-width: 1024px) {
	.archive .site-main,
	.search-results .site-main,
	.blog:not(.home) .site-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.archive .site-main > article,
	.search-results .site-main > article,
	.blog:not(.home) .site-main > article {
		padding: 0 1.6rem;
	}
	.archive .site-main > article:nth-child(3n + 1),
	.search-results .site-main > article:nth-child(3n + 1),
	.blog:not(.home) .site-main > article:nth-child(3n + 1) {
		border-left: 2px dashed var(--dash);
		padding-left: 1.6rem;
	}
	.archive .site-main > article:nth-child(2n + 1),
	.search-results .site-main > article:nth-child(2n + 1),
	.blog:not(.home) .site-main > article:nth-child(2n + 1) {
		border-left: 0;
		padding-left: 0;
	}
}

@media (max-width: 640px) {
	.archive .site-main,
	.search-results .site-main,
	.blog:not(.home) .site-main {
		grid-template-columns: 1fr;
	}
	.archive .site-main > article,
	.search-results .site-main > article,
	.blog:not(.home) .site-main > article {
		border-left: 0 !important;
		padding: 0 !important;
	}
}

/* =========================================================
   Content links
   ========================================================= */
.entry-content a {
	color: var(--ink);
	text-decoration: underline;
	text-decoration-color: var(--gold);
	text-underline-offset: 3px;
}

.entry-content a:hover {
	color: var(--gold-ink);
}

.entry-content blockquote {
	border-left: 4px solid var(--gold);
	font-style: italic;
}

/* =========================================================
   Sidebar widgets
   ========================================================= */
.widget-area .widget-title {
	letter-spacing: -0.01em;
	border-bottom: 3px solid var(--gold);
	padding-bottom: 8px;
	margin-bottom: 1em;
}

.widget-area .widget a {
	color: var(--ink);
}

.widget-area .widget a:hover {
	color: var(--gold-ink);
}

/* Sidebar search widget — compact, button text must not wrap */
.widget-area .wp-block-search,
.widget-area .widget_search form {
	max-width: 100%;
}

.widget-area .wp-block-search__label,
.widget-area .widget_search label {
	display: block;
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 13px;
	color: var(--ink);
	margin-bottom: 8px;
}

.widget-area .wp-block-search__inside-wrapper {
	display: flex;
	align-items: stretch;
	gap: 0;
	max-width: 100%;
}

.widget-area .wp-block-search__input,
.widget-area .widget_search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	height: 42px;
	margin: 0;
	padding: 0 12px;
	border: 1px solid var(--hairline);
	border-right: 0;
	border-radius: 0;
	font-size: 14px;
	box-sizing: border-box;
}

.widget-area .wp-block-search__button,
.widget-area .widget_search input[type="submit"],
.widget-area .widget_search button[type="submit"] {
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	height: 42px;
	min-height: 42px;
	margin: 0;
	padding: 0 16px !important;
	border: 0;
	border-radius: 0;
	background: var(--navy);
	color: var(--on-navy);
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 13px !important;
	line-height: 42px;
	white-space: nowrap;
	letter-spacing: 0;
}

.widget-area .wp-block-search__button:hover,
.widget-area .widget_search input[type="submit"]:hover,
.widget-area .widget_search button[type="submit"]:hover {
	background: var(--navy-dark);
	color: var(--on-navy);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer,
.footer-widgets {
	background-color: var(--footer-bg);
	color: var(--footer-text);
}

.footer-widgets .widget-title {
	color: var(--on-navy);
	letter-spacing: -0.01em;
	border-bottom: 3px solid var(--gold);
	padding-bottom: 8px;
}

.footer-widgets a,
.site-info a {
	color: var(--on-navy);
}

.footer-widgets a:hover {
	color: var(--gold);
}

.site-info {
	background-color: var(--navy-deep);
	color: var(--footer-muted);
	font-size: 13px;
}

/* =========================================================
   Front page ??Voice-style 3-column magazine
   ========================================================= */

/* Widen GeneratePress' container on the front page only */
body.home #page.grid-container {
	max-width: 1520px;
}

.voice-front {
	width: 100%;
	padding: 2.5rem 0 3.5rem;
}

.vf-grid {
	position: relative;
	display: grid;
	grid-template-columns: 244px minmax(0, 1fr) 336px;
	align-items: start;
}

/* Full-height dashed dividers, independent of column content height */
.vf-grid::before,
.vf-grid::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	border-left: 2px dashed var(--dash);
	pointer-events: none;
}

.vf-grid::before {
	left: 244px;
}

.vf-grid::after {
	right: 336px;
}

.vf-col {
	min-width: 0;
}

.vf-center {
	padding: 0 2.6rem;
}

.vf-right {
	padding-left: 2.6rem;
}

/* Shared bits ------------------------------------------------ */
.vf-title {
	font-weight: 400;
	line-height: 1.22;
	margin: 0 0 0.4rem;
}

.vf-title a {
	color: var(--ink);
}

.vf-title a:hover {
	color: var(--gold-ink);
}

.vf-date {
	display: block;
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0;
	font-size: 12px;
	color: var(--gold-ink);
	margin-bottom: 0.5rem;
}

.vf-author {
	display: block;
	font-size: 13px;
	color: var(--muted);
	margin-top: 0.3rem;
}

.vf-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.6rem;
}

.vf-meta .vf-date {
	margin-bottom: 0;
}

.vf-cats a {
	display: inline-block;
	border: 1px solid var(--navy);
	border-radius: 999px;
	padding: 1px 11px 2px;
	margin-left: 4px;
	font-size: 11px;
	color: var(--navy);
	line-height: 1.7;
}

.vf-cats a:hover {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--navy);
}

.vf-excerpt {
	font-size: 15px;
	line-height: 1.8;
	margin: 0.5rem 0 0.7rem;
}

.vf-more {
	display: inline-block;
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0;
	font-size: 12px;
	color: var(--gold-ink);
}

.vf-more:hover {
	color: var(--navy);
}

.vf-tags {
	margin: 0.7rem 0 0;
	font-size: 12px;
	color: var(--muted);
}

.vf-tags a {
	color: var(--gold-ink);
}

.vf-card-media,
.vf-feature-media {
	display: block;
	margin-bottom: 0.9rem;
}

.vf-card-media img,
.vf-feature-media img {
	display: block;
	width: 100%;
	height: auto;
	border-top: 5px solid var(--gold);
}

/* Left rail ??headline list ---------------------------------- */
.vf-left .vf-headline {
	border-top: 1px solid var(--hairline);
	padding-top: 1rem;
	margin-bottom: 1.5rem;
}

.vf-left .vf-headline:first-child {
	border-top: 0;
	padding-top: 0;
}

.vf-left .vf-title {
	font-size: 17px;
}

/* Center ??hero carousel + duo + stacked ------------------- */
.vf-hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(300px, 32vw, 420px);
	border-top: 6px solid var(--gold);
	background: linear-gradient(135deg, var(--navy), var(--navy-deep));
}

.vf-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding: 2.6rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease;
	background: linear-gradient(135deg, var(--navy), var(--navy-deep));
	background-size: cover;
	background-position: center;
	color: var(--on-navy);
}

.vf-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.vf-hero__slide[data-has-image="1"]::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 20, 36, 0.62);
}

.vf-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 46ch;
}

.vf-hero__eyebrow {
	display: block;
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0.04em;
	font-size: 13px;
	color: var(--gold);
	margin-bottom: 0.6rem;
}

.vf-hero__title {
	font-weight: 900;
	font-size: clamp(22px, 2.4vw, 33px);
	line-height: 1.25;
	color: var(--on-navy);
	margin: 0 0 0.7rem;
}

.vf-hero__text {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 1.5rem;
}

.vf-hero__cta {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 14px;
	padding: 11px 24px;
}

.vf-hero__cta:hover {
	background: var(--on-navy);
	color: var(--navy);
}

.vf-hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 40px;
	height: 46px;
	border: 0;
	padding: 0;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.28);
	color: var(--on-navy);
}

.vf-hero__nav:hover {
	background: var(--gold);
	color: var(--navy);
}

.vf-hero__nav--prev {
	left: 0;
}

.vf-hero__nav--next {
	right: 0;
}

.vf-hero__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 14px;
	z-index: 3;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.vf-hero__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
}

.vf-hero__dot.is-active {
	background: var(--gold);
}

/* Center ???ъ씠???명룷 infographics ------------------------ */
.vf-info__block {
	margin-top: 2.6rem;
	padding-top: 2.4rem;
	border-top: 2px dashed var(--dash);
}

.vf-info__title {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--gold-ink);
	margin: 0 0 1.4rem;
}

/* Steps */
.vf-info-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
}

.vf-info-step {
	border-top: 3px solid var(--navy);
	padding-top: 0.9rem;
}

.vf-info-step__no {
	font-family: var(--display-font);
	font-size: 26px;
	color: var(--gold);
	line-height: 1;
}

.vf-info-step__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0.5rem 0 0.35rem;
}

.vf-info-step__text {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--muted);
	margin: 0;
}

/* Stats */
.vf-info-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--navy);
	color: var(--on-navy);
}

.vf-info-stat {
	padding: 1.5rem 1rem;
	text-align: center;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.vf-info-stat:first-child {
	border-left: 0;
}

.vf-info-stat__num {
	display: block;
	font-family: var(--display-font);
	font-size: clamp(22px, 2.2vw, 30px);
	color: var(--gold);
	line-height: 1.1;
}

.vf-info-stat__label {
	display: block;
	margin-top: 0.4rem;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}

/* Features */
.vf-info-features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vf-info-feature {
	display: flex;
	gap: 0.9rem;
	padding: 0.9rem 0;
	border-bottom: 1px solid var(--hairline);
}

.vf-info-feature:last-child {
	border-bottom: 0;
}

.vf-info-feature__mark {
	flex: none;
	width: 24px;
	height: 24px;
	display: grid;
	place-items: center;
	background: var(--gold);
	color: var(--navy);
	font-size: 13px;
	font-weight: 700;
}

.vf-info-feature__title {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 0.2rem;
}

.vf-info-feature__text {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--muted);
	margin: 0;
}

/* CTA banner */
.vf-info-cta {
	margin-top: 2.6rem;
	padding: 2rem 1.8rem;
	background: linear-gradient(135deg, var(--navy), var(--navy-deep));
	color: var(--on-navy);
	text-align: center;
}

.vf-info-cta__eyebrow {
	display: block;
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0.04em;
	font-size: 12px;
	color: var(--gold);
	margin-bottom: 0.5rem;
}

.vf-info-cta__title {
	font-size: clamp(20px, 2vw, 26px);
	font-weight: 900;
	color: var(--on-navy);
	margin: 0 0 0.5rem;
}

.vf-info-cta__text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 1.3rem;
}

.vf-info-cta__btn {
	display: inline-block;
	background: var(--gold);
	color: var(--navy);
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 14px;
	padding: 12px 28px;
}

.vf-info-cta__btn:hover {
	background: var(--on-navy);
	color: var(--navy);
}

/* Right rail ??蹂댄뿕 Q&A list ------------------------------- */
.vf-qna__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	border-bottom: 3px solid var(--gold);
	padding-bottom: 0.6rem;
	margin-bottom: 1.2rem;
}

.vf-qna__title {
	margin: 0;
	font-size: 20px;
	font-weight: 900;
}

.vf-qna__all {
	flex: none;
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 12px;
	color: var(--gold-ink);
}

.vf-qna__all:hover {
	color: var(--navy);
}

.vf-qna__row {
	border-top: 1px solid var(--hairline);
	padding: 0.95rem 0;
}

.vf-qna__row:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.vf-qna__row-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 0.4rem;
}

.vf-qna__cat {
	flex: none;
	background: var(--navy);
	color: var(--on-navy);
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 11px;
	padding: 2px 8px;
}

.vf-qna__new {
	flex: none;
	background: var(--gold);
	color: var(--navy);
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 10px;
	letter-spacing: 0.04em;
	padding: 2px 6px;
}

.vf-qna__q {
	flex: 1 1 100%;
	font-family: var(--heading-font);
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
	color: var(--ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vf-qna__q:hover {
	color: var(--gold-ink);
}

.vf-qna__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.9rem;
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: 12px;
	color: var(--muted);
}

.vf-qna__author {
	color: var(--ink);
}

.vf-qna__empty {
	color: var(--muted);
	font-size: 14px;
}

/* Responsive ----------------------------------------------- */
@media (max-width: 1180px) {
	.vf-grid {
		grid-template-columns: 220px minmax(0, 1fr);
	}
	.vf-grid::before {
		left: 220px;
	}
	.vf-grid::after {
		display: none;
	}
	.vf-right {
		grid-column: 1 / -1;
		border-top: 2px dashed var(--dash);
		margin-top: 2.5rem;
		padding: 2.5rem 0 0;
	}
	/* use the extra width: two columns of Q&A rows */
	.vf-qna {
		column-count: 2;
		column-gap: 2.8rem;
	}
	.vf-qna__row {
		break-inside: avoid;
	}
	.vf-qna__head {
		column-span: all;
	}
}

@media (max-width: 780px) {
	.voice-front {
		padding: 1.5rem 0 2.5rem;
	}
	.vf-grid {
		grid-template-columns: 1fr;
	}
	.vf-grid::before,
	.vf-grid::after {
		display: none;
	}
	.vf-center {
		padding: 2.4rem 0;
		margin: 2.4rem 0;
		border-top: 2px dashed var(--dash);
		border-bottom: 2px dashed var(--dash);
	}
	.vf-right {
		padding-left: 0;
	}
	.vf-info-steps {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.vf-info-stats {
		grid-template-columns: 1fr 1fr;
	}
	.vf-info-stat:nth-child(3) {
		border-left: 0;
	}
	.vf-qna {
		column-count: 1;
	}
	.vf-hero__slide {
		padding: 1.8rem;
	}
}

@media (max-width: 520px) {
	.vf-info-stats {
		grid-template-columns: 1fr;
	}
	.vf-info-stat {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}
	.vf-info-stat:first-child {
		border-top: 0;
	}
}

/* 蹂댄뿕 Q&A ?섏씠吏 ??trim the empty space between the sticky nav and the panel */
.page-id-47 .inside-article,
.post-type-archive-qna .inside-article {
	padding-top: 1.4rem;
}

.ins-archive-wrap {
	padding-top: 0;
}

/* 蹂댄뿕 Q&A ?섏씠吏 ?ㅻ뜑 ??light panel with a gold rule.
   (Kept off the navy palette so it never blends into the sticky navy nav.) */
.ins-archive-wrap .ins-page-header {
	margin: 0 0 1.8rem;
	padding: 1.5rem 1.7rem 1.6rem;
	background: var(--paper);
	border: 1px solid var(--hairline);
	border-top: 4px solid var(--gold);
	color: var(--ink);
}

.ins-archive-wrap .ins-page-header-top {
	align-items: center;
}

.ins-archive-wrap .ins-page-kicker {
	font-family: var(--display-font);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 12px;
	color: var(--gold-ink);
	margin-bottom: 5px;
}

.ins-archive-wrap .ins-page-title {
	color: var(--ink);
	font-family: var(--heading-font);
	font-weight: 900;
	font-size: clamp(22px, 2.2vw, 29px);
	margin: 0;
}

.ins-archive-wrap .ins-page-desc {
	color: var(--muted);
	font-size: 13.5px;
	line-height: 1.65;
	margin: 0.5rem 0 0;
	max-width: 54ch;
}

.ins-archive-wrap .ins-ask-toggle-btn {
	background: var(--navy);
	color: var(--on-navy);
	border-radius: 0;
	font-family: var(--heading-font);
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 12px 22px;
}

.ins-archive-wrap .ins-ask-toggle-btn:hover {
	background: var(--gold);
	color: var(--navy);
}

@media (max-width: 640px) {
	.ins-archive-wrap .ins-page-header-top {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* 보험 Q&A — 취소 / 등록 버튼을 똑같은 크기·모양으로 (댓글 폼 + 질문 폼 공통) */
.qbx-comment-form .qbx-cancel-btn,
.qbx-comment-form .qbx-submit-btn,
#comments .qbx-comment-form .qbx-submit-btn.submit,
.ins-ask-cancel-btn,
.ins-ask-submit-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	min-height: 44px !important;
	min-width: 100px !important;
	height: auto !important;
	padding: 0 24px !important;
	border-radius: 999px !important;
	font-family: var(--body-font) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: background 0.15s, color 0.15s !important;
}

/* 취소 = 아웃라인(보조) */
.qbx-comment-form .qbx-cancel-btn,
.ins-ask-cancel-btn {
	border: 1px solid var(--navy) !important;
	background: transparent !important;
	color: var(--navy) !important;
}

.qbx-comment-form .qbx-cancel-btn:hover,
.ins-ask-cancel-btn:hover {
	background: var(--navy) !important;
	color: var(--on-navy) !important;
}

/* 등록 = 채움(주요) */
.qbx-comment-form .qbx-submit-btn,
#comments .qbx-comment-form .qbx-submit-btn.submit,
.ins-ask-submit-btn {
	border: 1px solid var(--navy) !important;
	background: var(--navy) !important;
	color: var(--on-navy) !important;
}

.qbx-comment-form .qbx-submit-btn:hover,
#comments .qbx-comment-form .qbx-submit-btn.submit:hover,
.ins-ask-submit-btn:hover {
	background: var(--navy-dark) !important;
	border-color: var(--navy-dark) !important;
}

/* =========================================================
   Back-to-top
   ========================================================= */
.generate-back-to-top {
	background-color: var(--navy) !important;
	border-radius: 0 !important;
}
