@import url("https://use.typekit.net/ggk1son.css");

:root {
  --header-title-width: 420px;
  --content-max: 65ch;
}

* { box-sizing: border-box; }


/* full-bleed black bar stays */
header {
  background: #111;
  color: white;
  padding: 1rem 0;
}

body {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
}

.container {
  width: calc(250px + var(--content-max) + 4rem); /* sidebar + readable width + padding buffer */
  margin: 0 auto;
}


/* Global heading weights only */
h1 {
  font-weight: 700;
}

h2, h3 {
  font-weight: 600;
}



.layout {
  display: grid;
  grid-template-columns: 250px 1fr;
}

.tracks {
  background: #f4f4f4;
  padding: 1.85rem;
  overflow-y: visible;
}

.tracks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracks li {
  margin-bottom: 0;
}

.tracks a {
  /*font-size: 0.85rem;*/
  font-weight: 400;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #6d91c5
}


.tracks a:hover {
  /*text-decoration: underline;*/
  color: white;
  background-color: #6d91c5
}

.content {
  padding: 1.5rem 2rem 2rem 2rem;
  overflow-y: visible;
}

.content > * {
  max-width: 65ch;
}

.content h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: cooper-black-std, "Merriweather", Georgia, serif;
  font-weight: 400;
  font-style: normal;  
  font-size: 1.75rem
}

.content h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: cooper-black-std, "Merriweather", Georgia, serif;
  font-weight: 400;
  font-style: normal;  
  font-size: 1.25rem
}

.content p {
  margin-top: 0;
  margin-bottom: 1em;
}

.content blockquote {
  margin: 1em 0;
  padding-left: 1.5rem;
  border-left: 3px solid #ccc;
  /*font-style: italic;*/
  font-size: 0.9em;
}

.content .indented {
  margin-left: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid #ddd;
}

.content blockquote.lyrics {
  margin: 1.2em 0;
  padding-left: 1.5rem;
  border-left: 3px solid #ccc;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-style: normal;
  font-size: 1em;	
  line-height: 1.5;
}

.content .smalltext {
	font-size: 0.8em;
	max-width: none;
}

.album-cover {
  float: right;
  width: 225px;
  margin: 0 0 1rem 1.5rem;
}

.intro::after {
  content: "";
  display: block;
  clear: both;
}

.header-title {
  min-width: 0; /* important: allows proper sizing inside grid */
}
/*THIS IS A NOTE I JUST ADDED*/

.header-title h1 {
  margin: 0 0 0 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  font-family: cooper-black-std, Merriweather, Georgia, serif;
  font-weight: 400;
  font-style: normal;  
  font-size: 42px;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1;
}

.header-title p {
  margin: 0 0 0 0;
  font-size: 1.25em;
  font-family: cooper-black-std, Merriweather, Georgia, serif;
  font-weight: 400;
  font-style: normal;  
  margin-top: 0;
  padding-top: 0;
  line-height: 1;
}

.listen-text {
  /*font-size: 0.95em;
  opacity: 0.9;*/
  font-family: cooper-black-std, "Merriweather", Georgia, serif;
  font-weight: 400;
  font-style: normal;  
}

.cover-thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* THIS is what keeps the listen image from flying off to the right */
.header-container {
  width: calc(250px + var(--content-max) + 4rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* header internal layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-right {
  max-width: 65ch;         /* the readable column width */
  margin-left: auto;       /* push it to the right edge of the content column */
}

.header-listen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tracks h3 {
  margin-bottom: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

.tracks-header {
  margin: 0.75em 0 0.25em 0;
  font-size: 0.9em;
  font-weight: bold;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}
/*
.track-list {
  list-style: none;
  padding-left: 1rem;
  margin: 0;
}
*/
.tracks ul.track-list {
  list-style: none;
  padding-left: 0.75rem;  /* THIS is your indent */
  margin: 0 0 0 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}


