/* =============== */
/* for page.php - archive.php - search.php - single.php */
/* =============== */
.archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.2rem 0 0.8rem;
  line-height: 1.3;
}

.archive__tags {
  font-size: 0.95rem;
}

.archive__tags .post-meta {
  line-height: 1.3;
  color: var(--col-c);
  font-weight: 500;
}

.archive__tags .post-meta a {
  color: var(--col-d);
  font-weight: 500;
}

.single__tags .post-meta {
  line-height: 1.6;
  color: var(--col-k);
  font-weight: 500;
  padding-left: 12px;
}

.single__tags .post-meta a {
  color: var(--col-x);
  font-weight: 600;
}

/* ============================ */
/* Responsive Breakpoints       */
/* ============================ */
@media screen and (max-width: 48rem) {/* ή 768px */
	.archive__meta {
		margin: 0.3rem 0 .7rem;
		line-height: 1.2;
	}

	.archive__tags .post-meta {
		line-height: 1.2;
	}
	
	.archive__tags .post-meta a {
		color: var(--col-f);
	}
}