/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

.serif { font-family: 'Crimson Text', serif; }
.sans { font-family: 'Inter', sans-serif; }

.hero-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #1e40af, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.publication-logo {
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.publication-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.science-card {
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.science-card:hover {
    border-left-color: #1d4ed8;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.authority-quote {
    position: relative;
    font-style: italic;
}

.authority-quote::before {
    content: '"';
    font-size: 4rem;
    color: #e5e7eb;
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: serif;
}
