.cbk-contact-card {
    width: 100%;
    margin: 0 auto 40px;
	padding: 32px;
    background-color: #fff;
    display: flex;
    position: relative;
    overflow: hidden;
	gap: 24px 32px;
}

.cbk-contact-image {
    width: 320px;
    flex-shrink: 0;
}

.cbk-contact-image img {
    width: auto;
    height: 100% !important;
    object-fit: cover;
}

.cbk-contact-info {
    position: relative;
    flex-grow: 1;
}

.cbk-contact-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.cbk-contact-position {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cbk-contact-details {
    margin-top: 20px;
}

.cbk-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.cbk-contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #8B1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbk-contact-label {
    font-weight: bold;
    margin-right: 5px;
    color: #333;
}

.cbk-contact-value {
    color: #666;
}

.cbk-contact-search-button{
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #8B1A1A;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.cbk-contact-search-button:hover {
    background-color: #8B1A1A;
    color: #fff;
}

.cbk-contact-search-button-icon {
    margin-left: 8px;
}

.cbk-contact-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://kragler-immobilien.cob-staging.de/wp-content/uploads/2021/10/Gruppe-504.png');
    background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cbk-contact-card {
        flex-direction: column;
    }
    
    .cbk-contact-image {
        width: 100%;
        height: 300px;
    }
    
    .cbk-contact-background {
        display: none;
    }
}