/* ==========================================================================
   Jewellink — City × Category Landing Pages
   File: wp-content/themes/my-listing-child/assets/css/jl-landing-page.css
   ========================================================================== */

:root {
	--jl-lp-teal:          #2b7a78;
	--jl-lp-teal-dark:     #246a68;
	--jl-lp-teal-deeper:   #1e5a58;
	--jl-lp-teal-light:    #e8f4f4;
	--jl-lp-text:          #111827;
	--jl-lp-muted:         #5a6070;
	--jl-lp-border:        #e4e8ed;
	--jl-lp-bg:            #f7f8fa;
	--jl-lp-white:         #ffffff;
	--jl-lp-star:          #f5a623;
	--jl-lp-radius:        10px;
	--jl-lp-card-shadow:       0 2px 10px rgba(0,0,0,.07);
	--jl-lp-card-shadow-hover: 0 6px 24px rgba(0,0,0,.12);
}

.jl-lp *, .jl-lp *::before, .jl-lp *::after { box-sizing: border-box; }


/* ═══════════════════════════════════════════════════════════════════════════
   HERO — About Us style: light bg, dark text, featured image right
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__hero {
	background: #f7f8fa;
	border-bottom: 1px solid #edf0f5;
	padding: 52px 0 48px;
}

.jl-lp__hero-layout {
	display: flex;
	align-items: center;
	gap: 48px;
}
.jl-lp__hero-layout--has-image .jl-lp__hero-content {
	flex: 1 1 0;
	min-width: 0;
}
.jl-lp__hero-image {
	flex: 0 0 380px;
	max-width: 380px;
}
.jl-lp__hero-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

.jl-lp__hero-title {
	font-size: clamp(26px, 4vw, 40px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--jl-lp-text);
	margin: 0 0 14px;
}
.jl-lp__hero-meta {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--jl-lp-teal);
	background: var(--jl-lp-teal-light);
	border-radius: 999px;
	padding: 4px 12px;
	margin: 0 0 16px;
}
.jl-lp__hero-intro {
	font-size: 16px;
	line-height: 1.65;
	color: var(--jl-lp-muted);
	max-width: 600px;
	margin: 0;
}

.jl-lp__eyebrow-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--jl-lp-muted);
	margin: 0 0 16px;
}

.jl-lp__eyebrow-links a {
	color: var(--jl-lp-teal);
	text-decoration: none;
}

.jl-lp__eyebrow-links a:hover {
	text-decoration: underline;
}

.jl-lp__eyebrow-current {
	color: var(--jl-lp-teal);
}

.jl-lp__hero-citylink {
	margin: 18px 0 0;
}

.jl-lp__hero-citylink a {
	color: var(--jl-lp-teal);
	font-weight: 600;
	text-decoration: none;
}

.jl-lp__hero-citylink a:hover {
	text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BODY
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__body { padding-top: 32px; padding-bottom: 64px; }

.jl-lp--city .jl-lp__hero {
	padding: 40px 0 34px;
}

.jl-lp--city .jl-lp__hero-content {
	max-width: 760px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   TOOLBAR — sort + filter bar
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__toolbar {
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--jl-lp-border);
}

.jl-lp__toolbar-form {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px 20px;
}

.jl-lp__toolbar-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.jl-lp__toolbar-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--jl-lp-muted);
	white-space: nowrap;
}

.jl-lp__toolbar-select {
	font-size: 13px;
	font-weight: 500;
	color: var(--jl-lp-text);
	background: var(--jl-lp-white);
	border: 1px solid var(--jl-lp-border);
	border-radius: 6px;
	padding: 7px 32px 7px 12px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235a6070'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	transition: border-color .15s;
}
.jl-lp__toolbar-select:focus {
	outline: none;
	border-color: var(--jl-lp-teal);
	box-shadow: 0 0 0 3px rgba(43,122,120,.12);
}

.jl-lp__toolbar-clear {
	font-size: 13px;
	color: var(--jl-lp-muted);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.jl-lp__toolbar-clear:hover { color: var(--jl-lp-teal); }

.jl-lp__toolbar-count {
	margin: 0 0 0 auto;
	font-size: 13px;
	color: var(--jl-lp-muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   CARD GRID
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

/* ── Shared landing cards (same family as search + related listings) ── */
.jl-lp__grid .jl-search-card--landing {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	background: var(--jl-lp-white);
	border: 1px solid var(--jl-lp-border);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 18px 42px rgba(19, 42, 51, 0.08);
	transition: transform .18s ease, box-shadow .18s ease;
}

