/* =============================================================================
   G-Tech: Produkt Quick-View Block  (gtech-qv-block)
   ============================================================================= */

/* ── Basis-Reset für das DL-Element ─────────────────────────────────────── */
.gtech-qv-block dl,
.gtech-qv-block dt,
.gtech-qv-block dd {
    margin: 0;
    padding: 0;
}

/* ── Liste der Zeilen ────────────────────────────────────────────────────── */
.gtech-qv__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ── Einzelne Zeile: Label | Wert ────────────────────────────────────────── */
.gtech-qv__row {
    display: grid;
    grid-template-columns: minmax(120px, 30%) 1fr;
    align-items: baseline;
    gap: 0 1.5rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.gtech-qv__row:last-child {
    border-bottom: none;
}

/* ── Label (linke Spalte) ────────────────────────────────────────────────── */
.gtech-qv__label {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
    white-space: nowrap;
    padding-right: 0.5rem;
}

/* ── Wert (rechte Spalte) ────────────────────────────────────────────────── */
.gtech-qv__value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Links innerhalb von Taxonomie-Werten */
.gtech-qv__value a {
    color: var(--kss-secondary-color, #006bb3);
    text-decoration: none;
}

.gtech-qv__value a:hover {
    text-decoration: underline;
}

/* ── Editor-Vorschau-Hint ────────────────────────────────────────────────── */
.gtech-qv-block--preview .gtech-qv__hint {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 0.75rem;
    font-style: italic;
    border-top: 1px dashed #ddd;
    padding-top: 0.5rem;
}

.gtech-qv-block--preview .gtech-qv__list {
    opacity: 0.6;
}
