/* ============================================
   BEREA - Dictionary Page Styles
   Dictionary entries, Strong's section, links
   ============================================ */

.strongs-section {
    max-width: 1000px;
    margin: var(--space-lg) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

.strongs-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.strongs-controls {
    display: flex;
    gap: var(--space-sm);
    max-width: 400px;
}

.dict-entry {
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    margin-bottom: var(--space-lg);
}

.dict-entry:last-child {
    margin-bottom: 0;
}

.dict-entry-title {
    font-family: var(--font-scripture);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--accent-primary);
    text-align: left;
}

.dict-entry-content {
    font-family: var(--font-scripture);
    font-size: var(--font-size-scripture);
    line-height: var(--line-height-scripture);
    color: var(--text-secondary);
}

.dict-entry-content p {
    margin-bottom: var(--space-lg);
}

.dict-entry-content p:last-child {
    margin-bottom: 0;
}

/* Style ALL links in dictionary content (server-side links may not have classes) */
.dict-entry-content a {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-muted);
    transition: all var(--transition-fast);
}

.dict-entry-content a:hover {
    color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    border-bottom-style: solid;
}

.bible-ref-link {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-muted);
    transition: all var(--transition-fast);
}

.bible-ref-link:hover {
    color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    border-bottom-style: solid;
}

.dict-topic-link {
    color: var(--accent-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-muted);
    transition: all var(--transition-fast);
}

.dict-topic-link:hover {
    color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    border-bottom-style: solid;
}
