/* ---------------- Kästchen für Schlagwörter --------------------------*/
.trait-box {
    display: inline-block;
    background-color: var(--col2);
	color: var(--col4);
	font-family: var(--title);
    font-size: 15px;
	font-weight: bold;
    text-align: center;
    padding: 10px 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin: 5px 2px;
}

.traits-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* ------------------------------- TITEL ANFANG -------------------------------*/
.proftitle1 {
    font-family: 'Allura', cursive;
    line-height: 100%;
    letter-spacing: 0px;
    font-size: 60px;
    text-align: center;
	margin-bottom: 15px;
	margin-top:5px;
	clear: both;
}

		.proftitle1 span {
			color: var(--highlight); 			
			font-family: 'BenchNine', sans-serif;
			font-size: 30px;
			display: flex; 
			align-items: center;
			justify-content: center; 
			gap: 15px; 
			margin: 0 10px 0; 
			line-height: 1.2;
		}

		.proftitle1 span::before,
		.proftitle1 span::after {
			content: ""; 
			flex-grow: 1; 
			height: 1px; 
			background-color: var(--highlight); 
			margin: 0 10px; 
		}

.proftitle2 {
    font-family: 'Allura', cursive;
    line-height: 100%;
    letter-spacing: 0px;
    font-size: 60px;
    text-align: left;
	margin-bottom: 15px;
	margin-top:5px;
	clear: both;
}

		.proftitle2 span {
			font-family: 'BenchNine', sans-serif;
			color: var(--highlight);
			font-size: 30px;
			display: flex;
			align-items: center;
			justify-content: flex-start;
			gap: 15px; 
			line-height: 1.2;
		}

		.proftitle2 span::after {
			content: "";
			flex-grow: 1;
			height: 1px;
			background-color: var(--highlight);
			margin-left: 10px; 
		}

.proftitle3 {
    font-family: 'Allura', cursive;
    line-height: 100%;
    letter-spacing: 0px;
    font-size: 60px;
    text-align: right;
	margin-bottom: 15px;
	margin-top:5px;
	clear: both;
}
		.proftitle3 span {
			font-family: 'BenchNine', sans-serif;
			color: var(--highlight);
			font-size: 30px;
			display: flex;
			align-items: center;
			justify-content: flex-end;
			gap: 15px;
			line-height: 1.2;
		}

		.proftitle3 span::before {
			content: "";
			flex-grow: 1;
			height: 1px;
			background-color: var(--highlight);
			margin-right: 10px;
		}

.proftitle4 {
    font-family: 'Fjalla One', sans-serif;
    line-height: 100%;
    letter-spacing: 0px;
    font-size: 40px;
    text-align: center;
	margin-bottom: 25px;
	margin-top:5px;
	clear: both;
}

		.proftitle4 span {
			font-family: 'Raleway', sans-serif;
			color: var(--highlight);
			font-size: 20px;
			display: flex;
			align-items: center; 
			justify-content: center; /
			gap: 15px; 
			margin: 0 10px 0; 
			line-height: 1.4; 
		}

		.proftitle4 span::before,
		.proftitle4 span::after {
			content: ""; 
			flex-grow: 1; 
			height: 1px; 
			background-color: var(--highlight); 
			margin: 0 10px; 
		}

.proftitle5 {
    font-family: 'Fjalla One', sans-serif;
    line-height: 100%;
    letter-spacing: 0px;
    font-size: 40px;
    text-align: left;
	margin-bottom: 25px;
	margin-top:5px;
	clear: both;
}

		.proftitle5 span {
			font-family: 'Raleway', sans-serif;
			color: var(--highlight);
			font-size: 20px;
			display: flex;
			align-items: center;
			justify-content: flex-start;
			gap: 15px; 
			line-height: 1.4;			
		}

		.proftitle5 span::after {
			content: "";
			flex-grow: 1;
			height: 1px;
			background-color: var(--highlight);
			margin-left: 10px; 
		}

