.egh-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.egh-card {
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.egh-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.contact-btn {
    background: #e91e63;
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    margin-top: 5px;
    border-radius: 4px;
}
#egh_pagination {
    text-align: center;
    margin: 20px 0;
}
.egh-page-btn {
    padding: 5px 10px;
    margin: 2px;
    background: #2196F3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.egh-page-btn.active {
    background: #f44336;
}
.egh-page-btn:hover {
    background: #f44336;
}
