* {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	padding: 0;
	background: #ffffff;
	color: #2f2a24;
	font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.header {
	position: relative;
	z-index: 10;
	background: #ffffff;
	border-bottom: 1px solid #ece2d3;
}

.inner {
	width: min(1040px, calc(100% - 36px));
	margin: 0 auto;
}

.header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 28px 0 24px;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex: 0 0 auto;
}

.logo a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.logo img {
	display: block;
}

.burger {
	display: none;
	width: 42px;
	height: 42px;
	margin: 0;
	padding: 0;
	border: 1px solid #d8c6aa;
	border-radius: 10px;
	background: #ffffff;
	cursor: pointer;
}

.burger span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	border-radius: 2px;
	background: #8a6a3f;
}

.menu {
	display: flex;
	justify-content: flex-end;
	flex: 1 1 auto;
	min-width: 0;
}

.menu ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu li {
	margin: 0;
	padding: 0;
}

.menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 0 5px;
	border: 0;
	background: transparent;
	color: #6f5a3d;
	font-size: 15px;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: -0.025em;
	white-space: nowrap;
}

.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: #b0905e;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.16s ease;
}

.menu a:hover {
	color: #4f3e27;
}

.menu a:hover::after,
.menu a[aria-current="page"]::after {
	transform: scaleX(1);
}

.menu a[aria-current="page"] {
	color: #4f3e27;
}

.content {
	width: min(1040px, calc(100% - 36px));
	margin: 32px auto 82px;
	background: #ffffff;
}

.post {
	margin: 0;
	padding: 0;
}

.post-header {
	position: relative;
	margin: 0 0 42px;
	padding: 0 0 30px;
	text-align: left;
	border-bottom: 1px solid #ece2d3;
}

.post-title {
	margin: 0;
	padding: 0;
	font-size: 34px;
	line-height: 1.18;
	font-weight: 950;
	letter-spacing: -0.07em;
	color: #2f2a24;
	word-break: keep-all;
}

.post-title::after {
	content: "";
	display: block;
	width: 64px;
	height: 3px;
	margin: 20px 0 0;
	border-radius: 999px;
	background: #b0905e;
}

.post-list {
	margin: 0 0 70px;
	padding: 0;
}

.item-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
}

.item-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 1px solid #e8ddcb;
	border-radius: 10px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 10px 26px rgba(86, 67, 40, 0.055);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.item-card:hover {
	transform: translateY(-3px);
	border-color: #cfb88e;
	box-shadow: 0 16px 36px rgba(86, 67, 40, 0.1);
}

.item-thumb {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0;
	padding: 0;
	background: #f7f0e5;
	overflow: hidden;
	line-height: 0;
}

.item-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	margin: 0;
	padding: 0;
	border: 0;
	opacity: 1;
	visibility: visible;
	transition: transform 0.22s ease;
}

.item-thumb:hover img {
	transform: scale(1.035);
}

.item-content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 19px 17px 0;
	background: #ffffff;
}

.item-head {
	margin: 0;
	padding: 0;
}

.item-title {
	display: block;
	min-height: 2.7em;
	margin: 0;
	padding: 0;
	color: #2f2a24;
	font-size: 18px;
	font-weight: 950;
	line-height: 1.35;
	letter-spacing: -0.055em;
	word-break: keep-all;
}

.item-meta {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.item-row {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 8px;
	align-items: start;
	margin: 0;
	padding: 0;
	font-size: 12.5px;
	line-height: 1.55;
	letter-spacing: -0.025em;
}

.item-row b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	border: 1px solid #e1d1b8;
	border-radius: 6px;
	background: #fbf6ed;
	color: #8a6a3f;
	font-size: 11.5px;
	font-weight: 950;
	line-height: 1;
}

.item-row span {
	color: #6d655b;
	font-weight: 600;
	word-break: keep-all;
}

.item-cta {
	margin-top: auto;
	padding: 17px;
	background: #ffffff;
}

.item-action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 43px;
	padding: 12px 14px;
	border: 1px solid #8a6a3f;
	border-radius: 10px;
	background: #8a6a3f;
	color: #ffffff;
	font-size: 14px;
	font-weight: 950;
	line-height: 1.35;
	letter-spacing: -0.025em;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.item-action::after {
	content: ">";
	margin-left: 8px;
	font-weight: 950;
}

