:root {
    --width: 720px;
    --font-head: "termina", SF Pro Display, sans-serif; /* Heading */
    --font-body: "Inter", serif; /* Body */
    --font-mono: "IBM Plex Mono", Menlo, monospace;
    --font-scale: 1.1em;
    --background-color: #fefffe;
    --heading-color: #2c2a4a;
    --text-color: #0b0014;
    --link-color: #d100d1;
    --visited-color: #de6e4b;
    --blockquote-color: #2c2a4a;
    --highlight-color: #ddd;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-scale);
    margin: auto;
    padding: 20px;
    max-width: var(--width);
    text-align: left;
    background-color: var(--background-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--heading-color);
    line-height: 1.2em;
    font-weight: 700;
}

h2,
h3 {
    margin-top: 40px;
}

a {
    color: var(--link-color);
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

nav a {
    margin-right: 8px;
}

nav {
    display: flex;

}

strong,
b {
    color: var(--heading-color);
}

time {
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 15px;
}

main {
    line-height: 1.6;
}

/* blog post list */
ul.blog-posts {
    list-style-type: none;
    padding: unset;
}

ul.blog-posts li {
    display: flex;
}

ul.blog-posts li .date {
    flex: 0 0 120px;
}

.releaseid {
    padding-right: 4px;
    font-style: normal;
}

ul.blog-posts li a:visited {
    color: var(--visited-color);
}

.spacer {
    margin-bottom: 40px;
    margin-top: 40px;
}

.single-cover {
    width: 50%;
    max-width: 100%;
}

.polyodik {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--heading-color);
}

.polyodik:hover {
    color: var(--link-color);
}

/* RELEASE GRID */
.release-grid {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}

.release-grid > * {
    width: 140px;
    margin: 10px;
}

.cover img {
    width: 140px;
    height: 140px;
}

.releases-grid .name {
  margin-top: 0.5rem;
  text-align: left;
}

footer {
    margin-top: 40px;
}

/* ARTIST PROFILE*/

.artist-profile {
    display: flex;
    flex-flow: row;
    margin-top: 40px;
    margin-bottom: 40px;
    align-items: top;
}

.artist-profile > * {
    display: flex;
    flex-flow: column;
    align-items: top;
}

#artist-info h1 {
    margin-top: 0px;
    text-align: left;
}

#artist-logo {
    margin-right: 40px;
}

#artist-logo img {
    height: 120px;
    width: 120px;
}

.artist-page > content {
    display: flex;
    flex-flow: column;
    align-items: left;
    text-align: left;
}

.artist-page > content > * {
    line-height: 1.4;
    margin-bottom: 10px;
    margin-top: 0px;
}

/* Mobile */
@media (max-width: 670px) {
    .release-grid > * {
        width: 130px;
        margin: 10px;
    }

    .single-cover {
        width: 100%;
    }

    .artist-profile {
        display: flex;
        flex-flow: column;
        margin-top: 40px;
        margin-bottom: 40px;
        align-items: top;
    }

    #artist-logo img {
        margin-bottom: 20px;
    }
}

.termina-bold {
    font-family: var(--font-head);
    font-weight: 700;
}

#logotype img {
    max-height: 220px;
}
