@media (min-width: 980px) {
}

.ak-land-archive__header {
	max-width: 760px;
}

.ak-land-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.4vw, 28px);
}

.ak-land-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(58, 124, 165, 0.2);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(16, 35, 51, 0.08);
	transition:
		transform 0.28s ease,
		border-color 0.28s ease,
		box-shadow 0.28s ease;
}

.ak-land-card:hover,
.ak-land-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(58, 124, 165, 0.5);
	background: linear-gradient(180deg, #fff 0%, #f6fbfd 100%);
	box-shadow: 0 18px 44px rgba(16, 35, 51, 0.13);
}

.ak-land-card--sold {
	filter: grayscale(0.75);
	opacity: 0.72;
}

.ak-land-card__image,
.ak-land-detail__visual {
	position: relative;
	display: block;
	background: #eef3f5;
}

.ak-land-card__image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.ak-land-card__image-img,
.ak-land-detail__main-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ak-land-detail__main-img {
	object-fit: contain;
	object-position: center center;
	background: #eef3f5;
}

.ak-land-card__image-img {
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}

.ak-land-card:hover .ak-land-card__image-img,
.ak-land-card:focus-within .ak-land-card__image-img {
	transform: scale(1.035);
	filter: brightness(1.04) saturate(1.03);
}

.ak-land-card__placeholder,
.ak-land-detail__placeholder {
	display: grid;
	min-height: 100%;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(58, 124, 165, 0.08)),
		#eef3f5;
	color: #6c7882;
	font-weight: 800;
	text-decoration: none;
}

.ak-land-visual-tags {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ak-land-visual-tags .ak-land-label,
.ak-land-visual-tags .ak-land-condition-badge {
	position: static;
}

.ak-land-visual-controls {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 3;
	display: inline-flex;
	gap: 6px;
}

.ak-land-visual-controls button {
	display: inline-grid;
	width: 36px;
	height: 36px;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.68);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.84);
	color: #102333;
	font-size: 1.35rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(16, 35, 51, 0.16);
	backdrop-filter: blur(6px);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ak-land-visual-controls button:hover,
.ak-land-visual-controls button:focus-visible {
	border-color: rgba(16, 35, 51, 0.28);
	background: rgba(16, 35, 51, 0.9);
	color: #fff;
	transform: translateY(-1px) scale(1.02);
}

.ak-land-card__body {
	display: grid;
	gap: 12px;
	padding: clamp(16px, 2.3vw, 22px);
}

.ak-land-card .work-card__more {
	justify-self: end;
	margin-left: auto;
}

.ak-land-card:hover .work-card__more,
.ak-land-card:focus-within .work-card__more {
	background: #102333;
	color: #fff !important;
	transform: translateY(-1px);
}

.ak-land-card h2 {
	margin: 0;
	font-size: clamp(1.1rem, 1.7vw, 1.35rem);
	line-height: 1.45;
}

.ak-land-card h2 a {
	color: inherit;
	text-decoration: none;
}

.ak-land-card__catch {
	margin: 0;
	color: var(--color-muted);
	line-height: 1.75;
}

.ak-land-card__facts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.ak-land-card__facts div,
.ak-land-summary div {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 4px;
	min-width: 0;
	padding: 10px;
	border: 1px solid var(--color-line);
	border-radius: 6px;
	background: var(--color-paper);
	transition:
		background-color 0.24s ease,
		border-color 0.24s ease;
}

.ak-land-card__facts div:first-child {
	border-color: rgba(16, 35, 51, 0.22);
	background: linear-gradient(135deg, #102333, #20394f);
}

.ak-land-card__facts div:first-child span,
.ak-land-card__facts div:first-child strong {
	color: #fff;
}

.ak-land-card:hover .ak-land-card__facts div,
.ak-land-card:focus-within .ak-land-card__facts div {
	border-color: rgba(58, 124, 165, 0.24);
	background: #edf6f9;
}

.ak-land-card:hover .ak-land-card__facts div:first-child,
.ak-land-card:focus-within .ak-land-card__facts div:first-child {
	border-color: rgba(16, 35, 51, 0.22);
	background: linear-gradient(135deg, #102333, #20394f);
}

.ak-land-card:hover .ak-land-card__facts div:first-child span,
.ak-land-card:hover .ak-land-card__facts div:first-child strong,
.ak-land-card:focus-within .ak-land-card__facts div:first-child span,
.ak-land-card:focus-within .ak-land-card__facts div:first-child strong {
	color: #fff;
}

.ak-land-card:hover .ak-land-label:not(.ak-property-label--fee-free):not(.ak-property-label--deposit-free):not(.ak-property-label--condition):not(.ak-property-label--closed),
.ak-land-card:focus-within .ak-land-label:not(.ak-property-label--fee-free):not(.ak-property-label--deposit-free):not(.ak-property-label--condition):not(.ak-property-label--closed) {
	background: #20394f;
}

.ak-land-card__facts span,
.ak-land-summary span {
	display: block;
	margin-bottom: 0;
	color: #60717e;
	font-size: 0.74rem;
	font-weight: 900;
	line-height: 1.35;
	white-space: normal;
}

.ak-land-card__facts strong,
.ak-land-summary strong {
	color: #102333;
	font-size: clamp(0.98rem, 1.6vw, 1.2rem);
	line-height: 1.35;
	word-break: normal;
	overflow-wrap: anywhere;
	text-align: left;
}

.ak-land-card__facts div {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: baseline;
	column-gap: 8px;
	row-gap: 0;
	min-height: 0;
	padding: 7px 10px;
}

.ak-land-card__facts span {
	white-space: nowrap;
}

.ak-land-card__facts strong {
	min-width: 0;
	overflow-wrap: anywhere;
	text-align: right;
}

.ak-land-card__meta,
.ak-land-mini-table {
	display: grid;
	gap: 0;
	margin: 0;
}

.ak-land-card__meta div,
.ak-land-mini-table div {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 14px;
	padding: 9px 0;
	border-top: 1px solid rgba(58, 124, 165, 0.15);
}

.ak-land-card__meta dt,
.ak-land-mini-table dt {
	color: #60717e;
	font-size: 0.84rem;
	font-weight: 900;
}

.ak-land-card__meta dd,
.ak-land-mini-table dd {
	margin: 0;
	line-height: 1.55;
	word-break: normal;
	overflow-wrap: break-word;
}

.ak-land-empty {
	padding: clamp(28px, 5vw, 56px);
	border: 1px solid rgba(58, 124, 165, 0.2);
	border-radius: 8px;
	background: #fff;
}

@media (max-width: 900px) {
	.ak-land-card-grid {
		grid-template-columns: 1fr;
	}
}
