.ak-property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    border-radius: var(--ak-radius-lg);
    background: var(--ak-color-neutral-bg);
    transition: box-shadow 0.2s ease;
}

.ak-property-card:hover,
.ak-property-card:focus-within {
    box-shadow: 0 8px 28px rgba(21, 32, 40, 0.12);
}

.ak-property-card__media {
    overflow: hidden;
    border-radius: var(--ak-radius-lg);
}

.ak-property-card__media-link {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--ak-radius-lg);
    background: var(--ak-color-surface);
}

.ak-property-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.7s ease;
}

.ak-property-card:hover .ak-property-card__image,
.ak-property-card:focus-within .ak-property-card__image {
    transform: scale(1.08);
}

.ak-property-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: var(--ak-color-surface);
}

.ak-property-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 0 var(--ak-space-md) var(--ak-space-md);
}

.ak-property-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--ak-space-sm);
    margin-top: var(--ak-space-md);
    color: var(--ak-color-ink-muted);
    font-family: var(--ak-font-body);
    font-size: var(--ak-font-size-label);
    line-height: 1.3;
}

.ak-property-card__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.ak-property-card__ref {
    flex-shrink: 0;
}

.ak-property-card__title {
    margin: var(--ak-space-sm) 0 0;
    min-height: calc(1.35em * 2);
    color: var(--ak-color-ink);
    font-family: var(--ak-font-display);
    font-size: var(--ak-font-size-title);
    font-weight: 600;
    line-height: 1.35;
}

.ak-property-card__title a {
    color: inherit;
    text-decoration: none;
}

.ak-property-card__title a:hover,
.ak-property-card__title a:focus-visible {
    color: var(--ak-color-primary-deep);
}

.ak-property-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--ak-space-md);
    margin-top: auto;
    padding-top: var(--ak-space-md);
}

.ak-property-card__specs {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--ak-space-md);
    color: var(--ak-color-ink-muted);
    font-family: var(--ak-font-body);
    font-size: var(--ak-font-size-ui);
    line-height: 1.3;
}

.ak-property-card__spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ak-property-card__ico {
    flex-shrink: 0;
    color: currentColor;
}

.ak-property-card__spec .ak-property-spec-icon {
    width: 16px;
    height: 16px;
}

.ak-property-card__prices {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-end;
    gap: 0.15rem;
}

.ak-property-card__price-old {
    color: var(--ak-color-ink-muted);
    font-family: var(--ak-font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-decoration: line-through;
    white-space: nowrap;
}

.ak-property-card__price {
    color: var(--ak-color-ink);
    font-family: var(--ak-font-display);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.ak-property-card--skeleton .ak-property-card__title,
.ak-property-card--skeleton .ak-property-card__meta,
.ak-property-card--skeleton .ak-property-card__specs,
.ak-property-card--skeleton .ak-property-card__price,
.ak-property-card--skeleton .ak-property-card__price-old {
    color: var(--ak-color-ink-muted);
}

@media (prefers-reduced-motion: reduce) {
    .ak-property-card__image {
        transition: none;
        transform: none;
    }

    .ak-property-card:hover .ak-property-card__image,
    .ak-property-card:focus-within .ak-property-card__image {
        transform: none;
    }
}