.item-action:hover {
	background: #6f522f;
	border-color: #6f522f;
	color: #ffffff;
}

.post-content {
	margin: 0;
	padding: 0;
	background: #ffffff;
}

.view {
	max-width: 1040px;
	margin: 0 auto;
	padding: 48px 50px;
	border: 1px solid #e8ddcb;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(86, 67, 40, 0.05);
	color: #3b352e;
	font-size: 17px;
	line-height: 1.84;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.view h2 {
	position: relative;
	margin: 56px 0 24px;
	padding: 0 0 18px;
	border-bottom: 1px solid #e8ddcb;
	color: #2f2a24;
	font-size: 29px;
	font-weight: 950;
	line-height: 1.34;
	letter-spacing: -0.06em;
}

.view h2:first-child {
	margin-top: 0;
}

.view h2::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 11px;
	background: #b0905e;
	vertical-align: 0.1em;
	transform: rotate(45deg);
}

.view h2::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 92px;
	height: 3px;
	background: #8a6a3f;
}

.view h3 {
	margin: 40px 0 17px;
	padding: 13px 16px;
	border-left: 4px solid #b0905e;
	border-radius: 0 10px 10px 0;
	background: #fbf6ed;
	color: #2f2a24;
	font-size: 22px;
	font-weight: 950;
	line-height: 1.42;
	letter-spacing: -0.05em;
}

.view p {
	margin: 0 0 18px;
}

.view strong {
	display: inline;
	color: #7c5d34;
	font-weight: 950;
}

.visit-steps,
.question-order {
	margin: 22px 0 34px;
	padding: 0;
	list-style: none;
	border-top: 1px solid #e8ddcb;
}

.visit-steps > li,
.question-order > li {
	position: relative;
	margin: 0;
	padding: 16px 0;
	border-bottom: 1px solid #e8ddcb;
	color: #5f574e;
}

.visit-steps > li::before,
.question-order > li::before {
	display: none;
	content: none;
}

.visit-steps > li > strong,
.question-order > li > strong {
	display: inline;
	margin: 0;
	color: #2f2a24;
	font-size: 17px;
	font-weight: 950;
	letter-spacing: -0.035em;
}

.visit-steps > li > strong + p {
	display: inline;
	margin: 0;
	color: #5f574e;
}

.visit-steps > li > strong + p::before {
	content: " ";
}

.question-order > li > strong + * {
	margin-left: 2px;
}

.tip-card-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 24px 0 38px;
	padding: 0;
}

.tip-card {
	min-width: 0;
	padding: 23px 22px 21px;
	border: 1px solid #e8ddcb;
	border-radius: 10px;
	background: #fffdf8;
}

.tip-card h3 {
	margin: 0 0 14px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #7c5d34;
	font-size: 21px;
	font-weight: 950;
	line-height: 1.35;
	letter-spacing: -0.05em;
}

.tip-card p {
	margin: 0 0 16px;
	color: #514a42;
}

.tip-card ul,
.quick-memo-list {
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #e8ddcb;
}

.tip-card ul li,
.quick-memo-list li {
	position: relative;
	margin: 0;
	padding: 12px 0 12px 20px;
	border-bottom: 1px solid #e8ddcb;
	color: #5f574e;
}

.tip-card ul li::before,
.quick-memo-list li::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 1.35em;
	width: 6px;
	height: 6px;
	background: #b0905e;
	transform: rotate(45deg);
}

.quick-memo-list li strong {
	display: inline;
	margin: 0;
	color: #7c5d34;
	font-weight: 950;
}

.view table {
	width: 100%;
	max-width: 100%;
	margin: 26px 0 36px;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e8ddcb;
	border-radius: 10px;
	background: #ffffff;
	font-size: 15px;
	line-height: 1.58;
	table-layout: fixed;
	overflow: hidden;
}

.view caption {
	caption-side: top;
	padding: 0 0 12px;
	color: #7c5d34;
	font-size: 14px;
	font-weight: 950;
	text-align: left;
}

.view thead {
	background: #fbf6ed;
}

