/* ============================================
   PAGES CSS - Additional Page Styles
   ============================================ */

/* Page Header */
.page-header {
    padding: 110px 0 52px;
    text-align: center;
    position: relative;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Profile Section */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.profile-image {
    position: relative;
}

.image-frame {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.profile-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1e1b3a 0%, #0f172a 100%);
    border: 1px solid rgba(99,102,241,0.25);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.profile-word-cloud {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(129,140,248,0.2));
}

.profile-word-cloud::before,
.profile-word-cloud::after {
    content: '';
    position: absolute;
    inset: 6% 8%;
    border-radius: 50%;
    border: 1px dashed rgba(129,140,248,0.18);
    animation: cloudRing 12s linear infinite;
}

.profile-word-cloud::after {
    inset: 18% 18%;
    border-style: solid;
    border-color: rgba(99,102,241,0.12);
    animation-direction: reverse;
    animation-duration: 18s;
}

.profile-word-cloud span {
    position: absolute;
    left: calc(10% + ((var(--i) * 7.3%) % 80%));
    top: calc(12% + ((var(--i) * 9.1%) % 72%));
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(191,219,254,0.78);
    text-shadow: 0 0 10px rgba(99,102,241,0.35), 0 0 24px rgba(59,130,246,0.18);
    white-space: nowrap;
    opacity: 0.86;
    will-change: transform, opacity;
    mix-blend-mode: screen;
}

@keyframes cloudRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes cloudPulse {
    0%, 100% { opacity: 0.7; filter: blur(0); }
    50% { opacity: 1; filter: blur(0.2px); }
}

/* Subtle grid pattern inside profile card */
.profile-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    border-radius: 24px;
}

/* Glow accent at top */
.profile-placeholder::after {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, transparent 70%);
    pointer-events: none;
}

.placeholder-initials {
    position: relative;
    z-index: 2;
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
}

.profile-placeholder .profile-role-tag {
    position: relative;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(129,140,248,0.7);
    text-transform: uppercase;
}

.frame-decoration {
    position: absolute;
    inset: -6px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(99,102,241,0.4) 0%, rgba(139,92,246,0.3) 50%, rgba(6,182,212,0.3) 100%);
    z-index: -1;
    filter: blur(1px);
    animation: frameGlow 4s ease-in-out infinite;
}

@keyframes frameGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 0.85; transform: scale(1.015); }
}

.profile-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.profile-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.badge-icon {
    font-size: 18px;
}

.profile-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.profile-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

/* Principles Grid */
.principles-section {
    background: var(--bg-secondary);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.principle-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all var(--transition-base);
}

.principle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.principle-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.principle-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.principle-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-gradient);
    border-radius: 50%;
    top: 0;
    box-shadow: 0 0 0 4px var(--bg-primary), 0 0 0 6px var(--accent-primary);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.timeline-date {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-gradient-soft);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-company {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.timeline-content p:last-of-type {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: inherit;
}

.timeline-tags span {
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Certifications */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.cert-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.cert-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-gradient-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.cert-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-primary);
}

