/* TEARA Umfeld-Score – Frontend Gauge (nach HQS-Spezifikationen) */

.teara-gauge-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    gap: 4px;  /* exakt wie HQS: Gap SVG zu Label = 4px */
}

.teara-gauge-title {
    font-size: 10px;   /* fest 10px wie HQS Label-Schrift */
    font-weight: 600;
    color: #20603D;
    margin-bottom: 0;
    text-align: center;
}

.teara-gauge-svg-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.teara-gauge-svg-wrap svg {
    display: block;
}

.teara-gauge-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    line-height: 1;
    pointer-events: none;
}

.teara-gauge-value {
    display: block;
    font-weight: 700;
    color: #333;
    /* Schriftgröße wird inline per PHP gesetzt: 25% der SVG-Größe */
}

/* Label unter dem Symbol: fest 10px wie HQS */
.teara-gauge-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.teara-gauge-none {
    font-size: 12px;
    color: #aaa;
    text-align: center;
    padding: 10px;
}
