.wix-repeater-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.wix-repeater-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
a.wix-repeater-card:hover, .wix-repeater-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.wix-repeater-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4a5a;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
}
.wix-repeater-image-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.wix-repeater-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.wix-repeater-card:hover .wix-repeater-image-wrap img {
    transform: scale(1.05);
}
.wix-repeater-icon-wrap {
    padding: 30px;
    text-align: center;
    font-size: 40px;
    color: #555;
}
.wix-repeater-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.wix-repeater-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
}
.wix-repeater-desc {
    margin-bottom: 20px;
    color: #666;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.5;
}
.wix-repeater-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s ease;
    align-self: flex-start;
}
.wix-repeater-btn:hover {
    background: #005177;
    color: #fff;
}
a.wix-repeater-card .wix-repeater-btn {
    pointer-events: none;
}
