:root {
	--board-blue: #0071e3;
	--board-text: #1d1d1f;
	--board-muted: #6e6e73;
	--board-line: rgba(29, 29, 31, 0.12);
	--board-bg: #fff;
	--board-card: rgba(255, 255, 255, 0.92);
	--board-navy: #12385f;
	--board-soft-blue: #eef7ff;
	--board-soft-line: rgba(18, 56, 95, 0.12);
	--board-blog-accent: #0071e3;
	--board-blog-soft: #eef7ff;
}

.board-page {
	margin: 0;
	background: #fff;
	color: var(--board-text);
	font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Noto Sans KR", "Segoe UI", sans-serif;
}

.board-page .hidden {
	display: none !important;
}

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

.board-site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px clamp(18px, 5vw, 56px);
	border-bottom: 1px solid var(--board-line);
	background: rgba(255, 255, 255, 0.86);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	backdrop-filter: saturate(180%) blur(16px);
}

.board-logo {
	color: var(--board-text);
	font-size: 17px;
	font-weight: 800;
	text-decoration: none;
}

.board-page-main {
	width: 100%;
	margin: 0 auto;
	padding: 42px 0 72px;
}

.board-page-oneframe.board-page-has-top-editor-html .board-page-main {
	padding-top: 0;
}

.board-page-main > .board-wrap,
.board-page-main > .board-layout-html,
.board-page-main > .board-faq-cta,
.board-page-main > .board-site-footer {
	width: min(var(--board-content-max-width, 1240px), calc(100% - 32px));
	box-sizing: border-box;
	margin-right: auto;
	margin-left: auto;
}

.board-layout-html {
	margin-bottom: 28px;
}

.board-layout-html-bottom {
	margin-top: 32px;
	margin-bottom: 0;
}

.board-layout-html::after {
	display: block;
	clear: both;
	content: "";
}

.board-wrap,
.board-embed {
	border: 1px solid var(--board-line);
	border-radius: 18px;
	background: var(--board-card);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.board-wrap {
	padding: clamp(22px, 4vw, 38px);
}

.board-faq-cta {
	border: 1px solid var(--board-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);
}

.board-faq-landing {
	width: 100%;
	box-sizing: border-box;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
	gap: clamp(32px, 4vw, 72px);
	align-items: center;
	margin: -42px 0 28px;
	padding: 64px max(24px, calc((100% - 1760px) / 2));
	background: linear-gradient(125deg, #f9fcff 0%, #edf7ff 46%, #f6fafc 72%, #ffffff 100%);
	box-shadow: inset 0 -1px 0 rgba(18, 56, 95, 0.08);
	color: var(--board-navy);
}

.board-faq-kicker {
	margin: 0 0 12px;
	color: var(--board-blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.board-faq-landing h2 {
	max-width: 1040px;
	margin: 0;
	color: var(--board-navy);
	font-size: 40px;
	font-weight: 900;
	line-height: 1.16;
	letter-spacing: 0;
}

.board-faq-landing-text > p:last-child {
	max-width: 920px;
	margin: 16px 0 0;
	color: #445d73;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.76;
}

.board-faq-cta p {
	margin: 12px 0 0;
	color: #445d73;
	font-size: 15px;
	line-height: 1.7;
}

.board-faq-landing-text strong {
	color: var(--board-navy);
	font-weight: 800;
}

.board-faq-landing .board-faq-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-content: stretch;
	justify-content: stretch;
	gap: 10px;
	width: min(100%, 360px);
	min-width: 0;
	justify-self: end;
	box-sizing: border-box;
	border: 1px solid rgba(0, 113, 227, 0.14);
	border-radius: 14px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 40px rgba(18, 56, 95, 0.08);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.board-faq-landing .board-faq-actions .site-btn {
	width: 100%;
	min-width: 0;
	min-height: 42px;
	box-sizing: border-box;
	padding-right: 12px;
	padding-left: 12px;
	font-size: 13px;
	font-weight: 800;
}

.board-faq-landing .site-btn-secondary {
	border-color: rgba(0, 113, 227, 0.18);
	background: rgba(255, 255, 255, 0.78);
	color: var(--board-navy);
}

.board-faq-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
	min-width: 260px;
}

.board-faq-actions .site-btn {
	white-space: nowrap;
}

.board-faq-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 24px;
	border-color: var(--board-soft-line);
	border-radius: 14px;
	padding: 26px 30px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: 0 14px 34px rgba(18, 56, 95, 0.06);
}

.board-faq-cta strong {
	display: block;
	color: var(--board-navy);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.32;
}

.board-site-footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-top: 24px;
	padding: 22px 4px 0;
	border-top: 1px solid var(--board-line);
	color: var(--board-muted);
}

.board-site-footer-main {
	min-width: 0;
}

.board-site-footer-main > strong {
	display: block;
	color: var(--board-text);
	font-size: 15px;
	line-height: 1.5;
}

.board-site-footer-info {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.55;
}

.board-site-footer-info span {
	display: inline-flex;
	gap: 4px;
	max-width: 100%;
}

.board-site-footer-info b {
	color: #515154;
	font-weight: 800;
	white-space: nowrap;
}

.board-site-footer-copy {
	margin: 9px 0 0;
	font-size: 12px;
	line-height: 1.55;
}

.board-site-footer-home {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid var(--board-line);
	border-radius: 999px;
	padding: 0 16px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--board-text);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.board-site-footer-home:hover {
	border-color: rgba(0, 113, 227, 0.28);
	background: rgba(0, 113, 227, 0.1);
	color: var(--board-blue);
	transform: translateY(-1px);
}

.board-embed {
	width: calc(100% - 28px);
	max-width: var(--board-embed-width, 1120px);
	margin: 40px auto;
	padding: clamp(20px, 3vw, 32px);
}

.board-embed {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.board-embed .board-embed-body {
	min-width: 0;
}

.board-embed .board-search {
	margin-bottom: clamp(22px, 3vw, 32px);
}

.board-embed .board-search:not(.is-filtered) > a {
	display: none;
}

.board-embed .board-wrap,
.board-embed .board-detail {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.board-embed .board-partial .board-title {
	display: none;
}

.board-embed .board-gallery-card,
.board-embed .board-partial .board-gallery-card {
	border: 0;
	box-shadow: none;
}

.board-embed .board-gallery-card img {
	border-radius: 14px;
}

.board-embed .board-partial .board-faq-item:first-child,
.board-embed .board-partial .board-list li:first-child {
	border-top: 0;
}

.board-embed .board-detail-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	border-bottom-color: rgba(29, 29, 31, 0.08);
	padding-bottom: 18px;
}

.board-embed .board-detail-head p {
	display: none;
}

.board-embed .board-detail-head h1,
.board-embed .board-detail-head .board-meta {
	flex-basis: 100%;
}

.board-embed .board-detail-partial > .board-actions,
.board-embed .board-actions .board-home-link {
	display: none;
}

.board-embed .board-detail + .board-partial {
	margin-top: clamp(28px, 4vw, 48px);
}

.board-title,
.board-embed-head,
.board-detail-head {
	margin-bottom: 24px;
}

.board-title p,
.board-embed-head p,
.board-detail-head p {
	margin: 0 0 8px;
	color: var(--board-muted);
	font-size: 14px;
	line-height: 1.6;
}

.board-title h1,
.board-title h2,
.board-embed-head h3,
.board-detail-head h1 {
	margin: 0;
	color: var(--board-text);
	letter-spacing: 0;
}

.board-title h1,
.board-title h2,
.board-detail-head h1 {
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1.18;
}

.board-count {
	margin: -8px 0 18px;
	color: var(--board-muted);
	font-size: 13px;
	line-height: 1.5;
}

.board-count strong {
	color: var(--board-text);
	font-weight: 800;
}

.board-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px 18px;
	margin: 0 0 18px;
}

.board-tools-categories {
	min-width: 0;
	flex: 1 1 360px;
}

.board-tools-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	min-width: min(100%, 460px);
	margin-left: auto;
}

.board-tools .board-category-filter,
.board-tools .board-search,
.board-tools .board-manager-bar {
	margin: 0;
}

.board-tools .board-manager-bar {
	flex: 0 0 auto;
}

