/* Evox Intelligence Lab - Archive & Global Styles (Liquid Glass & Neon) */

:root {
    --evox-bg: #0a0a0a;
    --evox-glass-bg: rgba(255, 255, 255, 0.03);
    --evox-glass-border: rgba(255, 255, 255, 0.08);
    --evox-glass-highlight: rgba(255, 255, 255, 0.15);

    --evox-neon-blue: #00f3ff;
    --evox-neon-blue-glow: rgba(0, 243, 255, 0.5);
    --evox-neon-white: #ffffff;
    --evox-neon-white-glow: rgba(255, 255, 255, 0.5);

    --evox-text-main: #ffffff;
    --evox-text-muted: #a0a0a0;
}

body {
    background-color: var(--evox-bg);
    color: var(--evox-text-main);
}

.evox-archive-main {
    padding: 80px 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    min-height: 100vh;
}

.evox-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.evox-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--evox-neon-white);
    text-shadow: 0 0 20px var(--evox-neon-white-glow);
}

.evox-taxonomy-description {
    font-size: 1.1rem;
    color: var(--evox-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.evox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

/* Glassmorphism Card */
.blog6_item {
    position: relative;
    border-radius: 16px;
    background: var(--evox-glass-bg);
    border: 1px solid var(--evox-glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.blog6_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.blog6_item:hover {
    transform: translateY(-5px);
    border-color: var(--evox-glass-highlight);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 243, 255, 0.1);
}

.blog6_item-link-wrap {
    padding: 24px;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-thumb_cover {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.evox-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.blog6_item:hover .img-cover {
    transform: scale(1.05);
}

.margin-bottom {
    margin-bottom: var(--margin, 16px);
}

.margin-24 {
    --margin: 24px;
}

.margin-12 {
    --margin: 12px;
}

.margin-8 {
    --margin: 8px;
}

.blog6_meta-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
}

.text-color-light-grey {
    color: var(--evox-text-muted);
}

.text-size-medium {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--evox-neon-white);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog6_item:hover .text-size-medium {
    color: var(--evox-neon-blue);
    text-shadow: 0 0 10px var(--evox-neon-blue-glow);
}

.text-style-3lines {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    color: var(--evox-text-muted);
    font-size: 0.9rem;
}

.blog6_item-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border-radius: 8px;
    background: var(--evox-glass-bg);
    border: 1px solid var(--evox-glass-border);
    color: var(--evox-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--evox-neon-blue);
    color: var(--evox-neon-white);
    text-shadow: 0 0 8px var(--evox-neon-blue-glow);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}