body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.archive-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.archive-logo {
  height: 150px;
  margin-bottom: 1rem;
}

.filters {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: #f9f9f9;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
}

.post-card time {
  font-size: 0.85rem;
  color: #555;
}

.media-wrapper {
  display: grid;
  gap: 0.5rem;
}

.media-wrapper img,
.media-wrapper video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.caption {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: #333;
}

.toggle-tags {
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0.25rem;
}

.tags {
  font-size: 0.85rem;
  color: #666;
  word-break: break-word;
}