/* */
.uebersicht-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.uebersicht-card {
    display: block;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    border: 1px solid #e2e2e2;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
	padding: 5px;
}

.uebersicht-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
	border-radius: 8px;
}

.uebersicht-card h3 {
    font-size: 1.3em;
    margin: 15px;
	margin-left: 0;
	padding-left: 0;
}

.uebersicht-card p {
    margin: 0 15px 15px;
    font-size: 0.95em;
    line-height: 1.45;
}

.uebersicht-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
