/* Explicit Blog Layout Components Override */
:root {
    --theme-color: #bf55ec; /* Forces strict Neon Purple thematic locks */
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--theme-color);
    text-shadow: 0 0 10px rgba(191, 85, 236, 0.2);
}

.blog-directory-item {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
    animation: fadeIn 0.25s ease-out;
}
.blog-directory-item:last-child { border-bottom: none; }

.item-meta {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.item-title-anchor {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.6rem;
}
.item-title-anchor:hover {
    color: var(--theme-color);
    text-shadow: 0 0 8px var(--theme-color);
}

.item-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d1d6;
}

/* Pagination Control Strip Interface */
.pagination-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.pagination-panel button {
    background: #000000;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination-panel button:hover:not(:disabled) {
    border-color: var(--theme-color);
    color: var(--theme-color);
    box-shadow: 0 0 10px rgba(191, 85, 236, 0.2);
}

.pagination-panel button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#pageTracker {
    font-size: 0.85rem;
    color: var(--text-dim);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}