/* Page Specific Layout */
.slswma-archive-header {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.slswma-archive-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

/* Sidebar Filters */
.slswma-archive-sidebar {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  height: fit-content;
  border: 1px solid #eee;
}

.slswma-filter-group {
  margin-bottom: 25px;
}

.slswma-filter-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.slswma-filter-label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 1rem;
}

.slswma-filter-label input {
  margin-right: 10px;
  accent-color: #2e7d32;
}

/* Document Cards */
.slswma-document-card-extended {
  display: flex;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  transition: transform 0.2s, box-shadow 0.2s;
}

.slswma-document-card-extended:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.slswma-doc-info {
  flex-grow: 1;
  padding-left: 20px;
}

.slswma-doc-meta {
  font-size: 0.85rem;
  color: #777;
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.slswma-download-btn {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slswma-download-btn:hover {
  background: #2e7d32;
  color: white;
}

@media (max-width: 768px) {
  .slswma-archive-grid {
    grid-template-columns: 1fr;
  }
}