/* ============================================================
   Candidate listing + candidate detail
   Built on the jobs theme tokens defined in style_new.css
   ============================================================ */

:root,
.cand-scope {
	--c-ga: #7C3DAF;
	--c-gb: #0F5DB8;
	--c-grad: linear-gradient(90deg, #7C3DAF, #0F5DB8);
	--c-ink: #16213A;
	--c-muted: #69708A;
	--c-muted2: #9AA5C4;
	--c-bd: #E7EAF2;
	--c-bg: #F4F6FB;
	--c-green: #1A8A4B;
	--c-sh: 0 1px 3px rgba(22, 33, 58, .06), 0 6px 20px -8px rgba(22, 33, 58, .12);
	--c-sh2: 0 4px 8px rgba(22, 33, 58, .08), 0 16px 32px -12px rgba(60, 40, 140, .18);
}

.cand-wrap {
	max-width: 1300px;
	margin: 0 auto;
	padding: 24px 16px 40px;
}

/* ===== SEARCH PANEL ===== */
.cand-search {
	background: #fff;
	border: 1px solid var(--c-bd);
	border-radius: 16px;
	box-shadow: var(--c-sh);
	padding: 16px;
	margin-bottom: 22px;
}

.cand-search .cs-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.cand-search .cs-row > input[type="text"] {
	flex: 3 1 230px;
}

.cand-search .cs-row > select {
	flex: 1 1 165px;
}

.cand-search .cs-row > .cs-btn-ghost {
	flex: 0 0 42px;
}

.cand-search .cs-row > .cs-btn-go {
	flex: 1 1 auto;
}

.cand-search .cs-adv {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
	gap: 12px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--c-bd);
}

.cand-search .cs-adv.is-hidden {
	display: none;
}

.cand-search label {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--c-muted);
	margin-bottom: 5px;
}

.cand-search input[type="text"],
.cand-search input[type="number"],
.cand-search select {
	width: 100%;
	height: 42px;
	border: 1.5px solid var(--c-bd);
	border-radius: 10px;
	background-color: #fff;
	padding: 0 12px;
	font-family: inherit;
	font-size: 13.5px;
	color: var(--c-ink);
	outline: none;
	transition: border-color .15s, box-shadow .15s;
	-webkit-appearance: none;
	appearance: none;
}

.cand-search select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2369708A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 15px;
	padding-right: 32px;
	text-overflow: ellipsis;
}

.cand-search input:focus,
.cand-search select:focus {
	border-color: var(--c-ga);
	box-shadow: 0 0 0 3px rgba(124, 61, 175, .12);
}

.cand-search input::placeholder {
	color: var(--c-muted2);
}

.cs-btn {
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border-radius: 999px;
	padding: 0 22px;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	border: none;
	text-decoration: none;
	transition: transform .15s, box-shadow .15s, border-color .15s, color .15s, background .15s;
}

.cs-btn svg {
	width: 15px;
	height: 15px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.2;
}

.cs-btn-go {
	background: var(--c-grad);
	color: #fff;
	box-shadow: 0 6px 16px -4px rgba(124, 61, 175, .4);
}

.cs-btn-go:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px -4px rgba(124, 61, 175, .5);
	color: #fff;
}

.cs-btn-ghost {
	background: #fff;
	border: 1.5px solid var(--c-bd);
	color: var(--c-muted);
	width: 42px;
	padding: 0;
}

.cs-btn-ghost:hover,
.cs-btn-ghost.on {
	border-color: var(--c-ga);
	color: var(--c-ga);
}

.cs-btn-ghost.on {
	background: rgba(124, 61, 175, .07);
}

/* ===== RESULT HEADER + ACTIVE FILTERS ===== */
.cand-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.cand-head h2 {
	font-size: 19px;
	font-weight: 800;
	color: var(--c-ink);
	letter-spacing: -.02em;
	margin: 0;
}

.cand-head .sub {
	font-size: 13px;
	color: var(--c-muted);
	font-weight: 500;
}

.cand-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 16px;
}

.cand-chips .af {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1.5px solid var(--c-bd);
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-ink);
	text-decoration: none;
}

.cand-chips .af b {
	color: var(--c-muted);
	font-weight: 600;
}

.cand-chips .af-clear {
	color: var(--c-ga);
	border-color: rgba(124, 61, 175, .35);
}

.cand-chips .af-clear:hover {
	background: rgba(124, 61, 175, .07);
	color: var(--c-ga);
}

/* ===== GRID ===== */
.cand-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
	gap: 16px;
	align-items: stretch;
}

