.projekte-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 24px 0;
    align-items: stretch;
}

@media (max-width: 768px) {
    .projekte-grid {
        grid-template-columns: 1fr;
    }
}

.projekt-karte {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
}

.projekt-karte:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.projekt-karte img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    background: #f0f0f0;
}

.projekt-karte-kein-bild {
    width: 100%;
    height: 180px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaaaaa;
    font-size: 14px;
}

.projekt-karte-inhalt {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.projekt-karte-inhalt h2 {
    font-size: 20px;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.projekt-karte-inhalt h2 a {
    color: #222222;
    text-decoration: none;
}

.projekt-karte-inhalt h2 a:hover {
    color: #0066cc;
}

.projekt-datum {
    font-size: 13px;
    color: #888888;
    margin-bottom: 14px;
}

.projekt-karte-inhalt p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0 0 18px 0;
}

.projekt-mehr-link {
    display: inline-block;
    padding: 10px 18px;
    background: #0066cc;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    margin-top: auto;
    transition: background 0.2s ease;
}

.projekt-mehr-link:hover {
    background: #0052a3;
    color: #ffffff !important;
}