.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: 20px;
}

.product-info-tile {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    font-size: 12pt; 
    padding: 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;
}

/* Verhindert, dass Bilder oder Iframes in Kacheln überlaufen, 
   und zwingt die Map auf volle Breite (100%) */
.product-info-tile img,
.product-info-tile iframe {
    max-width: 100%;
    width: 100% !important;
    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;
    }
}
