.archive-page-wrapper {
    margin-top: 25px;
    margin-bottom: 50px;
    font-family: 'Inter', sans-serif;
}

.archive-header-card {
    background: #003366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px 4px 0 0;
    margin-bottom: 20px;
}

.archive-page-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-search-card {
    background: #f4f6f8;
    padding: 20px;
    border: 1px solid #e1e6eb;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.archive-desc {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    min-width: 280px;
}

.archive-search-form {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ced4da;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.archive-date-picker-box {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    gap: 10px;
    background: #fff;
}

.archive-picker-icon {
    color: #9ca3af;
    font-size: 18px;
}

.archive-picker-inputs {
    display: flex;
    flex-direction: column;
}

.archive-picker-label {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    font-weight: 600;
}

.archive-date-input {
    border: none;
    outline: none;
    font-size: 13px;
    color: #1f2937;
    font-weight: 600;
    padding: 0;
    background: transparent;
}

.archive-submit-btn {
    background: #1f2937;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    height: 100%;
}

.archive-submit-btn:hover {
    background: #111827;
}

.archive-navigation-bar {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.archive-nav-btn {
    color: #1f2937;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.archive-nav-btn:hover {
    color: #003366;
}

.archive-nav-btn--disabled {
    color: #d1d5db;
    cursor: not-allowed;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.archive-nav-current-date {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
}

.archive-news-list-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 25px;
}

.archive-category-group {
    margin-bottom: 30px;
}

.archive-category-group:last-child {
    margin-bottom: 0;
}

.archive-category-header {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    border-bottom: 2px solid #111827;
    padding-bottom: 6px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.archive-news-rows {
    display: flex;
    flex-direction: column;
}

.archive-news-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.archive-news-row:last-child {
    border-bottom: none;
}

.archive-news-row-time {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
    min-width: 40px;
}

.archive-news-row-link {
    font-size: 14.5px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.2s;
}

.archive-news-row-link:hover {
    color: #003366;
}

.archive-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #9ca3af;
}

.archive-empty-state i {
    font-size: 40px;
    margin-bottom: 15px;
}

.archive-empty-state p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .archive-search-card {
        flex-direction: column;
        align-items: stretch;
    }
    .archive-desc {
        text-align: center;
    }
    .archive-search-form {
        justify-content: space-between;
    }
    .archive-date-picker-box {
        flex: 1;
    }
}
