/**
 * 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 {
  margin-bottom: 1.25em;
  padding: 1.25em;
  border-radius: 2px;
}

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

.node__status {
  float: right;
}

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

.node--view-mode-teaser ul:last-of-type {
  margin-bottom: 0;
}

.node__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1rem 0;
}

.node__meta .field-type-image {
  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 article:empty {
  display: none;
}

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

.node__meta--has-author-picture .node__submitted {
  margin-top: 0.25rem;
}

.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 screen 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;
}

.page-node-type--home-page .node {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-node-type--home-page .atl__lr {
  width: 100%;
  margin: 0;
}

.page-node-type--home-page .node--type-what-can-you-do .node__title {
  display: none;
}

.page-node-type--home-page .node__content .atl__cw .atl__lc {
  background-color: #ffffff;
  -webkit-box-shadow: 2px 3px 4px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 3px 4px 2px rgba(0, 0, 0, 0.1);
}

.page-node-type--home-page .node__content .layout__region--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-node-type--home-page .node__content .layout__region--content .field-name-title a {
  color: black;
  font-weight: 700;
  font-size: 1.2em;
}

.page-node-type--home-page .node__content .layout__region--content .field-name-title a:hover, .page-node-type--home-page .node__content .layout__region--content .field-name-title a:active {
  text-decoration: none;
}

.page-node-type--home-page .node__content .layout__region--content p {
  text-align: justify;
}

.block-plugin-id--block-content-0398d5be-bbae-4e78-a481-348d75d382ac {
  width: 100%;
}
/*# sourceMappingURL=node.css.map */