/* ACF Repeater Widget Styles */
.acf-repeater-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.repeater-item {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: calc(33.33% - 20px);
    box-sizing: border-box;
}

.repeater-item img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

.repeater-item h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.repeater-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}