/**
 * Small fixes for Hugo + Twenty Fifteen without WordPress admin bar / widgets chrome.
 */

/* Ensure full-width entry content images from markdown look right */
.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-content figure {
  margin: 0 0 1.6em;
}

/* Widget count badge */
.widget_categories .count {
  color: rgba(51, 51, 51, 0.5);
  font-size: 0.9em;
}

/* Footer separator spacing */
.site-info [role="separator"]::before {
  content: " · ";
  margin: 0 0.25em;
}

/* Archives list is plain text (no monthly archive pages yet) */
.widget_archive li {
  color: rgba(51, 51, 51, 0.7);
}

/* Pagination dots spacing */
.navigation.pagination .page-numbers.dots {
  display: inline-block;
  padding: 0.5em;
}

/* Recent comments widget excerpt */
.widget_recent_comments .comment-excerpt {
  display: block;
  color: rgba(51, 51, 51, 0.65);
  font-size: 0.9em;
  margin-top: 0.25em;
}

/* Default avatar placeholder when no gravatar URL in export */
.comment-author .avatar-default {
  display: inline-block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaeaea;
  vertical-align: middle;
  margin-right: 0.75em;
}