.cand-empty {
	grid-column: 1 / -1;
	background: #fff;
	border: 1.5px dashed var(--c-bd);
	border-radius: 16px;
	padding: 48px 24px;
	text-align: center;
	color: var(--c-muted);
}

.cand-empty svg {
	width: 42px;
	height: 42px;
	margin: 0 auto 12px;
	stroke: var(--c-muted2);
	fill: none;
	stroke-width: 1.6;
}

.cand-empty h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--c-ink);
	margin: 0 0 6px;
}

.cand-empty p {
	margin: 0;
	font-size: 13.5px;
}

/* ===== CARD ===== */
.ccard {
	position: relative;
	display: flex;
	height: 100%;
	background: #fff;
	border: 1.5px solid var(--c-bd);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

.ccard:hover {
	border-color: rgba(124, 61, 175, .32);
	box-shadow: var(--c-sh2);
	transform: translateY(-2px);
}

.ccard.is-premium {
	border-color: rgba(124, 61, 175, .26);
}

.ccard.is-premium::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--c-grad);
}

.ccard-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 18px 16px 16px;
	color: inherit;
	text-decoration: none;
}

.ccard-link:hover {
	color: inherit;
	text-decoration: none;
}

.ccard-flag {
	position: absolute;
	top: 13px;
	right: 12px;
	background: var(--c-grad);
	color: #fff;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 999px;
	line-height: 1.5;
}

.ccard-head {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.ccard-avatar {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	background: var(--c-bg);
	border: 2px solid #fff;
	box-shadow: 0 0 0 1.5px var(--c-bd);
}

.ccard.is-premium .ccard-avatar {
	box-shadow: 0 0 0 2px rgba(124, 61, 175, .35);
}

.ccard-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ccard-id {
	min-width: 0;
	flex: 1;
}

.ccard.is-premium .ccard-id {
	padding-right: 52px;
}

.ccard-name {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 15px;
	font-weight: 700;
	color: var(--c-ink);
	margin: 0 0 2px;
	line-height: 1.3;
}

.ccard-name span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ccard-name svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	fill: #1da1f2;
}

.ccard-role {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--c-ga);
	margin: 0 0 3px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ccard-loc {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11.5px;
	color: var(--c-muted);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ccard-loc svg {
	width: 11px;
	height: 11px;
	flex-shrink: 0;
	stroke: var(--c-muted2);
	fill: none;
	stroke-width: 2;
}

.ccard-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
	list-style: none;
	margin: 14px 0 0;
	padding: 12px 0 0;
	border-top: 1px solid var(--c-bd);
}

.ccard-meta li {
	min-width: 0;
	text-align: center;
}

.ccard-meta .k {
	display: block;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--c-muted2);
	margin-bottom: 2px;
}

.ccard-meta .v {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--c-ink);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ccard-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.ctag {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	background: rgba(124, 61, 175, .07);
	color: #6533a0;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ctag.more {
	background: var(--c-bg);
	color: var(--c-muted);
}

.ccard-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
}

.ccard-views {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11.5px;
	color: var(--c-muted2);
	font-weight: 600;
}

.ccard-views svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.ccard-cta {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--c-bg);
	border: 1.5px solid var(--c-bd);
	color: var(--c-ink);
	border-radius: 999px;
	padding: 7px 15px;
	font-size: 12.5px;
	font-weight: 700;
	transition: background .18s, color .18s, border-color .18s;
}

.ccard-cta svg {
	width: 12px;
	height: 12px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.4;
	transition: transform .18s;
}

.ccard:hover .ccard-cta {
	background: var(--c-grad);
	border-color: transparent;
	color: #fff;
}

.ccard:hover .ccard-cta svg {
	transform: translateX(2px);
}

/* ===== LOAD MORE ===== */
.cand-more {
	display: flex;
	justify-content: center;
	margin-top: 26px;
}

.btn-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1.5px solid var(--c-bd);
	color: var(--c-ink);
	border-radius: 999px;
	padding: 11px 26px;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color .15s, color .15s, transform .15s;
}

.btn-more:hover {
	border-color: var(--c-ga);
	color: var(--c-ga);
	transform: translateY(-1px);
}

.btn-more[disabled] {
	opacity: .6;
	cursor: default;
	transform: none;
}

.cand-spinner {
	width: 15px;
	height: 15px;
	border: 2px solid rgba(124, 61, 175, .25);
	border-top-color: var(--c-ga);
	border-radius: 50%;
	animation: cand-spin .7s linear infinite;
}