.view tbody {
	background: #ffffff;
}

.view th {
	background: #fbf6ed;
	color: #6f522f;
	font-weight: 950;
}

.view th,
.view td {
	padding: 15px 16px;
	border-right: 1px solid #e8ddcb;
	border-bottom: 1px solid #e8ddcb;
	text-align: left;
	vertical-align: top;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.view th:last-child,
.view td:last-child {
	border-right: 0;
}

.view tr:last-child td {
	border-bottom: 0;
}

.view details {
	margin: 16px 0;
	border: 1px solid #e8ddcb;
	border-radius: 10px;
	background: #ffffff;
	overflow: hidden;
}

.view summary {
	position: relative;
	padding: 17px 50px 17px 18px;
	background: #fffdf8;
	color: #2f2a24;
	font-weight: 950;
	letter-spacing: -0.035em;
	cursor: pointer;
	list-style: none;
}

.view summary::-webkit-details-marker {
	display: none;
}

.view summary::after {
	content: "+";
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #8a6a3f;
	color: #ffffff;
	font-size: 16px;
	font-weight: 950;
	line-height: 1;
}

.view details[open] summary::after {
	content: "-";
}

.view details > p {
	padding: 18px;
	margin: 0;
	border-top: 1px solid #e8ddcb;
	color: #5f574e;
}

.footer {
	background: #ffffff;
	border-top: 1px solid #ece2d3;
}

.footer .inner {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer p {
	margin: 0;
	color: #4b4134;
	font-size: 14px;
}

@media (max-width: 1100px) {
	.item-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tip-card-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.header .inner {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 48px;
		align-items: center;
		gap: 0;
		padding: 15px 12px;
	}

	.logo {
		justify-content: flex-start;
	}

	.burger {
		justify-self: end;
		display: block;
	}

	.menu {
		grid-column: 1 / 3;
		display: none;
		width: calc(100% + 24px);
		margin: 15px -12px -15px;
		padding: 15px 12px 17px;
		border-top: 1px solid #ece2d3;
		background: #ffffff;
	}

	.menu.is-open {
		display: block;
	}

	.menu ul {
		gap: 14px;
		justify-content: flex-start;
	}

	.menu a {
		min-height: 34px;
		padding: 0 0 5px;
		font-size: 14px;
	}

	.content {
		width: min(100% - 24px, 1040px);
		margin-top: 38px;
		margin-bottom: 58px;
	}

	.post-header {
		margin-bottom: 32px;
		padding-bottom: 24px;
	}

	.post-title {
		font-size: 30px;
	}

	.item-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.item-title {
		min-height: auto;
		font-size: 18px;
	}

	.view {
		padding: 36px 22px;
		font-size: 16px;
		line-height: 1.78;
	}

	.view h2 {
		margin-top: 44px;
		font-size: 23px;
	}

	.view h3 {
		margin-top: 30px;
		font-size: 19px;
	}

	.visit-steps > li,
	.question-order > li {
		padding: 15px 0;
	}

	.tip-card {
		padding: 21px 18px 20px;
	}

	.view table {
		display: table;
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		margin-right: 0;
		table-layout: fixed;
		white-space: normal;
		overflow: visible;
		font-size: 14px;
	}

	.view th,
	.view td {
		padding: 12px 10px;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 520px) {
	.inner {
		width: calc(100% - 24px);
	}

	.post-title {
		font-size: 27px;
	}

	.menu ul {
		gap: 12px;
	}

	.menu a {
		font-size: 13.5px;
	}

	.item-content {
		padding: 18px 16px 0;
	}

	.item-title {
		font-size: 17px;
	}

	.item-row {
		grid-template-columns: 40px 1fr;
		font-size: 12.5px;
	}

	.item-row b {
		font-size: 11.5px;
	}

	.item-cta {
		padding: 16px;
	}

	.item-action {
		min-height: 42px;
		font-size: 13.5px;
	}

	.view {
		padding: 30px 18px;
	}

	.view h2 {
		font-size: 21px;
	}

	.view h3 {
		font-size: 18px;
	}

	.view table {
		font-size: 13.5px;
	}

	.view th,
	.view td {
		padding: 11px 8px;
	}
}