﻿.property-configuration-card {
    background-color: #ef913c;
    border-radius: 24px;
    padding: 36px 30px;
    color: #fff;
    text-align: center;
    max-width: 90%;
    margin: 40px auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    font-family: Helvetica Neue;
}

    .property-configuration-card h2 {
        font-size: 1.9rem; /* larger title */
        font-weight: 800;
        margin: 0;
    }

    .property-configuration-card h1 {
        font-size: 2.2rem;
        font-weight: 800;
        margin: 10px 0 28px;
    }

    .property-configuration-card .features {
        display: grid;
        grid-template-columns: repeat(2, minmax(180px, 1fr)); /* 2 columns desktop */
        column-gap: 40px;
        row-gap: 10px;
        margin-bottom: 36px;
        align-items: start;
    }

        .property-configuration-card .features ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .property-configuration-card .features li {
            font-size: 1rem;
            font-weight: 700; /* bold text */
            color: #7e4d4d;
            margin-bottom: 8px;
            position: relative;
            padding-left: 18px;
        }

            .property-configuration-card .features li::before {
                content: "•";
                color: #d4505a;
                position: absolute;
                left: 0;
                font-weight: 700;
            }

.edit-property-configuration-btn {
    background-color: #3b79f6;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0; /* no rounding */
    padding: 14px 0;
    width: 100%; /* full width */
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

    .edit-property-configuration-btn:hover {
        background-color: #d4505a; /* hover color */
        transform: translateY(-1px);
    }

/* Optional: tighten the layout a bit on medium screens */
@media (max-width: 900px) {
    .property-configuration-card .features {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 24px;
        row-gap: 8px;
    }
}

/* Stack to a single column on phones */
@media (max-width: 640px) {
    .property-configuration-card .features {
        grid-template-columns: 1fr; /* 1 column */
        column-gap: 0;
        row-gap: 8px;
    }

        .property-configuration-card .features li {
            font-size: 0.95rem; /* optional: slightly smaller on mobile */
            margin-bottom: 6px;
        }
}