.teaser-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 40px 0;
}

.teaser-box {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-left: 5px solid #ff6600;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    padding: 20px;
    width: calc(50% - 10px); /* zwei Spalten */
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teaser-box:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.teaser-icon {
    font-size: 0.95em;
    line-height: 1.4;
    color: #ff6600;
    margin-bottom: 10px;
}

.teaser-box h3 {
    font-size: 1.1em;
    margin: 0 0 10px;
    color: #1e1e1e;
}

.teaser-box p {
    font-size: 0.95em;
    color: #444;
    line-height: 1.4;
}

.teaser-icon-img {
    font-size: 0.95em;
    line-height: 1.4;
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    display: block;
}

/* Mobile Anpassung */
@media (max-width: 800px) {
    .teaser-box {
        width: 100%;
    }
}