.proftitle6 {
    font-family: 'Fjalla One', sans-serif;
    line-height: 100%;
    letter-spacing: 0px;
    font-size: 40px;
    text-align: right;
	margin-bottom: 25px;
	margin-top:5px;
	clear: both;
}

		.proftitle6 span {
			font-family: 'Raleway', sans-serif;
			color: var(--highlight);
			font-size: 20px;
			display: flex;
			align-items: center;
			justify-content: flex-end;
			gap: 15px;
			line-height: 1.4;
		}

		.proftitle6 span::before {
			content: "";
			flex-grow: 1;
			height: 1px;
			background-color: var(--highlight);
			margin-right: 10px;
		}
/* ------------------------ TITEL ENDE -------------------*/

/* ------------------------ IMAGES FLOAT ANFANG -------------------*/
.profimgfloat {
    float: left;
    max-width: 40%;
    border: 2px solid var(--highlight);
    padding: 5px;
    margin-right: 15px;
    margin-top: 5px;
	position: relative;
	z-index: 2;
}

.profimgfloat.right {
    float: right;
    margin-right: 0;
    margin-left: 15px;
}

.profimgfloat img {
    width: 100%;
    height: 100%;
	object-fit: cover;
    object-position: center;
}

.profimgfloat.inline-border {
    border: none;
    padding: 0;
}

.profimgfloat.inline-border:after {
    content: "";
    display: block;
    border: 2px solid var(--highlight);
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px - 2px);
    height: calc(100% - 20px - 2px);
    z-index: 2;
}

.profimgfloat.grayscale {
    filter: grayscale(1);
}

		/* ------------------------ IMAGES FLOAT ENDE -------------------*/

/* -------------------- IMGAES BORDER ANFANG ---------------------*/
  .profimg {
    border: 2px solid var(--highlight);
    padding: 4px;
    margin-top: 5px;
    margin-bottom: 5px;
	margin-right:5px;
  }

  .profimg img {
    width: 100%;
    height: auto;
  }
/* ---------------- IMAGES BORDER ENDE --------------------------*/

/* -------------------- IMG HEADER ANFANG ---------------------*/
#profheaderbody {
  background: var(--highlight);
  width: 810px;
  box-sizing: border-box;
  color: var(--highlight);
}

#profheaderimg {
  width: 810px;
  height: 385px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  padding-top: 240px;
}

#profheaderborder {
  border: solid 1px var(--highlightbg);
  padding: 5px;
  width: 755px;
}

#profheaderheader {
  background: var(--highlightbg);
  padding: 14px;
  font-family: var(--title);
  box-sizing: border-box;
}

#profheaderh1 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 40px;
  font-family: var(--title);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0px;
  letter-spacing: 3px;
}

#profheaderh2 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-family: 'Inter';
  letter-spacing: 5px;
  word-spacing: 5px;
}

#profheaderborderd {
  border: solid 1px rgba(14, 17, 23, 0.5);
  padding: 5px;
  width: 755px;
}

#profheaderheaderd {
  background: rgba(14, 17, 23, 0.5);
  padding: 14px;
  font-family: var(--title);
  box-sizing: border-box;
}
/* ---------------- IMG HEADER  ENDE --------------------------*/


		/* ------------------------ Tabellen -------------------*/
.profiltable-container {
    margin: 10px auto; /* Zentriert die Tabelle */
    width: 100%;
    border-collapse: collapse; /* Entfernt doppelte Ränder */
}

.profiltable-container th, .profiltable-container td {
    width: 50%;
    height: 20%;
    text-align: center;
}

.profiltable-container th {
    line-height: 80%;
    letter-spacing: 0px;
	font-family: 'Fjalla One', sans-serif; /* Fjalla One Schriftart */
	font-size: 20px; 
}

.profiltable-container td {
    padding: 10px; /* Innenabstand für lesbaren Text */
	font-family: 'Calibri', sans-serif; 
	    font-size: 16px; /* Schriftgröße */
}

.profiltable-container td:nth-child(2) {
    border-left: 1px solid grey; /* Linker Rand bei der zweiten Spalte */
}