/* Archive Hero Section */
.archive-hero {
    background: linear-gradient(to right, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(250, 167, 71, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(250, 167, 71, 0.1) 0%, transparent 50%);
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: 'JCBEuro Bold Regular', sans-serif;
    background: transparent;
    border: 2px solid #e0e0e0;
    padding: 8px 20px;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #FAA747;
    color: #FAA747;
}

.filter-btn.active {
    background: #000;
    color: #FAA747;
    border-color: #000;
}

/* Year Section */
.year-section {
    margin-bottom: 3rem;
}

.year-header {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FAA747;
    font-family: 'JCBEuro Bold Regular', sans-serif;
}

/* Month Section */
.month-section {
    margin-bottom: 2rem;
}

.month-header {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #FAA747;
    font-family: 'JCBEuro Bold Regular', sans-serif;
}

/* Article List */
.article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-item {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 10px;
}

.article-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.article-date {
    color: #666;
    font-size: 14px;
    min-width: 80px;
    font-family: 'JCBEuro Roman Regular', sans-serif;
}

.article-category {
    background: #f0f0f0;
    color: #666;
    padding: 2px 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'JCBEuro Bold Regular', sans-serif;
    width: 170px;
    min-width: 170px;
    text-align: center;
    display: inline-block;
}

.article-link {
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: 'JCBEuro Bold Regular', sans-serif;
    flex: 1;
    text-decoration: none;
}

.article-link:hover {
    color: #FAA747;
    transform: translateX(5px);
}

/* Search Bar */
.archive-search {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 30px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    font-family: 'JCBEuro Roman Regular', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: #FAA747;
}

/* Back to Blogs Button */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FAA747;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-top: 50px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-family: 'JCBEuro Bold Regular', sans-serif;
    text-decoration: none;
}

.back-link:hover {
    color: #000;
    transform: translateX(-5px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .archive-hero {
        padding: 40px 0;
    }
    
    .year-header {
        font-size: 24px;
    }
    
    .article-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .article-date,
    .article-category {
        font-size: 12px;
    }
    
    .article-link {
        font-size: 14px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 11px;
    }
}

/* Utility classes - copied from newsletter archive */
.font-jcb-bold-condensed {
    font-family: 'JCBEuro BoldCondensed Regular', sans-serif;
}

.font-jcb-bold {
    font-family: 'JCBEuro Bold Regular', sans-serif;
}

.font-jcb-roman {
    font-family: 'JCBEuro Roman Regular', sans-serif;
}

.container { 
    max-width: 1280px; 
    margin: 0 auto; 
}

.mx-auto { 
    margin-left: auto; 
    margin-right: auto; 
}

.px-6 { 
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
}

.py-16 { 
    padding-top: 4rem; 
    padding-bottom: 4rem; 
}

.max-w-4xl { 
    max-width: 56rem; 
}

.text-center { 
    text-align: center; 
}

.text-4xl { 
    font-size: 2.25rem; 
}

.text-lg { 
    font-size: 1.125rem; 
}

.text-2xl { 
    font-size: 1.5rem; 
}

.text-white { 
    color: #fff; 
}

.text-gray-300 { 
    color: #d1d5db; 
}

.text-gray-600 { 
    color: #4b5563; 
}

.mb-3 { 
    margin-bottom: 0.75rem; 
}

.mb-4 { 
    margin-bottom: 1rem; 
}

.mt-12 { 
    margin-top: 3rem; 
}

.w-20 { 
    width: 5rem; 
}

.h-1 { 
    height: 0.25rem; 
}

.bg-glow-yellow { 
    background-color: #FAA747; 
}

.bg-white { 
    background-color: #fff; 
}

.uppercase { 
    text-transform: uppercase; 
}

.tracking-wide { 
    letter-spacing: 0.025em; 
}

.relative { 
    position: relative; 
}

.z-10 { 
    z-index: 10; 
}

/* No blogs message */
.no-blogs {
    padding: 60px 20px;
    text-align: center;
}