@keyframes cand-spin {
	to {
		transform: rotate(360deg);
	}
}

/* ============================================================
   CANDIDATE DETAIL
   ============================================================ */

.cd-hero {
	background: linear-gradient(120deg, #F2EEF9 0%, #ECF1FB 55%, #F0EDF8 100%);
	border-bottom: 1px solid var(--c-bd);
	padding: 26px 20px 30px;
	position: relative;
	overflow: hidden;
}

.cd-hero .orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.cd-hero .orb-a {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(124, 61, 175, .14), transparent 70%);
	top: -130px;
	right: -40px;
}

.cd-hero .orb-b {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(15, 93, 184, .12), transparent 70%);
	bottom: -110px;
	left: 40px;
}

.cd-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1300px;
	margin: 0 auto;
}

.cd-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0 0 18px;
	font-size: 12.5px;
	color: var(--c-muted);
}

.cd-crumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 6px;
	color: var(--c-muted2);
}

.cd-crumbs a {
	color: var(--c-ga);
	text-decoration: none;
	font-weight: 600;
}

.cd-crumbs a:hover {
	text-decoration: underline;
}

.cd-crumbs .active {
	color: var(--c-ink);
	font-weight: 600;
}

.cd-header {
	display: flex;
	align-items: flex-start;
	gap: 22px;
	flex-wrap: wrap;
}

.cd-avatar {
	position: relative;
	width: 104px;
	height: 104px;
	flex-shrink: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	border: 3px solid #fff;
	box-shadow: var(--c-sh2);
}

.cd-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cd-headline {
	flex: 1;
	min-width: 260px;
}

.cd-flag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--c-grad);
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.cd-headline h1 {
	font-size: clamp(21px, 2.6vw, 28px);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--c-ink);
	margin: 0 0 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.cd-headline h1 svg {
	width: 19px;
	height: 19px;
	fill: #1da1f2;
	flex-shrink: 0;
}

.cd-role {
	font-size: 15px;
	font-weight: 600;
	color: var(--c-ga);
	margin: 0 0 12px;
}

.cd-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.cd-tags .tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	border: 1px solid var(--c-bd);
	border-radius: 999px;
	padding: 5px 13px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--c-ink);
}

.cd-tags .tag svg {
	width: 13px;
	height: 13px;
	stroke: var(--c-muted);
	fill: none;
	stroke-width: 2;
}

.cd-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.cd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: none;
	border-radius: 999px;
	padding: 11px 24px;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
}

.cd-btn svg {
	width: 15px;
	height: 15px;
}

.cd-btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.cd-btn-wa {
	background: #25D366;
	color: #fff;
	box-shadow: 0 6px 16px -4px rgba(37, 211, 102, .45);
}

.cd-btn-wa:hover {
	color: #fff;
	box-shadow: 0 8px 20px -4px rgba(37, 211, 102, .55);
}

.cd-btn-grad {
	background: var(--c-grad);
	color: #fff;
	box-shadow: 0 6px 16px -4px rgba(124, 61, 175, .4);
}

.cd-btn-grad:hover {
	color: #fff;
}

.cd-btn-outline {
	background: #fff;
	border: 1.5px solid var(--c-bd);
	color: var(--c-ink);
}

.cd-btn-outline:hover {
	border-color: var(--c-ga);
	color: var(--c-ga);
}

/* --- body layout --- */
.cd-body {
	max-width: 1300px;
	margin: 0 auto;
	padding: 28px 20px 44px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 24px;
	align-items: start;
}

.cd-panel {
	background: #fff;
	border: 1px solid var(--c-bd);
	border-radius: 16px;
	padding: 22px;
	margin-bottom: 20px;
	box-shadow: var(--c-sh);
}

.cd-panel h2,
.cd-panel h3.cd-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: var(--c-ink);
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--c-bd);
	display: flex;
	align-items: center;
	gap: 8px;
}

.cd-panel h2 svg,
.cd-panel h3.cd-title svg {
	width: 17px;
	height: 17px;
	stroke: var(--c-ga);
	fill: none;
	stroke-width: 2;
}

.cd-prose {
	color: #35405c;
	font-size: 14px;
	line-height: 1.75;
	overflow-wrap: break-word;
}

.cd-prose p {
	margin: 0 0 12px;
}

.cd-prose p:last-child {
	margin-bottom: 0;
}

.cd-prose ul,
.cd-prose ol {
	margin: 0 0 12px;
	padding-left: 20px;
	list-style: disc;
}

.cd-prose ol {
	list-style: decimal;
}

