:root {
    --bez-bg: #1f1f1f;
    --bez-item-bg: #2b2b2b;
    --bez-border: #3a3a3a;

    --bez-text: #757575;
    --bez-muted: #b5b5b5;

    --bez-accent: #4c8998;
    --bez-action: #5f9fb0;
    --bez-action-soft: #3f6f7c;

    --bez-gap: 12px;
}

/* Kategorie-Wrapper */
.beziehungen-profil-kategorie {
margin-bottom:20px;
	text-align:justify;
}

/* Kategorie-Überschrift */
.beziehungen-profil-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--bez-accent);
    border-bottom: 1px solid var(--bez-border);
    padding-bottom: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Liste */
.beziehungen-profil-liste {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bez-gap);
}

.beziehung-item {
    width: 100%;
	background:var(--bez-bg);
	padding:10px;
	box-sizing:border-box;
}

.beziehung-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.beziehung-status {
    color: var(--accent);
    font-weight: normal;
}

.beziehung-text {
    line-height: 1.5;
	color:var(--bez-text);
}

.beziehung-bild {
    float: right;
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin: 2px 0 6px 12px;
}

@media (max-width: 900px) {
    .beziehungen-profil-liste {
        grid-template-columns: 1fr;
    }
}

.beziehungen-tab-content {
    display: none;
}

.beziehungen-tab-content.active {
    display: block;
}
