.angie-stores-grid {
    display: grid;
    gap: 20px;
}

.angie-store-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: transform 0.3s ease;
}

.angie-store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.angie-store-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.angie-store-content {
    padding: 20px;
}

.angie-store-name {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.angie-store-address, 
.angie-store-phone,
.angie-store-hours {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: #666;
}

.angie-store-website {
    margin: 10px 0 0;
    font-size: 0.9rem;
}

.angie-store-website a {
    color: #0073aa;
    text-decoration: underline;
}

.angie-store-website a:hover {
    text-decoration: none;
}
