/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	/* font: inherit; */
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Custom styles */

body {
  line-height: 1.6;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #03a9f4;
}

.app {
  font-family: Titillium Web, sans-serif;
  min-height: 100vh;
}

.app-wrapper {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem;
}

.page-archive .app-wrapper {
  max-width: 120rem;
}

.header {
  margin-bottom: 2rem;
  text-align: center;
}

.header__logo {
  width: 110px !important;
}

.header__logo-headline {
  font-size: .8rem;
  font-style: italic;
}

.header__menu {
  margin: 1rem 0;
}

.header__menu--item {
  display: inline;
  padding: .5rem;
  vertical-align: middle;
}

.header__menu--item a {
  padding: .2rem .5rem;
  border-radius: .5rem;
}

.header__menu--item .router-link-exact-active {
  background-color: #ff0;
}

.header__menu--dices {
  width: 16px;
  vertical-align: middle;
}

.archive {
  display: grid;
}

.archive-title {
  font-family: Amaranth, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.archive-table {
  border: 2px solid #000;
  font-size: .8rem;
  margin-bottom: 1rem;
  min-width: 80rem;
  table-layout: fixed;
  width: 100%;
}

.archive-table thead {
  font-weight: 700;
}

.archive-table th {
  background: #000;
  color: #fff;
  padding: .5rem;
  position: -webkit-sticky;
  position: sticky;
  text-align: left;
  top: -2px;
}

.archive-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.archive-table th.sortable:hover {
  background: #333;
}

.archive-table th.sort-asc,
.archive-table th.sort-desc {
  background: #1a1a1a;
}

.archive-table th .sort-indicator {
  font-size: 0.75rem;
  opacity: 0.8;
}

.archive-table th a {
  color: #fff;
}

.archive-table tr {
  border-bottom: 1px solid #ccc;
}

.archive-table tr:last-child {
  border-bottom: none;
}

.archive-table td {
  padding: .5rem;
}

.archive-table__cell--published-at {
  width: 8%;
}

.archive-table__cell--title {
  width: 26%;
}

.archive-table__cell--album,
.archive-table__cell--artist,
.archive-table__cell--song {
  width: 15%;
}

.archive-table__cell--year {
  width: 5%;
}

.archive-table__cell--editor,
.archive-table__cell--category {
  width: 8%;
}

.post-view__title {
  font-family: Amaranth, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-view__title a {
  color: #000;
  text-decoration: none;
}

.post-view__title a:hover {
  text-decoration: underline;
}

.post-view__meta {
  font-size: .8rem;
}

.post-view__editor {
  margin-right: 1rem;
}

.post-view__editor-image {
  border-radius: 1rem;
  margin-right: .5rem;
  width: 20px;
}

.post-view__editor-image,
.post-view__editor-name {
  display: inline-block;
  vertical-align: middle;
}

.post-view__comments-count,
.post-view__date {
  vertical-align: middle;
  margin-right: 1rem;
}

.post-view__permalink {
  display: inline-block;
  vertical-align: middle;
}

.post-view__content {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.post-view__subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.post-view__media {
  margin: 1rem 0;
}

.post-view__media audio {
  width: 100%;
}

.post-view__media-container {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.post-view__media-container iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.post-view__comment {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.post-view__comment-meta {
  margin-top: .5rem;
  font-size: .8rem;
}

.post-view__comment-editor {
  margin-right: 1rem;
}

.post-view__comment-editor-name {
  display: inline-block;
  vertical-align: middle;
}

.post-view__comment-date {
  vertical-align: middle;
  margin-right: 1rem;
}
