.property-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 30px;
    justify-content: flex-start;
}

.property-item {
    width: calc(33.333% - 20px);
}

.property-title {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.property-title a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Droid Sans', sans-serif !important;
    font-weight: normal !important;
}

.property-title a:hover {
    color: #C9E924;
}

.property-image-container {
    position: relative;
    overflow: hidden;
}

.property-image-container .base-link img {
    display: block;
    width: 100%;
    height: 200px;
    transition: transform 0.2s ease;
}

.property-item:hover .property-image-container .base-link img {
    transform: scale(1.05);
}

.property-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.property-item:hover .property-hover-overlay {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hover-content-wrapper {
    width: 100%;
    color: #ffffff;
}

.hover-excerpt {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 300 !important;
    line-height: 20px;
    opacity: 1;
    transform: translateX(120px);
    transition: transform 0.2s ease 0.2s, opacity 0.2s ease 0.2s;
}

.property-item:hover .hover-excerpt {
    opacity: 1;
    transform: translateX(0);
}

.hover-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2196f3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Droid Sans', sans-serif !important;
    font-weight: normal !important;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.2s ease 0.3s, opacity 0.2s ease 0.3s, background-color 0.3s;
}

.property-item:hover .hover-button {
    opacity: 1;
    transform: translateY(0);
}

.hover-button:hover {
    background-color: #C9E924;
}

@media (max-width: 768px) {
    .property-grid-container {
        gap: 20px 20px;
    }
    .property-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .property-item {
        width: 100%;
    }
}