﻿/* ========== TOPBAR (Squarespace-ish) ========== */
.topbar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border-bottom: 1px solid #e5e7eb;
	background: #fff;
	/* 상단도 본문과 같은 폭 */
	max-width: 1400px;
	margin: 0 auto;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.2px;
	text-decoration: none;
	color: #0f172a;
	padding-right: 6px;
	line-height: 1;
}

.quick {
	display: flex;
	align-items: center;
	gap: 10px;
}

.qbtn {
	padding: 8px 12px;
	border-radius: 12px;
	border: 1px solid transparent;
	text-decoration: none;
	color: #0f172a;
	background: transparent;
	white-space: nowrap;
	font-weight: 700;
}

	.qbtn:hover {
		background: #f1f5f9;
	}

.qbtn-primary {
	border-color: #0b57d0;
	background: #0b57d0;
	color: #fff;
}

.global {
	margin-left: auto;
	min-width: 520px;
}

.global-controls {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: nowrap;
	margin: 0;
}

.search-input {
	width: min(640px, 52vw);
	height: 40px;
	padding: 0 14px;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	outline: none;
}

.search-opt {
	height: 40px;
	padding: 0 12px;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	background: #fff;
}

.btn {
	height: 40px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid #0b57d0;
	background: #0b57d0;
	color: #fff;
	cursor: pointer;
	font-weight: 800;
}

@media (max-width: 980px) {
	.topbar {
		flex-wrap: wrap;
	}

	.global {
		min-width: unset;
		width: 100%;
		margin-left: 0;
	}

	.global-controls {
		width: 100%;
		flex-wrap: wrap;
	}

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

.app-footer {
	padding: 1em 4em 1em 4em;

	.app-container {
		width: 70%;
	}
}