.jl-lp__grid .jl-search-card--landing:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 54px rgba(19, 42, 51, 0.12);
}

.jl-lp__grid .jl-search-card__media,
.jl-lp__grid .jl-search-card__content {
	color: inherit;
	text-decoration: none;
}

.jl-lp__grid .jl-search-card__media {
	position: relative;
	display: block;
}

.jl-lp__grid .jl-search-card__cover {
	width: 100%;
	height: 188px;
	min-height: 188px;
	background-color: var(--jl-lp-bg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.jl-lp__grid .jl-search-card__cover--placeholder {
	background: linear-gradient(145deg, #eef7f4 0%, #ffffff 100%);
}

.jl-lp__grid .jl-search-card__logo-wrap {
	position: absolute;
	left: 18px;
	bottom: -23px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(19, 42, 51, 0.14);
	overflow: hidden;
}

.jl-lp__grid .jl-search-card__logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 50%;
}

.jl-lp__grid .jl-search-card__logo-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--jl-lp-teal-light);
	color: var(--jl-lp-teal);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.jl-lp__grid .jl-search-card .lf-head {
	position: absolute;
	top: 14px !important;
	left: 14px !important;
	right: 14px !important;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	z-index: 3;
}

.jl-lp__grid .jl-search-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	gap: 10px;
	padding: 36px 20px 18px;
	min-width: 0;
}

.jl-lp__grid .jl-search-card__content {
	color: var(--jl-lp-text);
	text-decoration: none;
	min-width: 0;
}

.jl-lp__grid .jl-search-card__title-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.jl-lp__grid .jl-search-card__title {
	margin: 0;
	color: var(--jl-lp-text);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.jl-lp__grid .jl-search-card__title a {
	color: inherit;
	text-decoration: none;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
}

.jl-lp__grid .jl-search-card__title a:hover,
.jl-lp__grid .jl-search-card__title a:focus {
	color: var(--jl-lp-teal);
}

.jl-lp__grid .jl-search-card__verified {
	flex: 0 0 auto;
}

.jl-lp__grid .jl-search-card__address,
.jl-lp__grid .jl-search-card__phone {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0;
	color: var(--jl-lp-muted);
	font-size: 12px;
	line-height: 1.5;
}

.jl-lp__grid .jl-search-card__phone {
	font-size: 11.5px;
}

.jl-lp__grid .jl-search-card__address span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.jl-lp__grid .jl-search-card__address svg,
.jl-lp__grid .jl-search-card__phone svg {
	flex: 0 0 auto;
	margin-top: 3px;
}

.jl-lp__grid .jl-search-card__phone a {
	color: inherit;
	text-decoration: none;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
}

.jl-lp__grid .jl-search-card__phone a:hover,
.jl-lp__grid .jl-search-card__phone a:focus {
	color: var(--jl-lp-teal);
}

.jl-lp__grid .jl-search-card__rating {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0;
	color: #62522a;
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.4;
}

.jl-lp__grid .jl-search-card__stars {
	color: var(--jl-lp-star);
	font-size: 12px;
	letter-spacing: .04em;
}

.jl-lp__grid .jl-search-card-rating__score {
	color: var(--jl-lp-text);
	font-weight: 700;
}

.jl-lp__grid .jl-search-card-rating__count {
	color: #836d39;
}

.jl-lp__grid .jl-search-card__services {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 2px 0 0;
	padding: 0;
}

.jl-lp__grid .jl-search-card__services li {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .02em;
	background: var(--jl-lp-teal-light);
	color: var(--jl-lp-teal);
}

.jl-lp__grid .jl-search-card__services a {
	color: inherit;
	text-decoration: none;
	font-size: inherit !important;
	font-weight: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
}

.jl-lp__grid .jl-search-card__services a:hover,
.jl-lp__grid .jl-search-card__services a:focus {
	color: var(--jl-lp-teal-dark);
}

.jl-lp__grid .jl-search-card__service-more {
	background: #f3f7f7;
	color: var(--jl-lp-muted);
}

.jl-lp__grid .jl-search-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	padding-top: 6px;
	color: var(--jl-lp-teal);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.jl-lp__grid .jl-search-card__cta:hover,
.jl-lp__grid .jl-search-card__cta:focus {
	color: var(--jl-lp-teal-dark);
}

/* Empty */
.jl-lp__empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--jl-lp-muted);
}


