/* User Provided Stylesheet */

/* =========================================================
   TouchUMind — Date metadata styling
   ========================================================= */

/* Date pill */
article time,
main time {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;

  padding: 0.28rem 0.72rem;
  border-radius: 999px;

  background: #eaf2ff;
  border: none;

  color: #2563eb;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;

  box-shadow: none;
}


/* Calendar icon */
article time::before,
main time::before {
  content: "";

  display: inline-block;
  flex-shrink: 0;

  width: 1rem;
  height: 1rem;

  background-color: currentColor;

  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E")
    center / contain no-repeat;

  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4'/%3E%3Cpath d='M8 2v4'/%3E%3Cpath d='M3 10h18'/%3E%3Cpath d='M8 14h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 18h.01'/%3E%3Cpath d='M12 18h.01'/%3E%3C/svg%3E")
    center / contain no-repeat;
}


/* Optional subtle hover */
article time:hover,
main time:hover {
  background: #dfebff;
}


/* Dark mode */
@media (prefers-color-scheme: dark) {
  article time,
  main time {
    background: rgba(59, 130, 246, 0.16);
    color: #93c5fd;
  }

  article time:hover,
  main time:hover {
    background: rgba(59, 130, 246, 0.22);
  }
}


/* Hide MyST download controls */
[class*="download" i] {
  display: none !important;
}
