.interview-archive > p {
    max-width: 80ch;
    margin: 0.75em auto 1em;
}
.archive-nav, .latest-updates, .missing-interviews {
    max-width: 80ch;
    margin: 1.5em auto;
    padding: 1em;
    text-align: center;
    background-color: var(--blockquote-bg);
    border: 1px solid var(--blockquote-border);
    border-left: 3px solid var(--heading-accent);
    border-right: 3px solid var(--heading-accent);
    border-radius: 6px;
}
.archive-nav a {
    display: inline;
    padding: 0.02em 0.3em;
    border: 1px solid var(--accent-soft);
    border-radius: 0.35em;
    background:
      linear-gradient(
         to bottom,
         var(--blockquote-bg),
         var(--link-bg)
        );
    box-shadow: 1px 1px 1px var(--blockquote-shadow);
    line-height: 1.6;
}
.archive-nav a:hover {
    color: var(--heading-accent);
    border-color: var(--accent);
    font-style: italic;
}
.update-list, .interview-list {
    list-style: none;
    max-width: 74ch;
    margin: 0.75em auto;
    padding-left: 0;
    text-align: left;
}
.update-list li, .interview-list li {
    list-style: none;
    position: relative;
    margin: 0.45em 0;
    padding-left: 2rem;
    line-height: 1.6;
}
.interview-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.08em;
    width: 22px;
    height: 22px;
    background-image: url('/assets/graphics/book.gif');
    background-size: contain;
    background-repeat: no-repeat;
}
.update-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.08em;
    width: 17px;
    height: 19px;
    background-image: url('/assets/graphics/bunny.gif');
    background-size: contain;
    background-repeat: no-repeat;
}
.theme-blue .update-list li::before, .theme-blue .interview-list li::before {
    filter:
        hue-rotate(210deg)
        saturate(1.1)
        brightness(0.9)
        contrast(1.3);
}
.theme-tan .update-list li::before, .theme-tan .interview-list li::before {
    filter:
        sepia(0.7)
        hue-rotate(-15deg)
        saturate(0.9)
        brightness(1.0)
        contrast(1.15);
}
.interview-meta {
    font-size: 0.75em;
    color: var(--italics);
    margin-left: 0.35ch;
}
.interview-decade {
    margin: 2em auto;
}
.interview-year {
    margin: 1.75em auto;
}
.interview-month {
    margin: 1.1em auto;
}
.interview-month h4 {
    text-align: center;
    padding-bottom: 0.25em;
    margin-bottom: 0.35em;
}
.decade-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 0.5em;
    border: 2px solid #644331;
    box-shadow: 0.25em 0.25em 0.5em rgba(0,0,0,0.4);
}
.missing-list code {
    font-size: 0.9em;
}
.decor {
    position: fixed;
    bottom: 0;
    right: 0;
}
.decor a {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    line-height: 0;
}

.decor img {
    max-width: 100px;
    height: auto;
    display: block;
}
@media (max-width: 1024px) {
    .archive-nav, .latest-updates, .missing-interviews {
        max-width: 100%;
        padding: 0.8em;
    }
    .update-list, .interview-list {
        max-width: 100%;
        margin: 0.75em 0;
    }
    .update-list li, .interview-list li {
        padding-left: 1.75rem;
    }
    .decor {
        width: 25vw;
        max-width: 80px;
    }
    .decor img {
        width: 100%;
        height: auto;
    }
}
