/* research.css – extends site.css */

main > h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.02em;
    color: var(--accent);
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}

.text-container {
    text-align: left;
}

.text-container p {
    font-size: 0.88rem;
    line-height: 1.9;
    color: var(--dim);
    margin-bottom: 1.6rem;
    padding-left: 1rem;
    border-left: 2px solid var(--border);
    transition: border-color 0.2s;
}

.text-container p:hover {
    border-left-color: var(--accent);
}

/* gradient-text: subtle light shimmer on text */
.gradient-text {
    background: linear-gradient(135deg, #e8e8ea 60%, #a0c4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ── Name: unified style matching landing page ── */
main > h1:first-of-type {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
}

/* ── Research card block (matches landing page bio style) ── */
.research-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 2.2rem;
    margin-top: 1rem;
    text-align: left;
}

.research-card p {
    font-size: 0.83rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.2rem;
    border-left: none;
    padding-left: 0;
}

.research-card p:last-child {
    margin-bottom: 0;
}

.research-card p:hover {
    border-left-color: transparent;
}
