/**
 * ACF Frontend Display Styles
 * Version: 1.0.0
 */

/* Field Display */
.acf-field-label {
    font-weight: bold;
    margin-right: 5px;
}

.acf-field-value {
    display: inline-block;
}

/* Group Display */
.acf-group {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.acf-group-item {
    margin-bottom: 10px;
    padding: 8px 0;
}

.acf-group-item:last-child {
    margin-bottom: 0;
}

.acf-group-label {
    font-weight: bold;
    color: #333;
    margin-right: 8px;
}

.acf-group-value {
    color: #555;
}

/* Repeater Display */
.acf-repeater {
    margin: 20px 0;
}

.acf-repeater-row {
    margin-bottom: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.acf-repeater-row:last-child {
    margin-bottom: 0;
}

.acf-repeater-item {
    margin-bottom: 8px;
    padding: 5px 0;
}

.acf-repeater-item:last-child {
    margin-bottom: 0;
}

.acf-repeater-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 8px;
}

.acf-repeater-value {
    color: #34495e;
}

/* Image Display */
.acf-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
    border-radius: 4px;
}

/* Template Function Output */
.afd-field {
    margin: 10px 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .acf-group,
    .acf-repeater-row {
        padding: 10px;
    }
    
    .acf-group-item,
    .acf-repeater-item {
        display: block;
    }
    
    .acf-group-label,
    .acf-repeater-label {
        display: block;
        margin-bottom: 4px;
    }
}
