.developer-grid-style {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 32px;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.developer-grid-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0);
}

/* Add gap between columns */
.row {
    margin-left: -16px;
    margin-right: -16px;
}

.row > div[class*="col-"] {
    padding-left: 16px;
    padding-right: 16px;
}

/* Fixed height elements */
.listing-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.listing-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.developer-logo-wrapper {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.developer-logo {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.developer-logo img {
    width: 100%;
}

.developer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.developer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bottom-grid {
    padding: 35px 20px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.listing-content {
    margin-bottom: auto;
}

.listing-extra-info {
    margin-top: auto;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 12px 15px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 10px;
}