﻿#property-features h2 {
    margin: 0.5em 0 0.2em;
}

#property-features ul {
    display: grid;
    /* set the columns to auto fill available space and wrap on resize */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

#property-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    min-width: 150px;
    width: 100%;
    box-sizing: border-box;
}

    #property-features li span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        background-size: contain;
        background-position: center;
    }

    #property-features li p {
        margin: 3px 0 0;
        font-size: 1em;
        line-height: 1.2;
        display: inline-flex;
        align-items: center;
    }

.more-features .reveal {
    display: none;
}

.more-features.open .reveal {
    display: flex;
    flex-direction: column;
}

.read-more-btn {
    cursor: pointer;
    color: #5DBDCB;
    font-size: 1.5em;
    margin: 10px 0 0 17px;
}

    .read-more-btn:before {
        left: -0.5em;
        transition: transform 0.2s ease-in-out;
        transform: rotate(225deg);
        border-left: 1px solid #5DBDCB;
        border-top: 1px solid #5DBDCB;
        content: "";
        display: inline-block;
        height: 7px;
        position: relative;
        top: -2px;
        width: 7px;
        margin-right: 7px;
    }

    .read-more-btn.open:before {
        transform: rotate(45deg);
    }

@media (max-width: 560px) {
    #property-features li span {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        background-size: contain;
    }

    #property-features li p {
        font-size: 0.9em;
        line-height: 22px;
        display: inline-flex;
        align-items: center;
    }
}




