/*** teaser list for index page ***/
a.listItemLink:hover
{
    color: var(--defaultColor);
}
.tleImageWrapper
{
    position: relative;
}

.tleImage img
{
    max-width: 100%;
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0,0,0,0.3);
    border-radius: 2rem;
    transition: all 0.8s ease-in-out;
}
.listingInfo
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-inline: 1rem;
    padding-block: 1rem;
    background-color: rgba(255,255,255,0.5);
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    overflow: clip;

    transition: background-color 0.8s ease-in-out;
}
.tleName,
.tlePrice
{
    text-align: center;
}

a.listItemLink:hover img
{
    box-shadow: 0.5rem 0.5rem 0.5rem rgba(0,0,0,0.6);
}

a.listItemLink:hover .listingInfo
{
    background-color:  rgba(255,255,255,0.8);
}

    /*** detail page ***/
.featureImageWrapper img
{
    max-width: 150px;
}

.tx_fsndrealtyList th,
.tx_fsndrealtyList td
{
    text-align: center;
}

.tx_fsndrealtyList tr:nth-child(even)
{
    background-color: #efefef;
}
