﻿/* Ensure all cards have the same width and height */
.fixed-card {
    width: 320px; /* or any fixed width you prefer */
    min-height: 500px; /* adjust based on your design */
    display: flex;
    flex-direction: column;
}

/* Card hover effect: shadow only */
.item-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .item-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    }

/* Image styling */
.item-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}


/* Image wrapper keeps consistent aspect (Bootstrap ratio) */
.item-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
}

/* Larger image: fills wrapper and preserves crop */
.item-image-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Gradient button */
.btn-gradient {
    background: #235ea0;
    border: 0;
    color: #fff;
    display: inline-block;
    text-align: center;
    min-width: 120px;
    padding: 12.5px 12px;
    font-size: 16px;
    line-height: 20px;
    font-family: &quot;
    Poppins Bold&quot;
    ,sans-serif;
    border-radius: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: auto;
    text-decoration: none;
    text-transform: uppercase;
}

    .btn-gradient:hover {
        background: #247f10;
    }


/* Abandoned flag badge */
.flag-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

/* Yes/No styles */
.flag-yes {
    background-color: #ffe9e9;
    color: #c21807; /* deep red */
    border-color: #f5b5b5;
}

.flag-no {
    background-color: #e9f7ff;
    color: #0b6fa4; /* deep blue */
    border-color: #b5def5;
}
