.custom-user-grid .user-box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
}
.custom-user-grid .elementor-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
}
.custom-user-grid .elementor-cta:hover {
    transform: translateY(-5px);
}
.custom-user-grid .elementor-cta__image img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    border-radius: 10px;
}
.custom-user-grid .elementor-cta__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.custom-user-grid .elementor-cta__button-wrapper {
    margin-top: 10px;
}
.custom-user-grid .elementor-cta__button {
    display: inline-block;
    padding: 10px 20px;
    background: #cd2727;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}
.custom-user-grid .elementor-cta__button:hover {
    background: #a51f1f;
}
@media (min-width: 768px) {
    .custom-user-grid .elementor-cta {
        max-width: 280px;
    }
}
@media (min-width: 1024px) {
    .custom-user-grid .elementor-cta {
        max-width: 320px;
    }
}
