/* Glossar page layout and components - shared across all glossar pages */

.glossar-page { min-height: 100vh; }
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f14 0%, #0d1520 50%, #0a1018 100%);
    padding: 60px 56px;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,177,235,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.breadcrumb { margin-bottom: 16px; }
.breadcrumb a { color: #00B1EB; text-decoration: none; font-size: 14px; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 14px; }
.hero-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,177,235,0.15);
    color: #00B1EB;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 16px;
}
.short-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* Content section */
.content-section { padding: 60px 56px; background: #fff; }
.content-container { max-width: 800px; margin: 0 auto; }
.content-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0f14;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #00B1EB;
}
.content-container h3 { font-size: 18px; font-weight: 600; color: #0a0f14; margin: 24px 0 12px; }
.content-container p { font-size: 15px; color: #374151; line-height: 1.8; margin-bottom: 16px; }
.content-container ul, .content-container ol { margin-bottom: 16px; padding-left: 24px; }
.content-container li { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 8px; }
.content-container a { color: #00B1EB; text-decoration: none; }
.content-container a:hover { text-decoration: underline; }

/* Table of contents */
.toc {
    background: #f8f9fa;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}
.toc h4 { font-size: 14px; font-weight: 600; color: #0a0f14; margin-bottom: 12px; }
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { padding: 6px 0; }
.toc a { color: #00B1EB; text-decoration: none; font-size: 14px; }
.toc a:hover { text-decoration: underline; }

/* Info box */
.info-box {
    background: linear-gradient(135deg, rgba(0,177,235,0.08) 0%, rgba(0,177,235,0.03) 100%);
    border-left: 4px solid #00B1EB;
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin: 24px 0;
}
.info-box h4 { font-size: 16px; font-weight: 600; color: #0a0f14; margin-bottom: 8px; }
.info-box p { margin-bottom: 0; }

/* Warning box */
.warning-box {
    background: linear-gradient(135deg, rgba(239,68,68,0.08) 0%, rgba(239,68,68,0.03) 100%);
    border-left: 4px solid #ef4444;
    border-radius: 0 12px 12px 0;
    padding: 24px;
    margin: 24px 0;
}
.warning-box h4 { font-size: 16px; font-weight: 600; color: #dc2626; margin-bottom: 8px; }
.warning-box p { margin-bottom: 0; }

/* Comparison table */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.comparison-table th, .comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e8eaed;
    font-size: 14px;
}
.comparison-table th { background: #f8f9fa; font-weight: 600; color: #0a0f14; }
.comparison-table td { color: #374151; }

/* Back link */
.content-container .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 20px;
    background: #00B1EB;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}
.content-container .back-link:hover { background: #0095c8; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 768px) {
    .hero-section { padding: 48px 24px; }
    .hero-section h1 { font-size: 28px; }
    .content-section { padding: 48px 24px; }
}
