/* Entry footer layout */
.entry-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.entry-footer-left {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.entry-footer-right {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Project link styling */
.project-link {
  color: var(--secondary);
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}

.project-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Show cover images and full card format in tag views */
/* Using more specific selector to naturally override theme CSS */
.post-entry.tag-entry .entry-cover {
  display: block;
}