/*
 * DO NOT EDIT THIS FILE.
 * Edit .pcss.css file instead and recompile.
*/

/**
 * @file
 * Styles for eventd.
 */

/*
  Custom CSS properties and mixins.
  These are "compiled" by postcss/postcss-custom-properties for IE11 compatibility.
  CSS variables (those that start with --) are included in the generated CSS. Sass style variables (those that start with $) are for internal processing.
*/

/* Internal variables */

/*1px */

/*16px */

/*4px */

/*5.33333333px */

/*8px */

/*12px */

/*20px */

/*24px, */

/*32px */

/*44px (named after omicron variant BS.2.75.2) */

/*48px */

/*desktop + 32px; */

/*max-width + 64px; */

/* RGB colors, useful for when you need to include a color in an RGBA set. */

/* Mixins */

/* */

/* Hide elements visually, but keep them available for screen-readers. */

/* */

/* Used for information required for screen-reader users to understand and use */

/* the site where visual display is undesirable. Information provided in this */

/* manner should be kept concise, to avoid unnecessary burden on the user. */

/* "!important" is used to prevent unintentional overrides. */

/* */

.event-list__time {
    font-family: var(--sans-serif);
  }

.page-view--events {
}

.event-list__date {
  font-weight: 600;
}

.event-category {
  content: "";
  height: 14px;
  width: 14px;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-block;
  /*margin-right: var(--half-space);*/
}

/*display: grid;*/

/*grid-auto-rows: auto;*/

/*grid-template-areas:  "date date" "host title" "blank time" "blank location" "blank tags";*/

/*grid-template-columns: var(--sesqui-space) auto;*/

.event-list:not(.calendar-list) .views-row--date-list .block__label {
    grid-area: date;
  }

.event-list:not(.calendar-list) .views-row--date-list .block__sublabel {
    /*grid-area: time;*/
    margin-bottom: var(--quarter-space);
  }

.event-list:not(.calendar-list) .views-row--date-list .block__sublabel.event__host {
       font-weight: 600;
         display: block;
     }

.event-list:not(.calendar-list) .views-row--date-list .views-field-field-host-term {
    margin-top: 12px;
    /*grid-area: host;*/
  }

.event-list:not(.calendar-list) .views-row--date-list .block__title {
     grid-area: title;
   }

.event-list:not(.calendar-list) .views-row--date-list .views-field-field-location-locality {
    /*grid-area: location;*/
  }

.event-list:not(.calendar-list) .views-row--date-list .block__tags {
    /*grid-area: tags;*/
  }

.event-list:not(.calendar-list) .views-row--date-list .views-field-field-event-summary {
    /*grid-area: time;*/
  }

.event-list .view-header {
    margin-bottom: var(--space);
    margin-top: var(--double-space);
  }

.event-list .view-header:after {
  display: block;
  content: "";
  height: 1px;
  width: 100%;
  background-image: url("../../images/dotted.png");
  background-repeat: repeat-x;
     }

