﻿


/* SECTION BACKGROUND */
.properties-section {
    position: relative;
    padding-top: 45px;
    padding-bottom: 40px;
    padding-left: 85px;
    padding-right: 85px;
    background: #000;
    color: #fff; /* Make all text white by default */
}

/* DARK GRADIENT BOTTOM */
.section-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient(
        to bottom,
        rgba(var(--primary-bg-rgb),0) 0%,
        rgba(var(--primary-bg-rgb),0.7) 60%,
        var(--primary-bg) 100%
    );
}



.section-subtitle {
    font-size: 12pt;
    color: #fff; /* Override to white */
}







.slider-arrow img {
    display: block;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.auction-badge {
    position: absolute;
    top: 12px;
    left:0px;
    z-index: 4;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18pt;
    color: #2a5135;
    background: rgba(204, 204, 204, 0.8);
    backdrop-filter: blur(4px);
    padding: 0px 15px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    user-select: none;
    pointer-events: none;
}
.property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-footer {
    margin-top: auto;
}