 .property-card {
                margin-bottom: 40px;
            }
            /* OUTER CARD */
            .property-content {
                padding: 24px 28px;

                /* NEW */
                display: flex;
                flex-direction: column;
                justify-content: center;
                /* vertical center */
                height: 100%;
            }


            .property-grid {
                display: block;
                border: 1px solid #dfdfdf;
                border-radius: 12px;
            }

            /* =========================
     MOBILE IMAGE LAYOUT FIX
     ========================= */
            .property-left {
                display: grid;
                grid-template-rows: 2.2fr 1fr;
                /* hero + thumbs */
                gap: 5px;
            }

            .hero-img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .thumb-col {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 5px;
            }

            .thumb {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                background: #f1f3f5;
            }

            /* RIGHT CONTENT */
            .property-content {
                padding: 18px;
            }

            .title-card {
                font-size: 26px;
                line-height: 1.15;
                font-weight: 800;
                margin: 0 0 8px 0;
                letter-spacing: -0.02em;
            }

            .title-card a {
                font-size: 26px;
                line-height: 1.15;
                font-weight: 800;
                margin: 0 0 8px 0;
                letter-spacing: -0.02em;
            }

            .address {
                display: flex;
                align-items: center;
                gap: 10px;
                color: var(--muted);
                font-size: 14px;
                margin-bottom: 18px;
            }

            .pc-meta {
                display: grid;
                gap: 12px;
                margin-bottom: 12px;
                font-size: 14px;
            }

            .pc-meta .label {
                font-weight: 700;
                color: #121826;
                margin-right: 6px;
            }

            .pc-price {
                display: flex;
                align-items: center;
                gap: 8px;
            }
            
            .pc-price .bi {
                color: #121826;
                font-size: 16px;
            }



            .desc {
                font-size: 14px;
                margin: 0 0 16px 0;
            }

            .divider-line {
                border-top: 1px solid #dfdfdf;
                margin: 12px 0 20px;
            }

            .btn-row {
                display: flex;
                gap: 14px;
                flex-wrap: wrap;
            }

            .btn-soft {
                background: #f3f6fb;
                border: 1px solid #e6edf7;
                color: #0b1320;
                padding: 10px 18px;
                border-radius: 10px;
                font-weight: 500;
                font-size: 14px;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                text-decoration: none;
                 transition: all 0.25s ease;
            }

            .btn-soft:hover {
                background: #223850;
                color: #fff;
            }

            /* =========================
     DESKTOP (UNCHANGED STYLE)
     ========================= */
            @media (min-width: 992px) {
                .property-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                }

                .property-left {
                    grid-template-columns: 1fr 0.35fr;
                    grid-template-rows: none;
                }

                .thumb-col {
                    grid-template-columns: 1fr;
                    grid-template-rows: repeat(3, 1fr);
                }

                .hero-img {
                    min-height: 360px;
                    border-radius: 10px 0 0 10px;
                }

                .property-content {
                    padding: 24px 28px;
                    border-top: none;
                }

                .title-card {
                    font-size: 32px;
                }
                
                .title-card a {
                    font-size: 32px;
                
            }
            }

            @media (max-width: 992px) {
                .hero-img {
                    border-radius: 12px  12px 0 0;
                }
                .thumb-col {
                    height: 100px;
                }
                .property-left {
                    grid-template-rows: 2.2fr 0.8fr;
                }
                
            }

            @media (max-width: 767px) {
                
                .btn-row {
                    display: grid;
                }
            }