/* ═══════════════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin: 20px 0 48px;
}
.jl-lp__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 6px;
	border: 1px solid var(--jl-lp-border);
	font-size: 14px;
	font-weight: 600;
	color: var(--jl-lp-text);
	text-decoration: none;
	background: var(--jl-lp-white);
	transition: background .15s, color .15s;
}
.jl-lp__pagination .page-numbers:hover,
.jl-lp__pagination .page-numbers.current {
	background: var(--jl-lp-teal);
	color: #fff;
	border-color: var(--jl-lp-teal);
}
.jl-lp__pagination .prev,
.jl-lp__pagination .next { width: auto; padding: 0 14px; }


/* ═══════════════════════════════════════════════════════════════════════════
   AREA GUIDE
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__area-guide {
	max-width: 760px;
	margin: 0 auto 56px;
}
.jl-lp__area-guide h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 18px;
	color: var(--jl-lp-text);
}
.jl-lp__area-guide-body {
	font-size: 15px;
	line-height: 1.75;
	color: var(--jl-lp-muted);
}
.jl-lp__area-guide-body p { margin: 0 0 16px; }

.jl-lp__local-guide {
	max-width: 1120px;
	margin: 0 auto 56px;
}

.jl-lp__section-head {
	max-width: 780px;
	margin: 0 0 24px;
}

.jl-lp__section-head h2 {
	margin: 0 0 10px;
	color: var(--jl-lp-text);
	font-size: 24px;
	line-height: 1.2;
}

.jl-lp__section-head p {
	margin: 0;
	color: var(--jl-lp-muted);
	font-size: 15px;
	line-height: 1.7;
}

.jl-lp__guide-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 0 0 22px;
}

.jl-lp__guide-card,
.jl-lp__comparison-panel {
	border: 1px solid var(--jl-lp-border);
	border-radius: 12px;
	background: #ffffff;
	box-shadow: var(--jl-lp-card-shadow);
}

.jl-lp__guide-card {
	padding: 22px;
}

.jl-lp__guide-card h3,
.jl-lp__comparison-panel h3 {
	margin: 0 0 12px;
	color: var(--jl-lp-text);
	font-size: 17px;
	line-height: 1.3;
}

.jl-lp__guide-card p,
.jl-lp__guide-card li {
	color: var(--jl-lp-muted);
	font-size: 14px;
	line-height: 1.7;
}

.jl-lp__guide-card p {
	margin: 0;
}

.jl-lp__guide-card ul {
	margin: 0;
	padding-left: 18px;
}

.jl-lp__guide-card li + li {
	margin-top: 8px;
}

.jl-lp__comparison-panel {
	padding: 24px;
}

.jl-lp__comparison-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.jl-lp__comparison-item {
	padding: 16px;
	border-radius: 10px;
	background: var(--jl-lp-bg);
}

.jl-lp__comparison-item strong {
	display: block;
	margin: 0 0 6px;
	color: var(--jl-lp-text);
	font-size: 14px;
}

.jl-lp__comparison-item span {
	display: block;
	color: var(--jl-lp-muted);
	font-size: 13px;
	line-height: 1.65;
}

@media (min-width: 1200px) {
	.jl-lp__area-guide {
		max-width: 1120px;
	}

	.jl-lp__area-guide-body {
		column-count: 2;
		column-gap: 56px;
		column-fill: balance;
	}
}


/* ═══════════════════════════════════════════════════════════════════════════
   FAQ — 2-column on desktop
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__faq {
	max-width: 1040px;
	margin: 0 auto 56px;
}
.jl-lp__faq h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 28px;
	color: var(--jl-lp-text);
}
.jl-lp__faq-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 48px;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--jl-lp-border);
}
.jl-lp__faq-item {
	border-bottom: 1px solid var(--jl-lp-border);
	padding: 22px 0;
}
.jl-lp__faq-item dt {
	font-size: 15px;
	font-weight: 700;
	color: var(--jl-lp-text);
	margin: 0 0 10px;
	line-height: 1.4;
}
.jl-lp__faq-item dd {
	font-size: 14px;
	line-height: 1.72;
	color: var(--jl-lp-muted);
	margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   CTA BANNER — solid teal, white button (matches About Us page)
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__cta-banner {
	background-color: var(--jl-lp-teal);
	border-radius: 12px;
	overflow: hidden;
}
.jl-lp__cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 40px 48px;
	flex-wrap: wrap;
}
.jl-lp__cta-text h2 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}
.jl-lp__cta-text p {
	font-size: 15px;
	color: rgba(255,255,255,.85);
	margin: 0;
	max-width: 500px;
}
.jl-lp__cta-btn {
	display: inline-block;
	background-color: #ffffff;
	color: var(--jl-lp-teal);
	font-weight: 700;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background-color .15s, transform .15s, box-shadow .15s;
	box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.jl-lp__cta-btn:hover {
	background-color: #f0fafa;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0,0,0,.14);
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
	.jl-lp__hero-image { flex: 0 0 280px; max-width: 280px; }
	.jl-lp__hero-image img { height: 200px; }
}

@media (max-width: 768px) {
	.jl-lp__hero { padding: 36px 0 32px; }
	.jl-lp__hero-layout { flex-direction: column; align-items: flex-start; gap: 24px; }
	.jl-lp__hero-image { flex: none; max-width: 100%; width: 100%; }
	.jl-lp__hero-image img { height: 180px; width: 100%; }

	.jl-lp__toolbar-count { margin-left: 0; }

	.jl-lp__grid { grid-template-columns: 1fr 1fr; }

	.jl-lp__guide-grid,
	.jl-lp__comparison-list {
		grid-template-columns: 1fr;
	}

	.jl-lp__faq-list { grid-template-columns: 1fr; gap: 0; }

	.jl-lp__cta-inner { padding: 32px 24px; flex-direction: column; text-align: center; }
	.jl-lp__cta-text p { margin: 0 auto; }
}

@media (max-width: 480px) {
	.jl-lp__grid { grid-template-columns: 1fr; }
	.jl-lp__body { padding-top: 24px; padding-bottom: 40px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG GUIDE LINK
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__guide-link {
	margin: 0 0 48px;
	padding: 20px 24px;
	background: var(--jl-lp-teal-light);
	border-left: 4px solid var(--jl-lp-teal);
	border-radius: 0 8px 8px 0;
}
.jl-lp__guide-link-anchor {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--jl-lp-teal);
	text-decoration: none;
}
.jl-lp__guide-link-anchor:hover {
	text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RELATED SERVICES
   ═══════════════════════════════════════════════════════════════════════════ */

.jl-lp__related {
	margin: 0 0 48px;
	padding: 32px 36px;
	background: var(--jl-lp-bg);
	border-radius: var(--jl-lp-radius);
	border: 1px solid var(--jl-lp-border);
}
.jl-lp__related-heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--jl-lp-text);
	margin: 0 0 20px;
}
.jl-lp__related-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.jl-lp__related-link {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--jl-lp-teal);
	border: 1px solid var(--jl-lp-teal);
	border-radius: 6px;
	padding: 8px 16px;
	text-decoration: none;
	transition: background .15s, color .15s;
}
.jl-lp__related-link:hover {
	background: var(--jl-lp-teal);
	color: #fff;
}

@media (max-width: 768px) {
	.jl-lp__related { padding: 24px 20px; }
}
