.lp-archive, .lp-single {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(16px, 3vw, 40px);
    box-sizing: border-box;
}

.lp-archive-title {
    font-size: clamp(24px, 3vw, 40px);
    margin: 0 0 24px;
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

@media (max-width: 900px) {
    .lp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .lp-grid { grid-template-columns: 1fr; }
}

.lp-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    background: #fff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.lp-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #e8e8e8;
    background-size: cover;
    background-position: center;
}

.lp-card-body {
    padding: 16px;
}

.lp-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-card-address {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.lp-card-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #444;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.lp-card-price {
    font-size: 17px;
    font-weight: 700;
    color: #ee4041;
}

/* Single property */

.lp-single {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(20px, 3vw, 48px);
    align-items: start;
}

@media (max-width: 900px) {
    .lp-single { grid-template-columns: 1fr; }
}

.lp-single-gallery-main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.lp-single-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.lp-single-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.lp-single-title {
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 8px;
    line-height: 1.25;
}

.lp-single-address {
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.lp-single-price {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #ee4041;
    margin-bottom: 20px;
}

.lp-single-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f7f7f7;
    border-radius: 10px;
}

.lp-meta-item {
    display: flex;
    flex-direction: column;
}

.lp-meta-label {
    font-size: 12px;
    color: #888;
}

.lp-meta-value {
    font-size: 16px;
    font-weight: 600;
}

.lp-single-content {
    font-size: 15px;
    line-height: 1.7;
}

.lp-single-content img {
    max-width: 100%;
    height: auto;
}
