.location-card {
    background-color: #fff;
    border: none;
}

.location-card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #f0f0f0; 
}

.location-card-image-wrapper img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-link-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #212529;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.location-card-image-wrapper:hover .map-link-btn {
    opacity: 1;
}

.location-card-image-wrapper:hover img {
    transform: scale(1.05);
}

.location-card-body {
    padding-top: 1rem;
}

.location-icon {
    color: #dc3545;
    margin-right: 0.5rem;
    font-size: 1.25rem;
}