.board-search {
	display: flex;
	align-items: center;
	gap: 8px;
	width: min(100%, var(--board-search-max-width, 860px));
	max-width: min(100%, var(--board-search-max-width, 860px));
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	justify-content: flex-end;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.board-search select,
.board-search input {
	height: 40px;
	min-height: 40px;
	box-sizing: border-box;
	border: 1px solid rgba(29, 29, 31, 0.16);
	border-radius: 10px;
	background: #fff;
	color: var(--board-text);
	font: inherit;
	font-size: 14px;
	outline: none;
}

.board-search select {
	width: 112px;
	padding: 0 32px 0 12px;
}

.board-search input {
	min-width: 0;
	max-width: 420px;
	flex: 1 1 280px;
	padding: 0 12px;
}

.board-search select:focus,
.board-search input:focus {
	border-color: rgba(0, 113, 227, 0.46);
	box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.board-search button,
.board-search a {
	display: inline-flex;
	height: 40px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.board-search button {
	border: 1px solid var(--board-blue);
	background: var(--board-blue);
	color: #fff;
	cursor: pointer;
}

.board-search a {
	border: 1px solid var(--board-line);
	background: #fff;
	color: var(--board-text);
}

.board-search button:hover,
.board-search a:hover {
	transform: translateY(-1px);
}

.board-manager-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
	margin: -4px 0 18px;
}

.board-manager-bar-detail {
	margin: 0 0 28px;
	border-top: 1px solid rgba(29, 29, 31, 0.08);
	padding-top: 18px;
}

.board-manager-bar form {
	margin: 0;
}

.board-guest-action-form {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.board-guest-action-form input[type="password"] {
	width: 150px;
	min-height: 40px;
	border: 1px solid rgba(148, 163, 184, 0.42);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.96);
	padding: 0 12px;
	font: inherit;
	font-size: 13px;
	color: #0f172a;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.board-guest-action-form input[type="password"]:focus {
	border-color: rgba(30, 183, 188, 0.65);
	box-shadow: 0 0 0 3px rgba(30, 183, 188, 0.14);
}

.site-btn-danger {
	border-color: rgba(220, 38, 38, 0.2);
	background: rgba(254, 242, 242, 0.96);
	color: #b91c1c;
}

.site-btn-danger:hover {
	border-color: rgba(220, 38, 38, 0.34);
	background: #fee2e2;
	color: #991b1b;
}

.board-form-wrap {
	max-width: 980px;
}

.board-form {
	display: grid;
	gap: 18px;
}

.board-form > label,
.board-form-grid label {
	display: grid;
	gap: 7px;
	min-width: 0;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
}

.board-form :where(input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
select,
textarea) {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	border: 1px solid rgba(29, 29, 31, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--board-text);
	font: inherit;
	font-size: 15px;
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.board-form :where(input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
select) {
	height: 44px;
	padding: 0 13px;
}

.board-form :where(textarea) {
	resize: vertical;
	padding: 12px 13px;
	line-height: 1.65;
}

.board-form :where(input:not([type="radio"]):not([type="checkbox"]):not([type="file"]),
select,
textarea):focus {
	border-color: rgba(0, 113, 227, 0.46);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.board-form input[readonly]:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
	background: rgba(245, 245, 247, 0.8);
	color: var(--board-muted);
}

.board-form input[type="radio"],
.board-form input[type="checkbox"] {
	width: 16px;
	height: 16px;
	min-width: 16px;
	min-height: 16px;
	box-sizing: border-box;
	padding: 0;
	border: 1px solid rgba(29, 29, 31, 0.22);
	border-radius: 999px;
	background: #fff;
	accent-color: var(--board-blue);
}

.board-form input[type="radio"]:checked {
	border-color: var(--board-blue);
	background: radial-gradient(circle at center, var(--board-blue) 0 38%, #fff 42% 100%);
	box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.08);
}

.board-form input[type="checkbox"]:checked {
	border-color: var(--board-blue);
	background-color: var(--board-blue);
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.1 7.15L5.65 9.7L10.9 4.3' stroke='white' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 13px 13px;
	box-shadow: 0 0 0 1px rgba(0, 113, 227, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.board-field-label,
.board-form > label > span,
.board-form-grid label > span {
	display: block;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.board-form-help {
	display: block;
	margin-top: 8px;
	color: var(--board-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
}

.board-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.board-form-grid-three {
	grid-template-columns: 130px minmax(0, 1fr) 130px;
}

.board-form-grid-single {
	grid-template-columns: 1fr;
}

.board-choice-field {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.board-choice-field > span {
	color: var(--board-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.board-choice-group {
	display: inline-grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	width: min(100%, 260px);
	min-height: 44px;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 12px;
	background: rgba(245, 247, 250, 0.86);
	padding: 3px;
}

.board-choice {
	position: relative;
	display: inline-flex;
	min-height: 36px;
	border-radius: 9px;
	color: var(--board-muted);
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.board-form-grid .board-choice {
	display: inline-flex;
	width: 100%;
	min-width: 0;
	align-items: stretch;
	justify-content: stretch;
	gap: 0;
}

.board-choice input[type="radio"] {
	position: absolute;
	width: 1px;
	height: 1px;
	min-width: 1px;
	min-height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	opacity: 0;
}

.board-choice > span {
	display: inline-flex;
	width: 100%;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.board-form-grid .board-choice > span {
	display: inline-flex;
	width: 100%;
	height: 100%;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: inherit;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.board-choice input:checked + span {
	background: #fff;
	color: var(--board-blue);
	box-shadow: 0 5px 14px rgba(0, 113, 227, 0.12), inset 0 0 0 1px rgba(0, 113, 227, 0.1);
}

.board-choice input:focus-visible + span {
	outline: 2px solid rgba(0, 113, 227, 0.32);
	outline-offset: 2px;
}

.board-product-form,
.board-form-attachments {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(0, 113, 227, 0.18);
	border-radius: 16px;
	background: rgba(240, 249, 255, 0.72);
}

.board-product-form-head,
.board-form-attachments-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.board-product-form-head h2,
.board-form-attachments-head h2 {
	margin: 0;
	color: var(--board-text);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.4;
}

.board-product-form-head p,
.board-form-attachments-head p {
	margin: 4px 0 0;
	color: var(--board-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.55;
}

.board-form-attachments-head > span {
	flex: 0 0 auto;
	color: var(--board-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
	text-align: right;
}

.board-product-badge-field {
	display: grid;
	gap: 8px;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.board-product-badge-field legend {
	padding: 0;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

.board-product-badge-options {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.board-product-badge-options label {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 12px;
	border: 1px solid rgba(29, 29, 31, 0.12);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--board-text);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.board-product-badge-options label:has(input:checked) {
	border-color: rgba(0, 113, 227, 0.32);
	background: #fff;
	color: var(--board-blue);
	box-shadow: 0 5px 14px rgba(0, 113, 227, 0.1);
}

.board-form-attachment-list,
.board-form-attachments-selected {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.board-form-attachment-list li,
.board-form-attachments-selected li {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 12px;
	border: 1px solid rgba(29, 29, 31, 0.12);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.86);
}

.board-form-attachment-file {
	display: grid;
	min-width: 0;
	gap: 3px;
}

.board-form-attachment-file a {
	overflow: hidden;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-form-attachment-file a:hover {
	color: var(--board-blue);
	text-decoration: underline;
}

.board-form-attachment-file small,
.board-form-attachments-selected small {
	color: var(--board-muted);
	font-size: 12px;
	font-weight: 600;
}

.board-form-attachment-delete {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 6px;
	color: #be123c;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.board-form-attachment-upload {
	display: grid;
	gap: 7px;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
}

.board-form-attachment-upload input[type="file"] {
	width: 100%;
	min-width: 0;
	box-sizing: border-box;
	padding: 9px 11px;
	border: 1px solid rgba(29, 29, 31, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.88);
	color: var(--board-text);
	font: inherit;
	font-size: 14px;
}

.board-form-attachments-disabled {
	margin: 0;
	padding: 10px 12px;
	border: 1px solid rgba(180, 83, 9, 0.22);
	border-radius: 11px;
	background: rgba(255, 251, 235, 0.86);
	color: #92400e;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.55;
}

.board-publish-workflow {
	display: grid;
	gap: 14px;
	min-width: 0;
	margin: 0;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 14px;
	padding: 16px;
	background: rgba(245, 247, 250, 0.62);
}

.board-publish-workflow > legend {
	padding: 0 5px;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 800;
}

.board-publish-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
}

.board-publish-option {
	display: flex;
	min-width: 0;
	align-items: flex-start;
	gap: 10px;
	border: 1px solid rgba(29, 29, 31, 0.12);
	border-radius: 12px;
	padding: 12px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.board-publish-option > input[type="radio"] {
	margin-top: 2px;
}

.board-publish-option > span {
	display: grid;
	min-width: 0;
	gap: 3px;
	border-radius: 7px;
}

.board-publish-option strong {
	color: var(--board-text);
	font-size: 14px;
	line-height: 1.35;
}

.board-publish-option small {
	color: var(--board-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

.board-publish-option:has(input:checked) {
	border-color: rgba(0, 113, 227, 0.48);
	background: rgba(239, 247, 255, 0.92);
	box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.08);
}

.board-publish-option:has(input:focus-visible) {
	outline: 2px solid rgba(0, 113, 227, 0.32);
	outline-offset: 2px;
}

.board-publish-option.is-disabled {
	opacity: 0.58;
	cursor: not-allowed;
}

.board-publish-schedule {
	display: grid;
	max-width: 440px;
	gap: 7px;
}

.board-publish-schedule[hidden] {
	display: none;
}

.board-publish-schedule > label {
	display: grid;
	gap: 7px;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
}

.board-publish-schedule > small {
	color: var(--board-muted);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

.board-created-at-control {
	min-width: 0;
	padding: 14px;
	border: 1px solid #dbe3ec;
	border-radius: 8px;
	background: #f8fafc;
}

.board-created-at-toggle {
	display: flex !important;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: #334155;
}

.board-created-at-toggle input {
	flex: 0 0 auto;
}

.board-created-at-field {
	margin-top: 12px;
}

.board-created-at-control > small {
	display: block;
	margin-top: 8px;
	color: #64748b;
	line-height: 1.55;
}

.board-thumbnail-field {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 14px;
	padding: 16px;
	background: rgba(245, 247, 250, 0.62);
}

.board-thumbnail-preview {
	display: flex;
	width: 100%;
	min-width: 0;
	min-height: 156px;
	height: 156px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
	border: 1px dashed rgba(0, 113, 227, 0.26);
	border-radius: 12px;
	padding: 0;
	appearance: none;
	background: rgba(255, 255, 255, 0.82);
	color: var(--board-muted);
	font: inherit;
	text-align: center;
	cursor: zoom-in;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.board-thumbnail-preview:hover,
.board-thumbnail-preview:focus-visible {
	border-color: rgba(0, 113, 227, 0.42);
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 113, 227, 0.08);
	outline: 0;
	transform: translateY(-1px);
}

.board-thumbnail-preview img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
}

.board-thumbnail-preview.admin-image-preview-clickable:not(.hidden) {
	display: flex;
	min-width: 0;
	min-height: 156px;
	height: 156px;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.board-thumbnail-preview span {
	padding: 16px;
	color: #8b96a5;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.board-thumbnail-control {
	min-width: 0;
}

.board-thumbnail-input-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	margin-top: 7px;
}

.board-thumbnail-upload-btn {
	min-height: 44px;
	white-space: nowrap;
}

.board-thumbnail-upload-btn[disabled] {
	opacity: 0.48;
	cursor: not-allowed;
	transform: none;
}

.board-thumbnail-clear {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 10px;
	color: var(--board-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer;
}

.board-thumbnail-clear input[type="checkbox"] {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	min-width: 16px;
	min-height: 16px;
	margin: 0;
	accent-color: var(--board-blue);
}

.board-thumbnail-error {
	margin: 10px 0 0;
	border: 1px solid rgba(220, 38, 38, 0.2);
	border-radius: 12px;
	padding: 10px 12px;
	background: rgba(254, 242, 242, 0.92);
	color: #9f1239;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.board-thumbnail-meta {
	display: grid;
	gap: 7px;
	margin: 12px 0 0;
}

.board-thumbnail-meta:empty {
	display: none;
}

.board-thumbnail-meta > div {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 8px;
	border-radius: 10px;
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.76);
	font-size: 13px;
	line-height: 1.45;
}

.board-thumbnail-meta dt {
	margin: 0;
	color: var(--board-muted);
}

.board-thumbnail-meta dd {
	min-width: 0;
	margin: 0;
	color: var(--board-text);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.board-form-editor {
	display: grid;
	gap: 7px;
	min-width: 0;
}

.board-form-editor .interbasic-editor-lite {
	max-width: 100%;
}

.board-page .admin-image-preview-clickable:not(.hidden) {
	cursor: zoom-in;
	transition: filter 0.18s ease, transform 0.18s ease;
}

.board-page .admin-image-preview-clickable:not(.hidden):hover {
	filter: saturate(1.04);
	transform: scale(1.01);
}

.board-page .admin-image-preview-layer {
	position: fixed;
	inset: 0;
	z-index: 9200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(245, 245, 247, 0.74);
	-webkit-backdrop-filter: saturate(180%) blur(22px);
	backdrop-filter: saturate(180%) blur(22px);
	opacity: 0;
	transition: opacity 0.18s ease;
}

.board-page .admin-image-preview-layer.is-open {
	opacity: 1;
}

.board-page .admin-image-preview-panel {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	width: min(1180px, calc(100vw - 32px));
	height: min(820px, calc(100vh - 40px));
	max-height: calc(100vh - 40px);
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255, 255, 255, 0.86) inset;
	color: var(--board-text);
	outline: 0;
	-webkit-backdrop-filter: saturate(180%) blur(24px);
	backdrop-filter: saturate(180%) blur(24px);
}

.board-page .admin-image-preview-header {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid rgba(29, 29, 31, 0.1);
	background: rgba(255, 255, 255, 0.72);
}

.board-page .admin-image-preview-title {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.board-page .admin-image-preview-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: rgba(29, 29, 31, 0.05);
	color: var(--board-muted);
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.board-page .admin-image-preview-close:hover,
.board-page .admin-image-preview-close:focus-visible {
	background: rgba(29, 29, 31, 0.09);
	color: var(--board-text);
	outline: 0;
}

.board-page .admin-image-preview-body {
	display: flex;
	flex: 1 1 auto;
	align-items: flex-start;
	justify-content: center;
	min-height: 0;
	padding: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(245, 245, 247, 0.78));
	overflow: auto;
	overscroll-behavior: contain;
}

.board-page .admin-image-preview-figure {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	min-height: min-content;
	margin: 0;
}

.board-page .admin-image-preview-figure img {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.board-privacy-consent {
	display: grid;
	gap: 12px;
	border: 1px solid rgba(29, 29, 31, 0.12);
	border-radius: 14px;
	padding: 16px;
	background: rgba(245, 247, 250, 0.76);
}

.board-privacy-consent-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.board-privacy-consent-head strong {
	color: var(--board-text);
	font-size: 15px;
	font-weight: 800;
}

.board-privacy-consent-head > span {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	border-radius: 999px;
	padding: 0 9px;
	background: rgba(0, 113, 227, 0.1);
	color: var(--board-blue);
	font-size: 11px;
	font-weight: 800;
}

.board-privacy-consent-details {
	display: grid;
	gap: 7px;
	margin: 0;
}

.board-privacy-consent-details > div {
	display: grid;
	grid-template-columns: minmax(112px, 0.28fr) minmax(0, 1fr);
	gap: 12px;
}

.board-privacy-consent-details dt,
.board-privacy-consent-details dd,
.board-privacy-consent > p {
	margin: 0;
	font-size: 13px;
	line-height: 1.65;
}

.board-privacy-consent-details dt {
	color: var(--board-muted);
	font-weight: 750;
}

.board-privacy-consent-details dd {
	min-width: 0;
	color: var(--board-text);
}

.board-privacy-consent > p {
	color: var(--board-muted);
}

.board-privacy-consent-check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	border-top: 1px solid rgba(29, 29, 31, 0.09);
	padding-top: 12px;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.5;
	cursor: pointer;
}

.board-form .board-privacy-consent-check input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 2px;
}

.board-form-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	padding-top: 4px;
}

.board-form-error,
.board-form-message {
	border: 1px solid rgba(220, 38, 38, 0.18);
	border-radius: 14px;
	background: rgba(254, 242, 242, 0.78);
	color: #9f1239;
}

.board-form-error {
	margin: 0 0 18px;
	padding: 13px 15px;
	font-size: 14px;
	font-weight: 700;
}

.board-form-message {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 20px;
}

.board-form-message p {
	margin: 0;
	color: inherit;
}

.board-category-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: -4px 0 16px;
	padding-bottom: 2px;
}

.board-category-filter a {
	display: inline-flex;
	min-height: 36px;
	max-width: 100%;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(29, 29, 31, 0.12);
	border-radius: 999px;
	padding: 0 14px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--board-muted);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.board-category-filter a:hover,
.board-category-filter a:focus-visible {
	border-color: rgba(0, 113, 227, 0.24);
	background: rgba(0, 113, 227, 0.08);
	color: var(--board-blue);
	transform: translateY(-1px);
}

.board-category-filter a.is-active {
	border-color: rgba(0, 113, 227, 0.34);
	background: rgba(0, 113, 227, 0.1);
	color: var(--board-blue);
	font-weight: 850;
}

.board-embed-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: -4px 0 16px;
}

.board-embed-toolbar .board-category-filter {
	min-width: 0;
	margin: 0;
}

.board-embed-more {
	display: inline-flex;
	flex: 0 0 auto;
	margin-left: auto;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 0 2px;
	color: var(--board-blue);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.18s ease, transform 0.18s ease;
}

.board-embed-more:hover,
.board-embed-more:focus-visible {
	color: #005bb5;
	transform: translateX(2px);
}

.board-embed-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.board-embed-head h3 {
	font-size: clamp(20px, 2.6vw, 28px);
}

.board-embed-head a,
.board-back {
	color: var(--board-blue);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.board-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
}

.board-back-icon {
	display: inline-flex;
	width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(0, 113, 227, 0.1);
	font-size: 14px;
	line-height: 1;
}

.board-embed .board-detail-partial .board-back {
	margin-left: auto;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(0, 113, 227, 0.08);
	transition: background-color 0.18s ease, transform 0.18s ease;
}

.board-embed .board-detail-partial .board-back:hover {
	background: rgba(0, 113, 227, 0.14);
	transform: translateY(-1px);
}

.board-list,
.board-list-compact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.board-list li,
.board-list-compact li {
	border-top: 1px solid var(--board-line);
}

.board-list li:first-child,
.board-list-compact li:first-child {
	border-top: 0;
}

.board-list a,
.board-list-compact a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0;
	color: var(--board-text);
	text-decoration: none;
}

.board-list strong,
.board-list-compact strong {
	display: block;
	font-size: 16px;
	line-height: 1.45;
}

.board-list em {
	display: block;
	margin-top: 4px;
	color: var(--board-muted);
	font-size: 13px;
	font-style: normal;
	line-height: 1.5;
}

.board-list time,
.board-list-compact time,
.board-gallery-card small,
.board-meta {
	color: var(--board-muted);
	font-size: 13px;
	white-space: nowrap;
}

.board-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 16px;
}

.board-gallery-card {
	display: block;
	overflow: hidden;
	border: 1px solid var(--board-line);
	border-radius: 14px;
	background: #fff;
	color: var(--board-text);
	text-decoration: none;
}

.board-gallery-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #eef0f3;
}

.board-gallery-card span,
.board-gallery-card small {
	display: block;
	padding: 12px 14px 0;
	font-weight: 700;
	line-height: 1.45;
}

.board-gallery-card small {
	padding-top: 4px;
	padding-bottom: 14px;
	font-weight: 500;
}

.board-page-main > .board-skin-gallery {
	width: min(var(--board-content-max-width, 1760px), calc(100% - clamp(24px, 4vw, 64px)));
	border-color: rgba(29, 29, 31, 0.08);
	border-radius: 16px;
	padding: clamp(18px, 2.6vw, 34px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.board-page-main > .board-skin-list,
.board-page-main > .board-detail[data-board-page="notice"] {
	width: min(var(--board-content-max-width, 1760px), calc(100% - clamp(24px, 4vw, 64px)));
}

.board-page-main > .board-skin-gallery .board-title {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px 22px;
	align-items: end;
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(29, 29, 31, 0.08);
	padding-bottom: 20px;
}

.board-page-main > .board-skin-gallery .board-title p {
	grid-column: 1 / -1;
	max-width: 720px;
	margin: 0;
	color: #667085;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.65;
}

.board-page-main > .board-skin-gallery .board-title h1 {
	color: #111827;
	font-size: clamp(30px, 3.4vw, 48px);
	font-weight: 850;
	line-height: 1.08;
}

.board-page-main > .board-skin-gallery .board-search {
	margin-bottom: 16px;
	border-color: rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 28px rgba(15, 23, 42, 0.04);
}

.board-page-main > .board-skin-gallery .board-tools .board-search {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.board-page-main > .board-skin-gallery .board-category-filter {
	margin-bottom: 18px;
}

.board-page-main > .board-skin-gallery .board-tools .board-category-filter {
	margin-bottom: 0;
}

.board-page-main > .board-skin-gallery .board-category-filter a {
	border-color: rgba(15, 23, 42, 0.1);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.board-page-main > .board-skin-gallery .board-category-filter a.is-active {
	border-color: rgba(0, 113, 227, 0.32);
	background: rgba(0, 113, 227, 0.1);
	box-shadow: 0 10px 24px rgba(0, 113, 227, 0.08);
}

.board-page-main > .board-skin-gallery .board-search select,
.board-page-main > .board-skin-gallery .board-search input {
	border-color: rgba(15, 23, 42, 0.12);
	background: #fff;
}

.board-page-main > .board-skin-gallery .board-count {
	margin: 0 0 18px;
	color: #7b8491;
	font-size: 13px;
	font-weight: 600;
}

.board-page-main > .board-skin-gallery .board-count strong {
	color: var(--board-blue);
	font-size: 15px;
	font-weight: 850;
}

.board-page-main > .board-skin-gallery .board-gallery-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
	gap: clamp(12px, 1.4vw, 20px);
}

.board-page-main > .board-skin-gallery .board-gallery-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	flex-direction: column;
	border-color: rgba(15, 23, 42, 0.09);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.board-page-main > .board-skin-gallery .board-gallery-card:hover,
.board-page-main > .board-skin-gallery .board-gallery-card:focus-visible {
	border-color: rgba(0, 113, 227, 0.28);
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
	transform: translateY(-3px);
}

.board-gallery-media {
	position: relative;
	display: flex;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 16 / 11;
	align-items: center;
	justify-content: center;
	background: #eef2f7;
}

.board-gallery-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease, filter 0.28s ease;
}

.board-page-main > .board-skin-gallery .board-gallery-card:hover .board-gallery-media img,
.board-page-main > .board-skin-gallery .board-gallery-card:focus-visible .board-gallery-media img {
	filter: saturate(1.06) contrast(1.03);
	transform: scale(1.035);
}

.board-gallery-card .board-gallery-placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	background: linear-gradient(135deg, #eef2f7 0%, #f8fafc 55%, #edf7ff 100%);
	color: #8b96a5;
	font-size: 13px;
	font-weight: 800;
}

.board-gallery-body {
	display: grid;
	min-width: 0;
	gap: 8px;
	padding: 13px 14px 14px;
}

.board-gallery-card .board-gallery-title {
	display: -webkit-box;
	overflow: hidden;
	min-height: 2.9em;
	padding: 0;
	color: #111827;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-gallery-card .board-gallery-meta {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 0;
	color: #7b8491;
	font-size: 12px;
	font-weight: 650;
	line-height: 1.35;
}

.board-gallery-card .board-gallery-meta em {
	overflow: hidden;
	max-width: 58%;
	border-radius: 999px;
	padding: 4px 8px;
	background: rgba(0, 113, 227, 0.08);
	color: #1267c8;
	font-style: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-gallery-card .board-gallery-meta time {
	overflow: hidden;
	min-width: 0;
	text-align: right;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-page-main > .board-skin-gallery .board-pagination {
	margin-top: 30px;
}

.board-embed .board-gallery-media {
	border-radius: 14px;
}

.board-page-main > .board-skin-before_after {
	width: min(var(--board-content-max-width, 1320px), calc(100% - 32px));
}

.board-skin-before_after .board-title {
	border-bottom: 1px solid rgba(29, 29, 31, 0.08);
	padding-bottom: 18px;
}

.board-before-after-grid {
	display: grid;
	grid-template-columns: repeat(var(--board-before-after-columns, 2), minmax(0, 1fr));
	gap: 18px;
}

.board-before-after-card {
	display: grid;
	overflow: hidden;
	min-width: 0;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 8px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.board-before-after-card:hover {
	border-color: rgba(0, 113, 227, 0.22);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
	transform: translateY(-2px);
}

.board-before-after-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.board-before-after-card-slider .board-before-after-compare {
	margin: 0;
}

.board-before-after-card-slider .board-before-after-compare-stage {
	aspect-ratio: 16 / 10;
	border: 0;
	border-radius: 0;
}

.board-before-after-preview {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	aspect-ratio: 16 / 10;
	background: rgba(29, 29, 31, 0.08);
}

.board-before-after-preview-panel {
	position: relative;
	display: grid;
	overflow: hidden;
	min-width: 0;
	place-items: center;
	background: #f4f7fb;
}

.board-before-after-preview-panel img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.board-before-after-placeholder {
	color: #8a94a3;
	font-size: 13px;
	font-weight: 800;
}

.board-before-after-label,
.board-before-after-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	padding: 5px 9px;
	background: rgba(17, 24, 39, 0.64);
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
}

.board-before-after-preview-after .board-before-after-label,
.board-before-after-badge-after {
	right: 10px;
	left: auto;
}

.board-before-after-body {
	display: grid;
	gap: 8px;
	padding: 14px;
}

.board-before-after-category {
	justify-self: start;
	border-radius: 999px;
	padding: 4px 9px;
	background: rgba(0, 113, 227, 0.08);
	color: #1267c8;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.board-before-after-title {
	display: -webkit-box;
	overflow: hidden;
	min-height: 2.9em;
	color: #111827;
	font-size: 16px;
	font-weight: 850;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-before-after-summary {
	display: -webkit-box;
	overflow: hidden;
	color: #667085;
	font-size: 14px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-before-after-date {
	color: #8a94a3;
	font-size: 12px;
	font-weight: 700;
}

.board-page-main > .board-detail-before-after {
	width: min(var(--board-content-max-width, 1120px), calc(100% - 32px));
}

.board-before-after-compare {
	margin: 0 0 28px;
}

.board-before-after-compare-stage {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 8px;
	background: #101828;
	cursor: ew-resize;
	touch-action: none;
}

.board-before-after-img,
.board-before-after-before-layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.board-before-after-img {
	object-fit: cover;
}

.board-before-after-before-layer {
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--board-before-after-position, 50%)) 0 0);
}

.board-before-after-range {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.board-before-after-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--board-before-after-position, 50%);
	z-index: 3;
	width: 2px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.18);
	transform: translateX(-1px);
	pointer-events: none;
}

.board-before-after-handle span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.24);
	transform: translate(-50%, -50%);
}

.board-before-after-handle span::before,
.board-before-after-handle span::after {
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #1d2939;
	border-left: 2px solid #1d2939;
	content: "";
}

.board-before-after-handle span::before {
	left: 13px;
	transform: translateY(-50%) rotate(-45deg);
}

.board-before-after-handle span::after {
	right: 13px;
	transform: translateY(-50%) rotate(135deg);
}

.board-before-after-range:focus-visible + .board-before-after-handle span {
	outline: 3px solid rgba(0, 113, 227, 0.32);
	outline-offset: 3px;
}

.board-before-after-badge {
	z-index: 2;
}

.board-before-after-compare figcaption {
	margin: 10px 0 0;
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
	text-align: center;
}

.board-detail-before-after .board-before-after-preview {
	overflow: hidden;
	margin: 0 0 28px;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 8px;
}

.board-before-after-form {
	display: grid;
	gap: 14px;
	border: 1px solid rgba(0, 113, 227, 0.14);
	border-radius: 8px;
	padding: 16px;
	background: #f7fbff;
}

.board-before-after-form-head {
	display: grid;
	gap: 4px;
}

.board-before-after-form-head span {
	color: #111827;
	font-size: 15px;
	font-weight: 850;
}

.board-before-after-form-head small {
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
}

.board-before-after-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.board-before-after-form-card {
	display: grid;
	gap: 12px;
	min-width: 0;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 8px;
	padding: 12px;
	background: #fff;
}

.board-before-after-form-preview {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	height: 180px;
	border: 1px dashed rgba(29, 29, 31, 0.16);
	border-radius: 8px;
	padding: 0;
	background: #f4f7fb;
	color: #8a94a3;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
}

.board-before-after-form-preview.admin-image-preview-clickable:not(.hidden) {
	display: flex;
}

.board-before-after-form-preview img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
}

.board-before-after-form-controls {
	display: grid;
	gap: 10px;
}

.board-page-main > .board-skin-blog {
	width: min(var(--board-content-max-width, 1760px), calc(100% - clamp(24px, 4vw, 64px)));
	border-color: rgba(29, 29, 31, 0.08);
	border-radius: 16px;
	padding: clamp(20px, 3vw, 38px);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.board-page-main > .board-skin-blog .board-title {
	margin-bottom: 22px;
	border-bottom: 1px solid rgba(29, 29, 31, 0.08);
	padding-bottom: 20px;
}

.board-page-main > .board-skin-blog .board-title p {
	max-width: 760px;
	margin: 0 0 7px;
	color: #667085;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.65;
}

.board-page-main > .board-skin-blog .board-title h1 {
	color: #111827;
	font-size: clamp(30px, 3.2vw, 46px);
	font-weight: 850;
	line-height: 1.12;
}

.board-page-main > .board-skin-blog .board-search {
	margin-bottom: 16px;
	border-color: rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 28px rgba(15, 23, 42, 0.04);
}

.board-page-main > .board-skin-blog .board-tools .board-search {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.board-skin-blog .board-manager-bar .site-btn-primary {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-accent);
	color: #fff;
}

.board-skin-blog .board-manager-bar .site-btn-secondary,
.board-skin-blog .board-search a {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
}

.board-skin-blog .board-search select:focus,
.board-skin-blog .board-search input:focus {
	border-color: var(--board-blog-accent);
	box-shadow: 0 0 0 3px var(--board-blog-soft);
}

.board-skin-blog .board-search button {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-accent);
	color: #fff;
}

.board-skin-blog .board-search button:hover,
.board-skin-blog .board-search button:focus-visible,
.board-skin-blog .board-manager-bar .site-btn-primary:hover,
.board-skin-blog .board-manager-bar .site-btn-primary:focus-visible {
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
	filter: saturate(1.06);
}

.board-skin-blog .board-category-filter a:hover,
.board-skin-blog .board-category-filter a:focus-visible {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
}

.board-skin-blog .board-category-filter a.is-active {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-accent);
	color: #fff;
}

.board-skin-blog .board-pagination a:hover,
.board-skin-blog .board-pagination span {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
}

.board-page-main > .board-skin-blog .board-count {
	margin: 0 0 20px;
	color: #7b8491;
	font-size: 13px;
	font-weight: 650;
}

.board-page-main > .board-skin-blog .board-count strong {
	color: var(--board-blog-accent);
	font-size: 15px;
	font-weight: 850;
}

.board-skin-blog .board-blog-grid {
	display: grid;
	gap: clamp(16px, 2vw, 28px);
}

.board-skin-blog .board-blog-grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.board-skin-blog .board-blog-grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.board-skin-blog .board-blog-grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.board-skin-blog .board-blog-grid-cols-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.board-skin-blog .board-blog-grid-cols-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.board-skin-blog .board-blog-grid-cols-7 {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.board-skin-blog .board-blog-grid-cols-8 {
	grid-template-columns: repeat(8, minmax(0, 1fr));
}

.board-skin-blog .board-blog-mixed {
	margin-bottom: clamp(18px, 2.4vw, 32px);
}

.board-skin-blog .board-blog-card,
.board-skin-blog .board-blog-list-item {
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.09);
	background: rgba(255, 255, 255, 0.96);
	color: #101828;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.board-skin-blog .board-blog-card:hover,
.board-skin-blog .board-blog-card:focus-visible,
.board-skin-blog .board-blog-list-item:hover,
.board-skin-blog .board-blog-list-item:focus-visible {
	border-color: var(--board-blog-accent);
	box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
	transform: translateY(-3px);
}

.board-skin-blog .board-blog-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border-radius: 14px;
}

.board-skin-blog .board-blog-card-lead {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	align-items: stretch;
}

.board-skin-blog .board-blog-card-recommended {
	border-color: var(--board-blog-accent);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
}

.board-skin-blog .board-blog-card.board-blog-card-recommended {
	border-radius: 18px;
}

.board-skin-blog .board-blog-list {
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.board-skin-blog .board-blog-list-item {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	border-width: 0 0 1px;
	border-radius: 0;
	padding: 24px 0;
	box-shadow: none;
}

.board-skin-blog .board-blog-list-item:hover,
.board-skin-blog .board-blog-list-item:focus-visible {
	border-color: var(--board-blog-accent);
	box-shadow: none;
	transform: none;
}

.board-skin-blog .board-blog-media {
	position: relative;
	display: flex;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 4 / 3;
	align-items: center;
	justify-content: center;
	background: #eef2f7;
}

.board-skin-blog .board-blog-ratio-16-9 .board-blog-media {
	aspect-ratio: 16 / 9;
}

.board-skin-blog .board-blog-ratio-4-3 .board-blog-media {
	aspect-ratio: 4 / 3;
}

.board-skin-blog .board-blog-ratio-1-1 .board-blog-media {
	aspect-ratio: 1 / 1;
}

.board-skin-blog .board-blog-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease, filter 0.28s ease;
}

.board-skin-blog .board-blog-card:hover .board-blog-media img,
.board-skin-blog .board-blog-card:focus-visible .board-blog-media img,
.board-skin-blog .board-blog-list-item:hover .board-blog-media img,
.board-skin-blog .board-blog-list-item:focus-visible .board-blog-media img {
	filter: saturate(1.06) contrast(1.03);
	transform: scale(1.035);
}

.board-skin-blog .board-blog-placeholder {
	display: inline-flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #eef2f7 0%, #f8fafc 55%, #edf7ff 100%);
	color: #8b96a5;
	font-size: 13px;
	font-weight: 800;
}

.board-skin-blog .board-blog-body {
	display: grid;
	min-width: 0;
	gap: 10px;
	align-content: start;
	padding: 18px 18px 20px;
}

.board-skin-blog .board-blog-card-lead .board-blog-body {
	align-content: center;
	padding: clamp(22px, 3vw, 36px);
}

.board-skin-blog .board-blog-category {
	justify-self: start;
	max-width: 100%;
	overflow: hidden;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 6px 10px;
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-skin-blog .board-blog-title {
	display: -webkit-box;
	overflow: hidden;
	color: #111827;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.48;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-skin-blog .board-blog-card-lead .board-blog-title {
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.28;
}

.board-skin-blog .board-blog-summary {
	display: -webkit-box;
	overflow: hidden;
	color: #344054;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-skin-blog .board-blog-card-lead .board-blog-summary {
	-webkit-line-clamp: 3;
}

.board-skin-blog .board-blog-date {
	color: #8a97ad;
	font-size: 13px;
	font-weight: 650;
}

.board-skin-blog .board-blog-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px 10px;
	min-width: 0;
	color: #8a97ad;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.board-skin-blog .board-blog-meta > * {
	min-width: 0;
}

.board-skin-blog .board-blog-views,
.board-skin-blog .board-blog-reading {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

.board-skin-blog .board-blog-footer {
	display: flex;
	min-width: 0;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.board-skin-blog .board-blog-more {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 6px;
	border-radius: 999px;
	padding: 8px 12px;
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
}

.board-skin-blog .board-blog-card .board-blog-more {
	margin-top: 2px;
}

.board-skin-blog .board-blog-featured-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 6px 10px;
	background: var(--board-blog-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 850;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

.board-skin-blog .board-blog-featured-badge-inline {
	position: static;
	box-shadow: none;
}

.board-skin-blog.blog-badge-outline .board-blog-category,
.board-skin-blog.blog-badge-outline .board-blog-featured-badge {
	border-color: var(--board-blog-accent);
	background: #fff;
	color: var(--board-blog-accent);
	box-shadow: none;
}

.board-skin-blog.blog-badge-plain .board-blog-category,
.board-skin-blog.blog-badge-plain .board-blog-featured-badge {
	border-color: transparent;
	border-radius: 0;
	padding: 0;
	background: transparent;
	color: var(--board-blog-accent);
	box-shadow: none;
}

.board-skin-blog.blog-radius-soft .board-blog-card,
.board-skin-blog.blog-radius-soft .board-blog-related-card,
.board-skin-blog.blog-radius-soft .board-blog-detail-image,
.board-skin-blog.blog-radius-soft .board-blog-share,
.board-skin-blog.blog-radius-soft .board-blog-cta {
	border-radius: 8px;
}

.board-skin-blog.blog-radius-soft .board-blog-card.board-blog-card-recommended {
	border-radius: 10px;
}

.board-skin-blog.blog-radius-square .board-blog-card,
.board-skin-blog.blog-radius-square .board-blog-list-item,
.board-skin-blog.blog-radius-square .board-blog-media,
.board-skin-blog.blog-radius-square .board-blog-related-card,
.board-skin-blog.blog-radius-square .board-blog-related-media,
.board-skin-blog.blog-radius-square .board-blog-detail-image,
.board-skin-blog.blog-radius-square .board-blog-share,
.board-skin-blog.blog-radius-square .board-blog-cta,
.board-skin-blog.blog-radius-square .board-blog-category,
.board-skin-blog.blog-radius-square .board-blog-more {
	border-radius: 0;
}

.board-page-main > .board-detail-blog {
	width: min(var(--board-content-max-width, 1180px), calc(100% - clamp(24px, 4vw, 64px)));
	border-color: rgba(29, 29, 31, 0.08);
	border-radius: 16px;
	padding: clamp(22px, 3.6vw, 46px);
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.board-detail-blog .board-blog-detail-hero {
	display: grid;
	gap: 18px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	padding-bottom: clamp(22px, 3vw, 34px);
}

.board-detail-blog .board-blog-detail-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.board-detail-blog .board-blog-detail-nav .board-back {
	margin: 0;
	border-radius: 999px;
	padding: 8px 12px;
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
	font-weight: 800;
}

.board-detail-blog .board-blog-detail-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	color: #7b8491;
	font-size: 13px;
	font-weight: 750;
}

.board-detail-blog .board-blog-detail-meta span {
	border-radius: 999px;
	padding: 6px 10px;
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
}

.board-detail-blog .board-blog-detail-meta .board-blog-featured-badge-inline {
	background: var(--board-blog-accent);
	color: #fff;
}

.board-detail-blog .board-blog-detail-kicker {
	margin: 0;
	color: var(--board-blog-accent);
	font-size: 13px;
	font-weight: 850;
	line-height: 1.45;
}

.board-detail-blog .board-blog-detail-title {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0;
	color: #111827;
	font-size: clamp(34px, 4.2vw, 56px);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.board-detail-blog .board-blog-detail-summary {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0;
	color: #344054;
	font-size: clamp(17px, 1.65vw, 22px);
	font-weight: 500;
	line-height: 1.72;
}

.board-detail-blog .board-blog-detail-image {
	overflow: hidden;
	margin: 12px 0 0;
	border-radius: 14px;
	background: #eef2f7;
}

.board-detail-blog .board-blog-detail-image img {
	display: block;
	width: 100%;
	max-height: 680px;
	object-fit: cover;
}

.board-detail-blog .board-detail-body {
	width: min(100%, 960px);
	margin: clamp(26px, 3vw, 42px) auto 0;
	color: #1f2937;
	font-size: 18px;
	line-height: 1.95;
}

.board-detail-blog .board-detail-body img {
	max-width: 100%;
	height: auto;
}

.board-detail-blog .board-attachments,
.board-detail-blog .board-blog-share,
.board-detail-blog .board-blog-cta,
.board-detail-blog .board-sibling-nav,
.board-detail-blog > .board-actions {
	width: min(100%, 960px);
	margin-right: auto;
	margin-left: auto;
}

.board-skin-blog .board-blog-share {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 28px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.86);
}

.board-skin-blog .board-blog-share > strong {
	color: #111827;
	font-size: 14px;
	font-weight: 850;
}

.board-skin-blog .board-blog-share-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.board-skin-blog .board-blog-share-actions a,
.board-skin-blog .board-blog-share-actions button {
	appearance: none;
	display: inline-flex;
	min-height: 34px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 999px;
	padding: 0 12px;
	background: #fff;
	color: #334155;
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.board-skin-blog .board-blog-share-icon {
	display: inline-flex;
	min-width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	line-height: 1;
}

.board-skin-blog [data-board-blog-share="kakao"] {
	border-color: #f1d900;
	background: #fee500;
	color: #191919;
}

.board-skin-blog [data-board-blog-share="kakao"] .board-blog-share-icon {
	background: #191919;
	color: #fee500;
}

.board-skin-blog [data-board-blog-share="x"] {
	border-color: #111827;
	background: #111827;
	color: #fff;
}

.board-skin-blog [data-board-blog-share="x"] .board-blog-share-icon {
	background: #fff;
	color: #111827;
}

.board-skin-blog [data-board-blog-share="facebook"] {
	border-color: #1877f2;
	background: #1877f2;
	color: #fff;
}

.board-skin-blog [data-board-blog-share="facebook"] .board-blog-share-icon {
	background: #fff;
	color: #1877f2;
}

.board-skin-blog [data-board-blog-share="instagram"] {
	border-color: rgba(225, 48, 108, 0.28);
	background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 100%);
	color: #fff;
}

.board-skin-blog [data-board-blog-share="instagram"] .board-blog-share-icon {
	background: #fff;
	color: #dd2a7b;
}

.board-skin-blog [data-board-blog-share="native"],
.board-skin-blog [data-board-blog-share="copy"] {
	border-color: var(--board-blog-accent);
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
}

.board-skin-blog [data-board-blog-share="native"] .board-blog-share-icon,
.board-skin-blog [data-board-blog-share="copy"] .board-blog-share-icon {
	background: var(--board-blog-accent);
	color: #fff;
}

.board-skin-blog .board-blog-share-actions a:hover,
.board-skin-blog .board-blog-share-actions a:focus-visible,
.board-skin-blog .board-blog-share-actions button:hover,
.board-skin-blog .board-blog-share-actions button:focus-visible {
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
	filter: saturate(1.06);
	transform: translateY(-1px);
}

.board-skin-blog .board-blog-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	border: 1px solid var(--board-blog-accent);
	border-radius: 16px;
	padding: 20px;
	background: linear-gradient(135deg, var(--board-blog-soft) 0%, #fff 72%);
}

.board-skin-blog .board-blog-cta span,
.board-skin-blog .board-blog-cta strong {
	display: block;
}

.board-skin-blog .board-blog-cta span {
	margin-bottom: 4px;
	color: var(--board-blog-accent);
	font-size: 12px;
	font-weight: 850;
}

.board-skin-blog .board-blog-cta strong {
	color: #111827;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.35;
}

.board-skin-blog .board-blog-cta a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0 18px;
	background: var(--board-blog-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.board-skin-blog .board-blog-cta a:hover,
.board-skin-blog .board-blog-cta a:focus-visible {
	box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
	transform: translateY(-1px);
}

.board-detail-blog .board-blog-related {
	margin-top: clamp(34px, 4vw, 54px);
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	padding-top: clamp(24px, 3vw, 34px);
}

.board-detail-blog .board-blog-related-head {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 8px 18px;
	margin-bottom: 16px;
}

.board-detail-blog .board-blog-related-head p,
.board-detail-blog .board-blog-related-head h2 {
	margin: 0;
}

.board-detail-blog .board-blog-related-head p {
	color: var(--board-blog-accent);
	font-size: 13px;
	font-weight: 850;
}

.board-detail-blog .board-blog-related-head h2 {
	color: #111827;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.25;
}

.board-detail-blog .board-blog-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.board-detail-blog .board-blog-related-card {
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.09);
	border-radius: 14px;
	background: #fff;
	color: #101828;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.board-detail-blog .board-blog-related-card:hover,
.board-detail-blog .board-blog-related-card:focus-visible {
	border-color: rgba(0, 113, 227, 0.28);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.11);
	transform: translateY(-2px);
}

.board-detail-blog .board-blog-related-media {
	display: flex;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	align-items: center;
	justify-content: center;
	background: #eef2f7;
}

.board-detail-blog .board-blog-related-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.28s ease, filter 0.28s ease;
}

.board-detail-blog .board-blog-related-card:hover .board-blog-related-media img,
.board-detail-blog .board-blog-related-card:focus-visible .board-blog-related-media img {
	filter: saturate(1.06) contrast(1.03);
	transform: scale(1.035);
}

.board-detail-blog .board-blog-related-media span {
	color: #8b96a5;
	font-size: 12px;
	font-weight: 800;
}

.board-detail-blog .board-blog-related-body {
	display: grid;
	gap: 8px;
	padding: 14px;
}

.board-detail-blog .board-blog-related-category {
	justify-self: start;
	overflow: hidden;
	max-width: 100%;
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 5px 8px;
	background: var(--board-blog-soft);
	color: var(--board-blog-accent);
	font-size: 11px;
	font-weight: 850;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-detail-blog .board-blog-related-body strong {
	display: -webkit-box;
	overflow: hidden;
	color: #111827;
	font-size: 15px;
	font-weight: 850;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-detail-blog .board-blog-related-body small {
	display: -webkit-box;
	overflow: hidden;
	color: #667085;
	font-size: 13px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-detail-blog .board-blog-related-body time {
	color: #8a97ad;
	font-size: 12px;
	font-weight: 700;
}

.board-faq-list {
	display: grid;
	gap: 10px;
}

.board-faq-item {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	gap: 10px 12px;
	align-items: start;
	padding: 15px 0;
	border-top: 1px solid var(--board-line);
	color: var(--board-text);
	text-decoration: none;
}

.board-faq-item:first-child {
	border-top: 0;
}

.board-faq-item span {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(0, 113, 227, 0.1);
	color: var(--board-blue);
	font-size: 13px;
	font-weight: 800;
}

.board-faq-item strong {
	font-size: 16px;
	line-height: 1.5;
}

.board-faq-item small {
	grid-column: 2;
	color: var(--board-muted);
	font-size: 13px;
	line-height: 1.55;
}

.board-detail-head {
	border-bottom: 1px solid var(--board-line);
	padding-bottom: 22px;
}

.board-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	margin-top: 14px;
}

.board-detail-image {
	margin: 24px 0;
}

.board-detail-image img {
	display: block;
	width: 100%;
	max-height: 560px;
	border-radius: 14px;
	object-fit: cover;
}

.board-detail-body {
	color: #2b2b2f;
	font-size: 16px;
	line-height: 1.85;
}

.board-detail-body p {
	margin: 0 0 1em;
}

.board-detail .board-detail-body :where(h1):not([class]) {
	margin: 0.67em 0;
	font-size: 2em;
	font-weight: 700;
	line-height: 1.25;
}

.board-detail .board-detail-body :where(h2):not([class]) {
	margin: 0.83em 0;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.3;
}

.board-detail .board-detail-body :where(h3):not([class]) {
	margin: 1em 0;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1.35;
}

.board-detail .board-detail-body :where(h4):not([class]) {
	margin: 1.1em 0;
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1.4;
}

.board-detail .board-detail-body :where(h5):not([class]) {
	margin: 1.2em 0;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.45;
}

.board-detail .board-detail-body :where(h6):not([class]) {
	margin: 1.3em 0;
	font-size: 0.9em;
	font-weight: 700;
	line-height: 1.5;
}

.board-attachments {
	margin-top: 28px;
	padding: 18px;
	border: 1px solid var(--board-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.78);
}

.board-attachments h2 {
	margin: 0 0 12px;
	color: var(--board-text);
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0;
}

.board-attachments ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.board-attachments a {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	padding: 9px 12px;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 10px;
	background: #fff;
	color: var(--board-text);
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.board-attachments a:hover {
	border-color: rgba(0, 113, 227, 0.28);
	box-shadow: 0 8px 20px rgba(0, 113, 227, 0.08);
	transform: translateY(-1px);
}

.board-attachment-icon {
	display: inline-flex;
	min-width: 42px;
	height: 26px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(0, 113, 227, 0.1);
	color: var(--board-blue);
	font-size: 11px;
	font-weight: 800;
}

.board-attachment-name {
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-attachment-size {
	color: var(--board-muted);
	font-size: 12px;
	font-weight: 700;
}

.board-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.board-empty {
	margin: 0;
	padding: 28px 0;
	color: var(--board-muted);
	text-align: center;
}

.board-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}

.board-pagination a,
.board-pagination span {
	display: inline-flex;
	min-width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--board-line);
	border-radius: 999px;
	padding: 0 12px;
	background: rgba(255, 255, 255, 0.75);
	color: var(--board-text);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.board-pagination a:hover,
.board-pagination span {
	border-color: rgba(0, 113, 227, 0.28);
	background: rgba(0, 113, 227, 0.1);
	color: var(--board-blue);
}

.board-page-main > .board-skin-faq,
.board-page-main > .board-detail[data-board-page="faq"] {
	border-color: var(--board-soft-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 45px rgba(18, 56, 95, 0.07);
}

.board-page-main > .board-skin-faq {
	padding: 36px 38px 38px;
}

.board-page-main > .board-skin-faq,
.board-page-main > .board-detail[data-board-page="faq"],
.board-page-main > .board-faq-cta,
.board-page-main > .board-site-footer {
	width: min(var(--board-content-max-width, 1760px), calc(100% - clamp(24px, 4vw, 64px)));
}

.board-page-main > .board-skin-faq .board-title,
.board-page-main > .board-detail[data-board-page="faq"] .board-detail-head {
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(18, 56, 95, 0.1);
	padding-bottom: 22px;
}

.board-page-main > .board-skin-faq .board-title p,
.board-page-main > .board-detail[data-board-page="faq"] .board-detail-head p {
	margin-bottom: 9px;
	color: #5c6d7a;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.55;
}

.board-page-main > .board-skin-faq .board-title h1,
.board-page-main > .board-detail[data-board-page="faq"] .board-detail-head h1 {
	color: var(--board-navy);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.18;
}

.board-page-main > .board-skin-faq .board-search {
	gap: 10px;
	margin: 0 0 14px;
	border-color: rgba(18, 56, 95, 0.1);
	border-radius: 12px;
	padding: 10px;
	background: #f8fbff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.board-page-main > .board-skin-faq .board-tools .board-search {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.board-page-main > .board-skin-faq .board-search select,
.board-page-main > .board-skin-faq .board-search input {
	height: 42px;
	border-color: rgba(18, 56, 95, 0.14);
	border-radius: 10px;
	color: var(--board-navy);
	font-size: 14px;
}

.board-page-main > .board-skin-faq .board-search input::placeholder {
	color: #8a98a4;
}

.board-page-main > .board-skin-faq .board-count {
	margin: 0 0 18px;
	color: #687885;
	font-size: 13px;
	font-weight: 600;
}

.board-page-main > .board-skin-faq .board-count strong {
	color: var(--board-blue);
	font-size: 15px;
	font-weight: 900;
}

.board-page-main > .board-skin-faq .board-faq-list {
	gap: 10px;
}

.board-page-main > .board-skin-faq .board-faq-item {
	position: relative;
	grid-template-columns: 42px minmax(0, 1fr) 22px;
	gap: 6px 14px;
	align-items: center;
	border: 1px solid rgba(18, 56, 95, 0.1);
	border-radius: 12px;
	padding: 17px 18px;
	background: #fff;
	box-shadow: 0 8px 22px rgba(18, 56, 95, 0.035);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.board-page-main > .board-skin-faq .board-faq-item:hover {
	border-color: rgba(0, 113, 227, 0.24);
	box-shadow: 0 14px 28px rgba(18, 56, 95, 0.08);
	transform: translateY(-1px);
}

.board-page-main > .board-skin-faq .board-faq-item::after {
	content: "›";
	grid-column: 3;
	grid-row: 1 / span 2;
	color: #8aa1b4;
	font-size: 26px;
	font-weight: 300;
	line-height: 1;
	justify-self: end;
}

.board-page-main > .board-skin-faq .board-faq-item:first-child {
	border-top: 1px solid rgba(18, 56, 95, 0.1);
}

.board-page-main > .board-skin-faq .board-faq-item span {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--board-soft-blue);
	color: var(--board-blue);
	font-size: 14px;
	font-weight: 900;
}

.board-page-main > .board-skin-faq .board-faq-item strong {
	color: var(--board-navy);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.42;
}

.board-page-main > .board-skin-faq .board-faq-item small {
	grid-column: 2;
	color: #687885;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
}

.board-page-main > .board-skin-faq .board-pagination {
	margin-top: 24px;
}

.board-page-main > .board-detail[data-board-page="faq"] {
	padding: 38px;
}

.board-page-main > .board-detail[data-board-page="faq"] .board-back {
	margin-bottom: 14px;
	border-radius: 999px;
	padding: 7px 12px;
	background: rgba(0, 113, 227, 0.08);
	font-weight: 800;
}

.board-page-main > .board-detail[data-board-page="faq"] .board-meta {
	color: #6a7a86;
	font-weight: 700;
}

.board-page-main > .board-detail[data-board-page="faq"] .board-detail-body {
	color: #2d3741;
	font-size: 17px;
	line-height: 1.9;
}

.board-sibling-nav {
	display: grid;
	gap: 10px;
	margin-top: 34px;
	border-top: 1px solid var(--board-line);
	padding-top: 22px;
}

.board-sibling-link {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	min-height: 54px;
	box-sizing: border-box;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 12px;
	padding: 13px 16px;
	background: #fff;
	color: var(--board-text);
	text-decoration: none;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.board-sibling-link:hover,
.board-sibling-link:focus-visible {
	border-color: rgba(0, 113, 227, 0.28);
	background: #f8fbff;
	box-shadow: 0 12px 26px rgba(18, 56, 95, 0.07);
	transform: translateY(-1px);
}

.board-sibling-link > span {
	color: var(--board-blue);
	font-size: 13px;
	font-weight: 850;
	white-space: nowrap;
}

.board-sibling-link > strong {
	overflow: hidden;
	min-width: 0;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.board-sibling-link > time {
	color: var(--board-muted);
	font-size: 13px;
	font-weight: 650;
	white-space: nowrap;
}

.board-sibling-empty {
	background: #f8f9fb;
	color: var(--board-muted);
}

.board-sibling-empty:hover,
.board-sibling-empty:focus-visible {
	border-color: rgba(29, 29, 31, 0.1);
	background: #f8f9fb;
	box-shadow: none;
	transform: none;
}

.board-sibling-empty > span,
.board-sibling-empty > strong {
	color: var(--board-muted);
}

.board-page-main > .board-detail[data-board-page="faq"] .board-actions {
	margin-top: 34px;
	border-top: 1px solid rgba(18, 56, 95, 0.08);
	padding-top: 22px;
}

.board-ajax-loading {
	opacity: 0.58;
	pointer-events: none;
}

@media (max-width: 1100px) {
	.board-skin-blog .board-blog-grid-cols-4,
	.board-skin-blog .board-blog-grid-cols-5,
	.board-skin-blog .board-blog-grid-cols-6,
	.board-skin-blog .board-blog-grid-cols-7,
	.board-skin-blog .board-blog-grid-cols-8 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.board-skin-blog .board-blog-card-lead {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 900px) {
	.board-skin-blog .board-blog-grid-cols-3,
	.board-skin-blog .board-blog-grid-cols-4,
	.board-skin-blog .board-blog-grid-cols-5,
	.board-skin-blog .board-blog-grid-cols-6,
	.board-skin-blog .board-blog-grid-cols-7,
	.board-skin-blog .board-blog-grid-cols-8 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.board-skin-blog .board-blog-list-item {
		grid-template-columns: 150px minmax(0, 1fr);
		gap: 18px;
	}

	.board-detail-blog .board-blog-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.board-embed-toolbar {
		flex-wrap: wrap;
	}

	.board-embed-toolbar .board-category-filter {
		flex: 1 1 100%;
	}

	.board-embed-toolbar .board-embed-more {
		margin-left: auto;
	}

	.board-site-header {
		padding: 14px 16px;
	}

	.board-page-main {
		width: 100%;
		padding-top: 24px;
	}

	.board-page-oneframe.board-page-has-top-editor-html .board-page-main {
		padding-top: 0;
	}

	.board-page-main > .board-wrap,
	.board-page-main > .board-faq-cta,
	.board-page-main > .board-site-footer {
		width: min(var(--board-content-max-width, 1240px), calc(100% - 22px));
	}

	.board-page-main > .board-skin-faq,
	.board-page-main > .board-detail[data-board-page="faq"],
	.board-page-main > .board-faq-cta,
	.board-page-main > .board-site-footer {
		width: min(var(--board-content-max-width, 1320px), calc(100% - 22px));
	}

	.board-faq-landing,
	.board-faq-cta {
		display: block;
	}

	.board-faq-landing {
		margin-top: -24px;
		margin-bottom: 20px;
		padding: 36px 16px 34px;
	}

	.board-faq-landing h2 {
		font-size: 30px;
		line-height: 1.2;
	}

	.board-faq-landing-text > p:last-child {
		margin-top: 14px;
		font-size: 15px;
		line-height: 1.68;
	}

	.board-faq-landing .board-faq-actions {
		width: 100%;
		margin-top: 22px;
		padding: 12px;
	}

	.board-faq-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		min-width: 0;
		margin-top: 16px;
		justify-content: stretch;
	}

	.board-faq-actions .site-btn {
		width: 100%;
		min-width: 0;
		box-sizing: border-box;
		padding-right: 10px;
		padding-left: 10px;
	}

	.board-faq-cta {
		padding: 22px 18px;
	}

	.board-faq-cta strong {
		font-size: 18px;
	}

	.board-page-main > .board-skin-faq,
	.board-page-main > .board-detail[data-board-page="faq"] {
		border-radius: 12px;
	}

	.board-page-main > .board-skin-faq,
	.board-page-main > .board-detail[data-board-page="faq"] {
		padding: 22px 18px;
	}

	.board-page-main > .board-skin-faq .board-title,
	.board-page-main > .board-detail[data-board-page="faq"] .board-detail-head {
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.board-page-main > .board-skin-faq .board-title h1,
	.board-page-main > .board-detail[data-board-page="faq"] .board-detail-head h1 {
		font-size: 28px;
	}

	.board-page-main > .board-skin-faq .board-faq-item {
		grid-template-columns: 38px minmax(0, 1fr) 16px;
		gap: 5px 12px;
		padding: 15px 14px;
	}

	.board-page-main > .board-skin-faq .board-faq-item span {
		width: 32px;
		height: 32px;
		border-radius: 9px;
	}

	.board-page-main > .board-skin-faq .board-faq-item strong {
		font-size: 16px;
	}

	.board-page-main > .board-skin-faq .board-faq-item small {
		font-size: 13px;
	}

	.board-page-main > .board-skin-blog {
		width: min(var(--board-content-max-width, 1320px), calc(100% - 22px));
		border-radius: 12px;
		padding: 20px 16px;
	}

	.board-page-main > .board-skin-before_after,
	.board-page-main > .board-detail-before-after {
		width: min(var(--board-content-max-width, 1320px), calc(100% - 22px));
	}

	.board-before-after-grid,
	.board-before-after-form-grid {
		grid-template-columns: 1fr;
	}

	.board-before-after-preview {
		aspect-ratio: 5 / 4;
	}

	.board-before-after-compare-stage {
		aspect-ratio: 4 / 5;
	}

	.board-before-after-form-preview {
		height: 156px;
	}

	.board-page-main > .board-skin-blog .board-title {
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.board-page-main > .board-skin-blog .board-title h1 {
		font-size: 28px;
	}

	.board-skin-blog .board-blog-grid,
	.board-skin-blog .board-blog-grid-cols-2,
	.board-skin-blog .board-blog-grid-cols-3,
	.board-skin-blog .board-blog-grid-cols-4,
	.board-skin-blog .board-blog-grid-cols-5,
	.board-skin-blog .board-blog-grid-cols-6,
	.board-skin-blog .board-blog-grid-cols-7,
	.board-skin-blog .board-blog-grid-cols-8 {
		grid-template-columns: 1fr;
	}

	.board-skin-blog .board-blog-card-lead {
		grid-template-columns: 1fr;
	}

	.board-skin-blog .board-blog-list-item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 18px 0;
	}

	.board-skin-blog .board-blog-body,
	.board-skin-blog .board-blog-card-lead .board-blog-body {
		padding: 16px;
	}

	.board-skin-blog .board-blog-card-lead .board-blog-title {
		font-size: 22px;
	}

	.board-skin-blog .board-blog-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.board-page-main > .board-detail-blog {
		width: min(var(--board-content-max-width, 1320px), calc(100% - 22px));
		border-radius: 12px;
		padding: 20px 16px;
	}

	.board-detail-blog .board-blog-detail-hero {
		gap: 14px;
		padding-bottom: 22px;
	}

	.board-detail-blog .board-blog-detail-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.board-detail-blog .board-blog-detail-meta {
		justify-content: flex-start;
	}

	.board-detail-blog .board-blog-detail-title {
		font-size: 30px;
		line-height: 1.18;
	}

	.board-detail-blog .board-blog-detail-summary {
		font-size: 16px;
	}

	.board-detail-blog .board-blog-detail-image {
		border-radius: 12px;
	}

	.board-detail-blog .board-detail-body {
		margin-top: 24px;
		font-size: 16px;
		line-height: 1.86;
	}

	.board-detail-blog .board-blog-related-grid {
		grid-template-columns: 1fr;
	}

	.board-skin-blog .board-blog-share,
	.board-skin-blog .board-blog-cta {
		display: grid;
		align-items: stretch;
	}

	.board-skin-blog .board-blog-share-actions {
		justify-content: flex-start;
	}

	.board-skin-blog .board-blog-cta a {
		width: 100%;
		box-sizing: border-box;
	}

	.board-page-main > .board-detail[data-board-page="faq"] .board-detail-body {
		font-size: 16px;
		line-height: 1.82;
	}

	.board-sibling-link {
		grid-template-columns: 1fr;
		gap: 4px;
		min-height: 0;
		padding: 13px 14px;
	}

	.board-sibling-link > strong {
		white-space: normal;
	}

	.board-sibling-link > time {
		font-size: 12px;
	}

	.board-site-footer {
		display: block;
		padding-top: 18px;
	}

	.board-site-footer-info {
		display: grid;
		gap: 5px;
	}

	.board-site-footer-info span {
		display: block;
	}

	.board-site-footer-home {
		width: 100%;
		box-sizing: border-box;
		margin-top: 14px;
	}

	.board-embed-head {
		display: block;
	}

	.board-embed-head a {
		display: inline-block;
		margin-top: 10px;
	}

	.board-search {
		align-items: stretch;
		flex-direction: column;
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		padding: 10px;
	}

	.board-tools {
		display: block;
	}

	.board-tools-categories {
		margin-bottom: 10px;
	}

	.board-tools-actions {
		display: block;
		min-width: 0;
		margin-left: 0;
	}

	.board-tools .board-search {
		padding: 0;
	}

	.board-tools .board-manager-bar {
		margin-top: 10px;
	}

	.board-search select,
	.board-search input,
	.board-search button,
	.board-search a {
		width: 100%;
		max-width: none;
	}

	.board-search input {
		flex: 0 0 auto;
	}

	.board-manager-bar,
	.board-form-actions {
		justify-content: stretch;
	}

	.board-manager-bar .site-btn,
	.board-manager-bar form,
	.board-manager-bar button,
	.board-form-actions .site-btn,
	.board-form-actions button {
		width: 100%;
	}

	.board-guest-action-form {
		display: grid;
		grid-template-columns: 1fr;
	}

	.board-guest-action-form input[type="password"] {
		width: 100%;
	}

	.board-form-grid,
	.board-form-grid-three {
		grid-template-columns: 1fr;
	}

	.board-privacy-consent-details > div {
		grid-template-columns: 1fr;
		gap: 2px;
	}

	.board-thumbnail-field,
	.board-thumbnail-input-row {
		grid-template-columns: 1fr;
	}

	.board-thumbnail-field {
		padding: 14px;
	}

	.board-thumbnail-preview {
		height: 180px;
		min-height: 180px;
	}

	.board-thumbnail-upload-btn {
		width: 100%;
	}

	.board-thumbnail-meta > div {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.board-page .admin-image-preview-layer {
		padding: 12px;
	}

	.board-page .admin-image-preview-panel {
		width: calc(100vw - 24px);
		height: calc(100vh - 24px);
		max-height: calc(100vh - 24px);
		border-radius: 14px;
	}

	.board-list a,
	.board-list-compact a {
		display: block;
	}

	.board-list time,
	.board-list-compact time {
		display: block;
		margin-top: 7px;
	}

	.board-attachments a {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.board-attachment-size {
		grid-column: 2;
	}
}

.board-featured-badge {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	max-width: max-content;
	height: 24px;
	min-height: 24px;
	margin: 0;
	padding: 0 10px;
	border: 1px solid rgba(12, 63, 132, 0.18);
	border-radius: 999px;
	background: linear-gradient(135deg, #0c3f84, #1769c2);
	color: #ffffff !important;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
	line-height: 1 !important;
	letter-spacing: -0.02em;
	text-align: center;
	white-space: nowrap;
	box-shadow: 0 8px 18px rgba(12, 63, 132, 0.18);
}

.board-card-featured {
	border-color: rgba(12, 63, 132, 0.26) !important;
	box-shadow: none !important;
}

.board-gallery-media {
	position: relative;
}

.board-gallery-featured-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: block !important;
	box-sizing: border-box !important;
	width: 52px !important;
	min-width: 52px !important;
	max-width: 52px !important;
	height: 31px !important;
	min-height: 31px !important;
	padding: 0 !important;
	color: #ffffff !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	line-height: 31px !important;
	text-align: center !important;
	letter-spacing: -0.03em;
}

.board-gallery-card .board-gallery-media .board-gallery-featured-badge {
	display: block !important;
	color: #ffffff !important;
	line-height: 31px !important;
	text-align: center !important;
}

.board-page-main > .board-detail {
	width: min(var(--board-content-max-width, 1760px), calc(100% - clamp(24px, 4vw, 64px)));
}

.board-page-main > .board-detail + .board-partial {
	margin-top: clamp(28px, 4vw, 48px);
}

.board-detail > .board-detail-image,
.board-detail > .board-detail-body,
.board-detail > .board-attachments,
.board-detail > .board-blog-share,
.board-detail > .board-blog-cta,
.board-detail > .board-blog-related,
.board-detail > .board-sibling-nav,
.board-detail > .board-actions {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

.board-detail.board-detail-blog .board-blog-detail-hero,
.board-detail.board-detail-blog .board-blog-detail-image,
.board-detail.board-detail-blog .board-detail-body,
.board-detail.board-detail-blog .board-blog-share,
.board-detail.board-detail-blog .board-blog-cta,
.board-detail.board-detail-blog .board-blog-related {
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}

.board-detail .board-detail-body {
	max-width: none;
	overflow-wrap: anywhere;
}

.board-detail .board-detail-body :where(img, video, iframe, table),
.board-detail .board-detail-image img,
.board-detail .board-blog-detail-image img {
	max-width: 100%;
}

.board-detail .board-detail-body :where(img, video),
.board-detail .board-detail-image img,
.board-detail .board-blog-detail-image img {
	height: auto;
}

.board-detail .board-detail-body :where(table) {
	width: 100%;
}

.board-detail .board-detail-body .interbasic-table-wrap {
	max-width: 100%;
	margin: 1em 0;
	overflow-x: auto;
}

.board-detail .board-detail-body table.interbasic-table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.board-detail .board-detail-body table.interbasic-table :is(th, td) {
	border: 1px solid #d1d5db;
	padding: 8px;
	vertical-align: top;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.board-detail.board-detail-blog .board-detail-body :where(img, video, iframe) {
	box-sizing: border-box;
	max-width: 100% !important;
	height: auto !important;
}

.board-detail.board-detail-blog .board-detail-body :where(table) {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	table-layout: fixed;
}

.board-detail > .board-detail-image,
.board-detail.board-detail-blog .board-blog-detail-image {
	text-align: center;
	background: #fff;
}

.board-detail > .board-detail-image img,
.board-detail.board-detail-blog .board-blog-detail-image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
	object-fit: contain;
}

.board-detail.board-detail-blog .board-detail-body {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	min-width: 0;
	margin-right: auto;
	margin-left: auto;
	overflow-x: hidden;
}

/* Semantic blocks generated by interBasicEditor. */
.interbasic-quote {
	margin: 1.4em 0;
	padding: 1em 1.15em;
	border-left: 4px solid #6b7c93;
	background: #f7f9fc;
	color: #334155;
}

.interbasic-quote > :first-child,
.interbasic-callout > :first-child {
	margin-top: 0;
}

.interbasic-quote > :last-child,
.interbasic-callout > :last-child {
	margin-bottom: 0;
}

.interbasic-code-block {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 1.4em 0;
	padding: 16px;
	overflow-x: auto;
	border: 1px solid #273244;
	border-radius: 6px;
	background: #111827;
	color: #e5edf7;
	font: 13px/1.65 Consolas, "Courier New", monospace;
	white-space: pre;
	tab-size: 2;
}

.interbasic-callout {
	box-sizing: border-box;
	max-width: 100%;
	margin: 1.4em 0;
	padding: 1em 1.1em;
	border: 1px solid #cbd5e1;
	border-left-width: 4px;
	border-radius: 6px;
	background: #f8fafc;
	color: #334155;
}

.interbasic-callout--info {
	border-color: #7db7e8;
	background: #eef7ff;
}

.interbasic-callout--tip {
	border-color: #74c69d;
	background: #eefbf4;
}

.interbasic-callout--warning {
	border-color: #e2ad39;
	background: #fff9e8;
}

.interbasic-callout--danger {
	border-color: #df7777;
	background: #fff1f1;
}

.interbasic-image {
	box-sizing: border-box;
	max-width: 100%;
	margin: 1.4em 0;
	text-align: center;
}

.interbasic-image img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}

.interbasic-image figcaption {
	margin-top: .65em;
	color: #64748b;
	font-size: .9em;
	line-height: 1.55;
	text-align: center;
}

.interbasic-media {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 1.4em 0;
	overflow: hidden;
	border: 0;
	border-radius: 6px;
	background: #111827;
	aspect-ratio: 16 / 9;
}

.interbasic-media::before {
	content: none;
}

.board-detail.board-detail-blog .board-detail-body .interbasic-media iframe,
.interbasic-media iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100% !important;
	height: 100% !important;
	border: 0;
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 640px) {
	.interbasic-quote,
	.interbasic-callout,
	.interbasic-code-block {
		margin: 1.1em 0;
	}

	.interbasic-code-block {
		padding: 13px;
		font-size: 12px;
	}
}

.board-gallery-card img,
.board-gallery-media img,
.board-list-thumb img,
.board-list-image img,
.board-list-media img,
.board-card-image img,
.board-card-media img,
.board-blog-card img,
.board-blog-list-media img,
.board-blog-related-media img {
	object-fit: contain !important;
	background: #fff;
}

.board-gallery-card > img {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: auto !important;
	max-height: none !important;
	object-fit: contain !important;
	background: #fff !important;
}

.board-gallery-card:has(> img) {
	overflow: visible;
}

.board-skin-blog .board-blog-list-item .board-blog-media,
.board-skin-blog .board-blog-list-item .board-blog-list-media {
	background: #fff !important;
}

.board-skin-blog .board-blog-list-item .board-blog-media img,
.board-skin-blog .board-blog-list-item .board-blog-list-media img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	background: #fff !important;
	transform: none !important;
}

.board-skin-blog .board-blog-list-item:hover .board-blog-media img,
.board-skin-blog .board-blog-list-item:focus-visible .board-blog-media img,
.board-skin-blog .board-blog-list-item:hover .board-blog-list-media img,
.board-skin-blog .board-blog-list-item:focus-visible .board-blog-list-media img {
	transform: none !important;
}

.board-detail > .board-actions {
	justify-content: flex-end;
	margin-top: 34px;
	border-top: 1px solid rgba(29, 29, 31, 0.08);
	padding-top: 22px;
}

.board-detail > .board-actions .site-btn {
	min-width: 112px;
}

.board-faq-featured-badge,
.board-list-featured-badge {
	width: auto !important;
	min-width: 42px;
	margin: 0 0 8px;
	padding: 0 9px;
	vertical-align: middle;
}

.board-faq-item.board-card-featured,
.board-list .board-card-featured {
	background: transparent;
	box-shadow: none !important;
}

.board-list strong .board-list-featured-badge,
.board-list .board-list-featured-badge {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 42px !important;
	max-width: max-content !important;
	height: 24px !important;
	min-height: 24px !important;
	margin: 0 8px 0 0 !important;
	padding: 0 9px !important;
	color: #ffffff !important;
	line-height: 1 !important;
}

.board-page-main > .board-skin-product,
.board-page-main > .board-detail-product {
	width: min(var(--board-content-max-width, 1320px), calc(100% - clamp(24px, 4vw, 64px)));
}

.board-skin-product {
	border: 1px solid rgba(29, 29, 31, 0.09);
	border-radius: 20px;
	padding: clamp(22px, 3vw, 38px);
	background: #ffffff;
}

.board-skin-product .board-title {
	margin-bottom: 28px;
}

.board-skin-product .board-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.board-skin-product .board-product-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(29, 29, 31, 0.1);
	border-radius: 16px;
	background: #ffffff;
	color: var(--board-text);
	text-decoration: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.board-skin-product .board-product-card:hover,
.board-skin-product .board-product-card:focus-visible {
	border-color: rgba(0, 113, 227, 0.34);
	box-shadow: 0 16px 30px rgba(18, 56, 95, 0.1);
	outline: 0;
	transform: translateY(-3px);
}

.board-skin-product .board-product-card.is-recommended {
	border-color: rgba(0, 113, 227, 0.25);
}

.board-skin-product .board-product-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f6f7f8;
}

.board-skin-product .board-product-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #ffffff;
}

.board-skin-product .board-product-placeholder {
	color: #9aa1aa;
	font-size: 13px;
	font-weight: 700;
}

.board-skin-product .board-product-badges,
.board-detail-product .board-product-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.board-skin-product .board-product-media .board-product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
}

.board-skin-product .board-product-badge,
.board-detail-product .board-product-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 24px;
	border-radius: 999px;
	padding: 0 8px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0.02em;
}

.board-skin-product .board-product-badge.is-recommended,
.board-detail-product .board-product-badge.is-recommended {
	background: #0a6ed1;
}

.board-skin-product .board-product-badge.is-new,
.board-detail-product .board-product-badge.is-new {
	background: #16803f;
}

.board-skin-product .board-product-badge.is-best,
.board-detail-product .board-product-badge.is-best {
	background: #7b4ae2;
}

.board-skin-product .board-product-badge.is-hot,
.board-detail-product .board-product-badge.is-hot {
	background: #d9480f;
}

.board-skin-product .board-product-body {
	display: flex;
	min-height: 174px;
	flex-direction: column;
	padding: 17px;
}

.board-skin-product .board-product-category {
	margin-bottom: 7px;
	color: #0a6ed1;
	font-size: 12px;
	font-weight: 800;
}

.board-skin-product .board-product-title {
	display: -webkit-box;
	overflow: hidden;
	color: #1d1d1f;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.42;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-skin-product .board-product-summary {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 8px;
	color: #68727e;
	font-size: 13px;
	line-height: 1.48;
	white-space: pre-line;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.board-skin-product .board-product-price,
.board-detail-product .board-product-price {
	display: grid;
	gap: 4px;
	margin-top: auto;
	padding-top: 16px;
}

.board-skin-product .board-product-price-row,
.board-detail-product .board-product-price-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.board-skin-product .board-product-price-regular del,
.board-detail-product .board-product-price-regular,
.board-detail-product .board-product-price-regular del {
	color: #8a929d;
	font-size: 13px;
	font-weight: 650;
}

.board-skin-product .board-product-discount {
	color: #df002b;
	font-size: 14px;
	font-weight: 850;
}

.board-skin-product .board-product-price-sale strong {
	color: #161b22;
	font-size: 20px;
	font-weight: 850;
	letter-spacing: -0.03em;
	white-space: nowrap;
}


.board-detail-product .board-product-price-regular {
	gap: 5px;
}

.board-detail-product .board-product-discount {
	color: #7f8792;
	font-size: 16px;
	font-weight: 800;
}

.board-detail-product .board-product-price-sale strong {
	color: #df002b;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 850;
	letter-spacing: -0.04em;
	white-space: nowrap;
}

.board-skin-product .board-product-price-unit,
.board-detail-product .board-product-price-unit {
	margin-left: 2px;
	font-size: 0.65em;
	font-weight: 700;
}

.board-skin-product .board-product-vat,
.board-detail-product .board-product-vat {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	margin-left: 2px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #eef2f6;
	color: #657080;
	font-size: 11px;
	font-weight: 750;
	line-height: 1.2;
	white-space: nowrap;
}

.board-skin-product .board-product-price-empty,
.board-detail-product .board-product-price-empty {
	color: #4f5a66;
	font-size: 15px;
	font-weight: 750;
}

.board-detail-product {
	border: 1px solid rgba(29, 29, 31, 0.09);
	border-radius: 20px;
	padding: clamp(22px, 3vw, 42px);
	background: #ffffff;
}

.board-detail-product .board-product-detail-hero {
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(29, 29, 31, 0.1);
	padding-bottom: 30px;
}

.board-detail-product .board-product-detail-hero.has-product-media {
	display: grid;
	grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 44px);
	align-items: start;
}

.board-detail-product .board-product-detail-hero.has-product-media .board-product-detail-nav {
	grid-column: 1 / -1;
}

.board-detail-product .board-product-detail-media {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	aspect-ratio: 1 / 1;
	border: 1px solid rgba(29, 29, 31, 0.09);
	border-radius: 16px;
	background: #f6f7f8;
}

.board-detail-product .board-product-detail-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #ffffff;
}

.board-detail-product .board-product-detail-info {
	min-width: 0;
}

.board-detail-product .board-product-detail-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.board-detail-product .board-product-detail-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 12px;
	color: #7b8591;
	font-size: 13px;
	font-weight: 650;
}

.board-detail-product .board-product-detail-copy {
	margin-top: 28px;
}

.board-detail-product .board-product-detail-category {
	margin: 0 0 10px;
	color: #0a6ed1;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
}

.board-detail-product .board-product-detail-title {
	margin: 14px 0 0;
	color: #1d1d1f;
	font-size: clamp(30px, 4vw, 46px);
	font-weight: 850;
	line-height: 1.16;
	letter-spacing: -0.045em;
}

.board-detail-product .board-product-detail-summary {
	max-width: 760px;
	margin: 14px 0 0;
	color: #5d6875;
	font-size: 17px;
	line-height: 1.7;
	white-space: pre-line;
}

.board-detail-product .board-product-detail-price {
	margin-top: 22px;
	padding-top: 0;
}

.board-product-vat-field {
	margin: 16px 0 0;
	padding: 0;
	border: 0;
}

.board-product-vat-field legend {
	margin-bottom: 8px;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
}

.board-product-vat-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.board-product-vat-options label {
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid rgba(29, 29, 31, 0.12);
	border-radius: 10px;
	background: #fff;
	color: var(--board-text);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.board-product-vat-options label:has(input:checked) {
	border-color: rgba(0, 113, 227, 0.45);
	box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.08);
}

/* 홈 삽입 프리셋의 PC 카드 수는 개별 프리셋에서만 지정한다. 태블릿/모바일 규칙은 아래 기존 media query를 따른다. */
@media (min-width: 1101px) {
	.board-embed[data-board-embed-pc-columns] .board-gallery-grid,
	.board-embed[data-board-embed-pc-columns] .board-before-after-grid,
	.board-embed[data-board-embed-pc-columns] .board-blog-grid,
	.board-embed[data-board-embed-pc-columns] .board-product-grid {
		grid-template-columns: repeat(var(--board-embed-pc-columns), minmax(0, 1fr));
	}
}

@media (max-width: 1100px) {
	.board-skin-product .board-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.board-skin-product .board-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 13px;
	}

	.board-skin-product .board-product-body {
		min-height: 158px;
		padding: 14px;
	}

	.board-skin-product .board-product-title {
		font-size: 15px;
	}

	.board-skin-product .board-product-price-sale strong {
		font-size: 18px;
	}

	.board-detail-product .board-product-detail-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.board-detail-product .board-product-detail-hero.has-product-media {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.board-detail-product .board-product-detail-media {
		max-width: 420px;
		margin-right: auto;
		margin-left: auto;
	}

	.board-detail-product .board-product-detail-meta {
		justify-content: flex-start;
	}
}

@media (max-width: 340px) {
	.board-faq-landing .board-faq-actions,
	.board-faq-actions {
		grid-template-columns: 1fr;
	}
}