.cert-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cert-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.cert-logo-banner {
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 14px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cert-logo-wordmark {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.cert-logo-sub {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
}

.cert-logo-banner--aws {
    background: linear-gradient(180deg, #111827, #0b1222);
    color: #ff9900;
    border: 1px solid rgba(93, 169, 255, 0.35);
}

.cert-logo-banner--google {
    background: linear-gradient(180deg, #f8fbff, #eef4ff);
    color: #1f2937;
    border: 1px solid rgba(66, 133, 244, 0.25);
}

.cert-logo-banner--google .cert-logo-sub {
    color: #4285f4;
}

.cert-logo-banner--linux {
    background: #003052;
    color: #7df2e4;
    border: 1px solid rgba(0, 196, 180, 0.25);
}

.cert-logo-banner--leadership {
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-logo-banner--epic {
    background: linear-gradient(180deg, #f5efe2, #ebe0c8);
    color: #111827;
    border: 1px solid rgba(58, 58, 58, 0.25);
}

.cert-badge-art {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.2));
}

.cert-badge-art--round {
    max-width: 168px;
}

.cert-badge-art--seal {
    max-width: 172px;
}

.cert-official-badge {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.2));
}

.cert-official-badge--round {
    max-width: 206px;
}

.cert-official-badge--epic {
    max-width: 210px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
}

.cert-badge--aws {
    color: #ff9900;
    border-color: rgba(255, 153, 0, 0.35);
    background: rgba(255, 153, 0, 0.08);
}

.cert-badge--google {
    color: #4285f4;
    border-color: rgba(66, 133, 244, 0.35);
    background: rgba(66, 133, 244, 0.08);
}

.cert-badge--linux {
    color: #00c4b4;
    border-color: rgba(0, 196, 180, 0.35);
    background: rgba(0, 196, 180, 0.08);
}

.cert-badge--leadership {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.35);
    background: rgba(139, 92, 246, 0.08);
}

.cert-badge--epic {
    color: #d72638;
    border-color: rgba(215, 38, 56, 0.35);
    background: rgba(215, 38, 56, 0.08);
}

.education-card {
    background: var(--accent-gradient);
    border-radius: 20px;
    padding: 28px 32px;
    text-align: center;
    color: white;
}

.education-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.education-card p {
    font-size: 16px;
    opacity: 0.9;
}

/* Projects Page */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.project-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 42% 58%;
}

.project-image {
    height: 200px;
    background: var(--accent-gradient-soft);
    position: relative;
    overflow: hidden;
}

.project-card.featured .project-image {
    height: 100%;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent-primary);
    opacity: 0.5;
}

.project-content {
    padding: 32px;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.project-tags span {
    padding: 4px 12px;
    background: var(--accent-gradient-soft);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
}

.project-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.project-tech span {
    padding: 6px 14px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.project-link:hover {
    gap: 12px;
}

.project-link svg {
    width: 16px;
    height: 16px;
}

/* AI Systems Page */
.ai-hero {
    text-align: center;
    padding: 48px 0;
    background: var(--accent-gradient-soft);
    border-radius: 32px;
    margin-bottom: 48px;
}

.ai-hero h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.ai-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.ai-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-base);
}

.ai-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.ai-card-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.ai-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ai-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ai-card ul {
    list-style: none;
}

.ai-card li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.ai-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Publications Page */
.publications-grid {
    display: grid;
    gap: 32px;
}

.publication-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    transition: all var(--transition-base);
}

.publication-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.publication-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publication-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-primary);
}

.publication-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.publication-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.publication-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.contact-method:hover {
    border-color: var(--accent-primary);
    transform: translateX(8px);
}

.method-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gradient-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-primary);
}

.method-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.method-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
    
    .ai-capabilities {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-marker {
        left: 12px !important;
        right: auto !important;
    }
    
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-capabilities {
        grid-template-columns: 1fr;
    }

    .profile-badges {
        flex-direction: column;
        align-items: center;
    }

    .profile-word-cloud {
        width: 216px;
        height: 216px;
    }

    .profile-word-cloud span {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .certs-grid {
        grid-template-columns: 1fr;
    }

    .education-card {
        padding: 24px;
    }

    .education-card h3 {
        font-size: 18px;
    }

    .timeline-content {
        padding: 20px;
    }
}

/* ============================================
   ARTICLE BODY
   ============================================ */

.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
}

.article-body h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    font-weight: 700;
    margin: 52px 0 18px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 36px 0 12px;
    color: var(--text-primary);
}

.article-body p {
    margin-bottom: 22px;
    color: var(--text-secondary);
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.75;
}

.article-body code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88em;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2px 7px;
    color: var(--accent-primary);
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-callout {
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 32px 0;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-callout strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
}

.article-meta-footer {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 32px;
    margin: 40px 0 0;
}

.article-meta-footer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.article-changelog {
    margin-top: 8px;
}

.article-changelog h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 12px;
}
