﻿.property-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
    margin-bottom: 3em;
    flex-wrap: wrap; /* allows stacking if needed */
}

.property-image {
    flex: 1 1 40%;
    max-width: 600px;
}

    .property-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 5px;
    }

.property-content {
    flex: 1 1 50%;
    text-align: left;
}

.property-card h3 {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
}

.property-card p {
    font-size: 1em;
    margin-bottom: 1em;
}

.property-card .button {
    font-size: 0.9em;
}
@media screen and (max-width: 480px) {
    .property-card {
        flex-direction: column;
        text-align: center;
    }

    .property-content {
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    .property-card {
        padding: 0 1em;
    }
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

    .table-responsive table {
        width: 100%;
        min-width: 600px; /* Adjust as needed for your column count */
        border-collapse: collapse;
    }

@media (max-width: 480px) {
    .table-responsive {
        overflow-x: auto;
    }

        .table-responsive table {
            min-width: 480px;
        }
}