.cd-prose li {
	margin-bottom: 5px;
}

.cd-prose h1,
.cd-prose h2,
.cd-prose h3,
.cd-prose h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--c-ink);
	margin: 16px 0 8px;
}

.cd-prose img {
	max-width: 100%;
	height: auto;
}

.cd-prose table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
}

.cd-prose table td,
.cd-prose table th {
	border: 1px solid var(--c-bd);
	padding: 7px 10px;
}

.cd-scroll-x {
	overflow-x: auto;
}

.cd-taglist {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.cd-taglist a {
	display: inline-flex;
	align-items: center;
	background: rgba(124, 61, 175, .07);
	color: #6533a0;
	border-radius: 999px;
	padding: 6px 13px;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s, color .15s;
}

.cd-taglist a:hover {
	background: var(--c-grad);
	color: #fff;
	text-decoration: none;
}

.cd-taglist a.fn {
	background: rgba(15, 93, 184, .07);
	color: #0F5DB8;
}

.cd-taglist a.fn:hover {
	background: var(--c-grad);
	color: #fff;
}

.cd-frame {
	position: relative;
	border: 1px solid var(--c-bd);
	border-radius: 12px;
	overflow: hidden;
	background: var(--c-bg);
}

.cd-frame iframe {
	display: block;
	width: 100%;
	height: 780px;
	border: 0;
}

.cd-frame-empty {
	padding: 40px 20px;
	text-align: center;
	color: var(--c-muted);
	font-size: 13.5px;
}

/* --- sidebar --- */
.cd-side {
	position: sticky;
	top: 96px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cd-side .cd-panel {
	margin-bottom: 0;
}

.cd-facts {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cd-facts li {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 0;
	border-bottom: 1px solid #F1F3F9;
}

.cd-facts li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.cd-facts .ic {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	border-radius: 9px;
	background: var(--c-bg);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cd-facts .ic svg {
	width: 15px;
	height: 15px;
	stroke: var(--c-ga);
	fill: none;
	stroke-width: 2;
}

.cd-facts .k {
	font-size: 13px;
	color: var(--c-muted);
	font-weight: 500;
}

.cd-facts .v {
	margin-left: auto;
	font-size: 13px;
	font-weight: 700;
	color: var(--c-ink);
	text-align: right;
	overflow-wrap: anywhere;
}

.cd-cta-card {
	background: linear-gradient(135deg, rgba(124, 61, 175, .07), rgba(15, 93, 184, .05));
	border: 1px solid rgba(124, 61, 175, .18);
	border-radius: 16px;
	padding: 20px;
	text-align: center;
}

.cd-cta-card h4 {
	font-size: 15px;
	font-weight: 800;
	color: var(--c-ink);
	margin: 0 0 6px;
}

.cd-cta-card p {
	font-size: 13px;
	color: var(--c-muted);
	margin: 0 0 14px;
}

.cd-locked {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--c-bg);
	border: 1px dashed var(--c-bd);
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 12.5px;
	color: var(--c-muted);
}

.cd-locked svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	stroke: var(--c-muted2);
	fill: none;
	stroke-width: 2;
}

/* --- related --- */
.cd-related {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 20px 44px;
}

.cd-related h3 {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--c-ink);
	margin: 0 0 16px;
}

/* --- detail responsive --- */
@media (max-width: 992px) {
	.cd-body {
		grid-template-columns: 1fr;
	}

	.cd-side {
		position: static;
	}

	.cd-frame iframe {
		height: 560px;
	}
}

@media (max-width: 640px) {
	.cd-hero {
		padding: 20px 16px 24px;
	}

	.cd-header {
		gap: 16px;
	}

	.cd-avatar {
		width: 76px;
		height: 76px;
		border-radius: 16px;
	}

	.cd-headline {
		min-width: 0;
	}

	.cd-actions .cd-btn {
		flex: 1 1 100%;
	}

	.cd-body {
		padding: 20px 16px 32px;
		gap: 18px;
	}

	.cd-panel {
		padding: 18px 16px;
	}

	.cd-frame iframe {
		height: 420px;
	}
}

/* ===== LISTING RESPONSIVE ===== */
@media (max-width: 640px) {
	.cand-wrap {
		padding: 18px 14px 32px;
	}

	.cand-search {
		padding: 14px;
	}

	.cand-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.cand-head h2 {
		font-size: 17px;
	}
}

@media (max-width: 380px) {
	.ccard-meta .k {
		font-size: 9px;
		letter-spacing: .03em;
	}

	.ccard-meta .v {
		font-size: 11px;
	}
}
