.objektlist {
    padding-top: 180px;
	padding-bottom: 70px;
}

.objektlist .object-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
	position: relative;
}

.objektlist .object-item {
    width: calc(33.333% - 20px); /* Für drei Spalten */
    background-color: transparent !important;

    overflow: hidden;
    transition: transform 0.3s ease;
	border-radius: 35px;
	position: relative;
	height: 450px;
}

.objektlist .object-item:hover {
    transform: translateY(-10px);
}

.objektlist .object-image {
    position: relative;
    overflow: hidden;
	height: 70%;
}

.objektlist .object-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover; /* Bilder werden gleichmäßig skaliert */
    display: block;
	border-radius: 35px;
}

.objektlist .object-link {
    position: absolute;
    top: 0;
    height: 50px; /* Höhe angepasst, damit der Farbverlauf deutlicher sichtbar ist */
    width: 100%;
    color: #fff;
    padding: 10px 0 !important;
    text-decoration: none;
    border-radius: 0; /* Kein Radius */
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    background: linear-gradient(to bottom, rgba(var(--color-1), 0.8) 0%, rgba(var(--color-1), 0) 100%) !important; /* Farbverlauf */
    font-size: 16px;
    text-align: center;
}



.objektlist .object-link:hover {
    background-color: rgba(0, 61, 128, 0.9);
}

.objektlist .object-info {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--color-1), 1);
    width: 65%;
    position: absolute;
    bottom: 40px;
    left: 50%; /* Positioniert horizontal mittig */
    transform: translate(-50%, 0); /* Verschiebt den Mittelpunkt des Elements */
    border-radius: 25px;
    color: #FFF !important;
    flex-direction: column;
    gap: 5px;
    z-index: 9;
}


.object-info span {
	text-transform: uppercase;
	color:#FFF !important;
	font-size: 16px !important;
}
.object-info p {
	color:#FFF !important;
	font-size: 20px !important;
	padding-bottom: 0px !important;
	margin-bottom: 0px !important;
}

.objektlist .object-info h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
	color:#FFF;
	text-transform: none;
}

.objektlist .object-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.objektpark {
	padding-top:40px;
	padding-bottom: 0px !important;
}

body.page-id-340 .objektlist {
	padding-top:50px;
}

@media only screen and (max-width: 767px) {
	
	.objektlist .object-list {
    flex-direction: column;
}
	
    .objektlist .object-item {
        width: 100% !important;
    }

	
}
