/* Deneme profil analizi — karne (beyaz) + ders renkleri */

.exam-profile-board {
    --ep-ink: #1c1917;
    --ep-muted: #78716c;
    --ep-line: #e7e5e4;
    background: #fff;
    color: var(--ep-ink);
    border: 1px solid var(--ep-line);
    border-radius: 1rem;
    padding: 0.85rem 0.9rem 0.95rem;
    margin: 0 0 0.9rem;
}

.exam-profile-board h3.exam-profile-title {
    margin: 0 0 0.65rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #44403c;
}

.exam-profile-karne {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: center;
}
@media (min-width: 640px) {
    .exam-profile-karne { grid-template-columns: minmax(180px, 240px) 1fr; }
}

.exam-profile-radar-wrap {
    position: relative;
    height: 248px;
    margin: 0 auto;
    max-width: 280px;
    width: 100%;
    background: #fff;
}

.exam-profile-insight {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #44403c;
}
.exam-profile-insight p { margin: 0 0 0.5rem; }
.exam-profile-insight p:last-child { margin-bottom: 0; }
.exam-profile-k { font-weight: 800; display: block; margin-bottom: 0.12rem; font-size: 0.68rem; letter-spacing: 0.04em; text-transform: uppercase; }
.exam-profile-k.is-now { color: #0f766e; }
.exam-profile-k.is-grow { color: #c2410c; }

.exam-profile-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.65rem;
}
.exam-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.62rem;
    font-weight: 800;
    color: #44403c;
    background: #fafaf9;
    border: 1px solid var(--ep-line);
    border-radius: 999px;
    padding: 0.18rem 0.5rem 0.18rem 0.35rem;
}
.exam-profile-chip::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--c, #78716c);
}

.exam-profile-empty {
    font-size: 0.72rem;
    color: var(--ep-muted);
    text-align: center;
    padding: 0.6rem 0.4rem;
}

#karne-profile-host:empty,
#karne-profile-host.is-empty { display: none; }

.exam-profile-overlay {
    position: fixed;
    inset: 0;
    z-index: 122;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(28, 25, 23, 0.45);
    backdrop-filter: blur(6px);
}
.exam-profile-overlay.hidden { display: none !important; }
.exam-profile-overlay-panel {
    position: relative;
    width: min(36rem, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 1.15rem;
    background: #fff;
    box-shadow: 0 24px 60px rgba(28, 25, 23, 0.22);
    padding: 0.85rem;
}
.exam-profile-overlay-head {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
    display: flex;
    padding: 0;
}
.exam-profile-overlay-panel .exam-profile-board { margin: 0; border: 0; padding: 0.4rem; }
.exam-profile-close {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 0.65rem;
    background: #f5f5f4;
    color: #44403c;
    cursor: pointer;
}
.exam-profile-close:hover { background: #e7e5e4; }
.exam-profile-overlay .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#sdet-exam-profile-host { display: none !important; }
