/* Toolbar */
.research-toolbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.research-viewhint {
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 1.4rem;
}

.area-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #F0F4FF;
    border: 1px solid var(--border);
}

.area-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .65);
}

.area-accent .swatch {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2a622d;
}

/* Faculty chips */
.faculty-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.chip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .65);
    font-weight: 700;
    transition: all .2s ease;
    text-decoration: none;
}

.chip-link:hover {
    text-decoration: none;
    background: rgba(17, 17, 17, .05);
}

.chip-link:active {
    transform: scale(.98);
}

.chip-link i {
    opacity: .75;
}


.chip-research {
  display: block;
  font-size: 0.7em;
  opacity: 0.75;
  margin-top: 2px;
  line-height: 1.2;
}



/* ---------- Accordion (mobile) ---------- */
.research-accordion {
    display: grid;
    margin-top: 14px;
    gap: 12px;
}

.acc-item {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #fff, #fbfbfd);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.acc-summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.acc-summary::-webkit-details-marker {
    display: none;
}

.acc-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.acc-title {
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.acc-title .swatch {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.acc-chevron {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    background: #FFFFFF;
}

.acc-body {
    padding: 0 14px 14px 14px;
}