/* PROFIL WRAPPER */

.profile-wrap {
    width: min(1200px, 100%);
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #e8e8e8;
}


/* HERO BEREICH */

.profile-hero {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    gap: 20px;
    align-items: stretch;
    background: rgb(26 26 26);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}


/* AVATAR */

.profile-avatar {
    overflow: hidden;
    border-radius: 16px;
    height: 300px;
    width: 300px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* MITTELBEREICH */

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* NAME */

.profile-headline {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
}

.profile-headline h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #583746;
    font-family: neon_led_lightregular;
    text-align: center;
}

.profile-subline {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #676767;
    text-align: center;
}


/* FACT BOXEN (GLOBAL) */

.p-fact {
    background: rgb(255 255 255 / 3%);
    border: 1px solid rgb(30 73 77);
    border-radius: 12px;
    padding: 4px 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #a6a6a6;
    min-height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    height: 59px;
    text-align: center;
    text-transform: uppercase;
}

.p-fact2 {
    background: rgb(255 255 255 / 3%);
    border: 1px solid rgb(30 73 77);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #a6a6a6;
    height: 61px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
}

.p-fact2 span {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #583746;
    text-align: left;
}

.p-fact span {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #583746;
    text-align: left;
}


/* FACT GRID LINKS */

.profile-shortfacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


/* RECHTE SEITE */

.profile-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* ICON */

.profile-icon {
    height: 150px;
    width: 300px;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FACTS RECHTS */

.profile-sidefacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}


/* TABS */

.profile-tabs {
    background: rgb(26 26 26);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 22px;
    min-height: 400px;
}


/* TAB INPUTS AUSBLENDEN */

.profile-tabs input[type="radio"] {
    display: none;
}


/* TAB NAVIGATION */

.profile-tab-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.profile-tab-nav label {
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b8b8b8;
    transition: 0.25s;
}

.profile-tab-nav label:hover {
    background: rgb(88 55 70);
    color: #fff;
}


/* TAB CONTENT */

.profile-tab-content {
    display: none;
}

.profile-box-frameS {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.profile-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgb(30 73 77);
    border-radius: 11px;
    padding: 20px;
    line-height: 1.7;
    font-size: 14px;
    color: #aaaaaa;
    min-height: 420px;
    max-height: 420px;
    overflow-y: auto;
	text-align: justify;
}

.profile-boxR {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgb(30 73 77);
    border-radius: 11px;
    padding: 20px;
    line-height: 1.7;
    font-size: 14px;
    color: #aaaaaa;
    min-height: 300px;
	text-align: justify;
}

.profile-box::-webkit-scrollbar {
    width: 6px;
}

.profile-box::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
}

.profile-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}

.profile-box::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.25);
}

.profile-boxS {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgb(30 73 77);
    border-radius: 11px;
    padding: 20px;
    line-height: 1.7;
    font-size: 14px;
    color: #aaaaaa;
    min-height: 420px;
    max-height: 420px;
    overflow-y: auto;
    width: 530px;
    text-align: justify;
}

.profile-boxS::-webkit-scrollbar {
    width: 6px;
}

.profile-boxS::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
}

.profile-boxS::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}

.profile-boxS::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.25);
}

.profile-box h2 {
    margin: 0 0 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.profile-wrap {
    overflow-x: auto;
}

.profile-hero,
.profile-tabs {
    box-sizing: border-box;
}

.profile-box-frameS {
    width: 100%;
}

.profile-box,
.profile-boxR,
.profile-boxS {
    box-sizing: border-box;
    flex: 1 1 0;
}

.profile-tabs::-webkit-scrollbar,
.profile-wrap::-webkit-scrollbar,
.profile-hero::-webkit-scrollbar {
    height: 6px;
}

.profile-tabs::-webkit-scrollbar-track,
.profile-wrap::-webkit-scrollbar-track,
.profile-hero::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.03);
}

.profile-tabs::-webkit-scrollbar-thumb,
.profile-wrap::-webkit-scrollbar-thumb,
.profile-hero::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}


/* TAB LOGIK */

#tab-1:checked ~ .profile-tab-nav label[for="tab-1"],
#tab-2:checked ~ .profile-tab-nav label[for="tab-2"],
#tab-3:checked ~ .profile-tab-nav label[for="tab-3"],
#tab-4:checked ~ .profile-tab-nav label[for="tab-4"] {
    background: rgba(255,255,255,0.14);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

#tab-1:checked ~ .tab-content-1,
#tab-2:checked ~ .tab-content-2,
#tab-3:checked ~ .tab-content-3,
#tab-4:checked ~ .tab-content-4 {
    display: block;
}


/* RESPONSIVE */

@media (max-width: 980px) {

    .profile-wrap {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .profile-hero {
        grid-template-columns: 300px minmax(500px, 1fr) 300px;
        min-width: 1140px;
        overflow-x: auto;
    }

    .profile-tabs {
        min-width: 1140px;
        overflow-x: auto;
    }

    .profile-shortfacts {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-box-frameS {
        display: flex;
        flex-direction: row;
        gap: 18px;
        min-width: 1090px;
    }

    .profile-box,
    .profile-boxR,
    .profile-boxS {
        min-width: 0;
    }
}

@media (max-width: 620px) {

    .profile-tab-nav {
        flex-wrap: wrap;
    }

    .profile-tab-nav label {
        width: auto;
    }

}

.profile-others-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    background: #ffffff0a;
    color: #6d6d6d;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 600;
}

.profile-others {
    /* width: 97%; */
    background: rgb(26 26 26);
    padding: 20px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}