.product-info-tiles-wrapper {
    width: 100%;
}

.product-info-tiles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    width: 100%;
    align-items: start;
}

.wcpit-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-info-tile {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    font-size: 12pt; 
    padding: 10px 15px;
    border-radius: 5px;
}

.product-info-tile__content {
    width: 100%;
}

.product-info-tile__text {
    line-height: 1.4;
}

.product-info-tile__text p {
    margin-bottom: 0.5em;
}
.product-info-tile__text p:last-child {
    margin-bottom: 0;
}

/* Spezifische Anforderung: Eigener Zeilenabstand für "Beschreibung" */
.product-info-tile--beschreibung .product-info-tile__text {
    line-height: 1.8;
}

/* --- GRAUE INAKTIV-KACHELN --- */
.product-info-tile.product-info-tile--grayed-out {
    background-color: #fcfcfc !important;
    border: 1px solid #f4f4f4 !important;
    color: #cdcdcd !important;
}

/* Überschreibt alle Inline-Farben innerhalb der ausgegrauten Kachel */
.product-info-tile.product-info-tile--grayed-out * {
    color: #cdcdcd !important;
}

/* Verhindert, dass Bilder oder Iframes in Kacheln überlaufen.
   Die Breite wird nicht erzwungen ueberschrieben, 
   damit die Inline-Styles der neuen Map greifen. */
.product-info-tile img,
.product-info-tile iframe {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    margin-top: 10px;
}

/* Responsivität Mobile */
@media (max-width: 768px) {
    .product-info-tiles-grid {
        grid-template-columns: 1fr;
    }
}
