.cv-items-block { padding: 0; margin: 0;}
.cv-items-block .cv-items-header { border-bottom: 1px dotted rgba(0,0,0,0.15); margin: 0; }
.cv-items-list { padding: 0.25rem 0 1rem 3rem; }
.cv-items-list li {
  /* Remove default list and padding if any */
  list-style-type: square;
  padding: 0;
  margin: 2rem 0;
}
.cv-items-list li:first-child {
  /* Remove default list and padding if any */
  list-style-type: square;
  padding: 0;
  margin: 1rem 0;
}


/* First line: title and year */
.cv-item-title,
.cv-item-year {
  font-weight: bold;
  display: inline;
}

.cv-item-year { font-size: 0.80rem }

.cv-item-title + .cv-item-year {
  margin-left: 0.1em;
}

/* Forces a new line for the designated breaks */
.cv-item-break {
  content: "";
  display: block;
  /* Optional: Add some vertical spacing if needed between logical lines */
  /* margin-bottom: 0.25em; */
}

/* Elements on the second line: task and authors */
.cv-item-task,
.cv-item-creators {
  display: inline; /* Keep these inline with each other */
  font-size: 0.85rem;
}

/* Elements on the third line: publisher, additional info, and identifier */
.cv-item-publisher,
.cv-item-additional-info, /* New style for additional info */
.cv-item-identifier {
  display: inline; /* Keep these inline with each other */
  font-size: 0.85rem;
}

/* Add separator between elements on the same logical line */
/* This will target any .cv-item-xyz span that is immediately preceded by another .cv-item-abc span */
.cv-item-task + .cv-item-creators::before { /* Separator for Task / Creators */
  content: " / ";
  margin-right: 0.25em; /* Small space after the separator */
}

/* New: Separator character for elements on the same line 3 */
.cv-items-list li .cv-item-line-3 .cv-separator {
    display: inline;
    color: inherit; /* Inherit color from parent */
    /* Adjust spacing if needed */
    margin: 0 0.25em;
}

/* Wrapper for multiple buy links */
.cv-item-links-wrapper {
    display: block; /* Ensure it starts on a new line */
}

/* Buy link (will be on its own line due to preceding cv-item-break) */
.cv-item-buy-link {
    font-family: 'Lucida Console';
    font-size: 0.75rem;
    display: inline-block; /* To allow padding/margin */
    margin-right: 10px; /* Space between multiple links */
    margin-top: 5px; /* Small space above links if they follow other content */
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.cv-item-buy-link a {
    box-sizing: border-box;
    background: #0fab31;
	padding: 6px 10px 4px 12px;
    color: white;
    text-decoration: none;
	border: 1px solid transparent;
	border-radius: 15px;
}
.cv-item-buy-link a:hover {
	background: #3de605;
	color: black;
	border: 1px solid #0fab31;
}
.cv-item-buy-link a:visited { color: white;}