/**
 * Content Types (nodes)
 *  - in Drupal a content type is a bunch of fields we use to enter and display
 *    content, such as pages, blog posts, forum posts and so on. Each of those
 *    is usually a content type you create in the Drupal admin.
 *  - an instance of a content type (e.g. a single blog post) is called a node,
 *    the root template is node.html.twig and the base selector is .node {}
 ============================================================================ */
.node {
  border: 1px solid;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 3px;
}

.node:before, .node:after {
  content: " ";
  display: table;
}

.node:after {
  clear: both;
}

.node p:last-of-type {
  margin-bottom: 0;
}

.node__status {
  float: right;
}

.node__title {
  border-bottom: 1px solid;
  margin-bottom: 0.375rem;
  padding-bottom: 0.375rem;
}

.node--view-mode-full__title {
  margin: 0 0 1rem;
}

.node .field-type-image__item {
  border: 1px solid;
  border-radius: 3px;
  padding: 0.75rem;
  display: inline-block;
}

.node .field-type-image__figcaption {
  padding: 0.75rem 0 0 0;
}

.node__meta {
  margin: 1rem 0;
  overflow: hidden;
}

.node__meta .field-type-image {
  float: left;
  margin: 0 0.75rem 0 0;
}

.node__meta .field-type-image__figure {
  margin: 0;
  padding: 0;
}

.node__meta .field-type-image img {
  width: auto;
  height: 3rem;
}

.node__meta .field-type-image__item {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
}

.node__meta article:empty {
  display: none;
}

.node .node__author:after {
  content: "-";
  display: inline-block;
}

.node__meta--has-author-picture .node__author:after {
  display: none;
}

.node__meta--has-author-picture .node__author,
.node__meta--has-author-picture .node__pubdate {
  margin: 0;
  display: block;
}

@media all and (max-width: 60em) {
  .node .node__author:after {
    display: none;
  }
  .node .node__author,
  .node .node__pubdate {
    margin: 0;
    display: block;
  }
}

.node__links {
  clear: both;
}

.node--sticky {
  padding: 0;
}
/*# sourceMappingURL=node.css.map */