/* =================================================================== */
/* Rss Parser - news feed listing
/* Brand indigo #333399, matching the header and main menu.
====================================================================== */
#rssfeed {
  margin: 0;
}
#rssfeed .feed-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding: .9em .75em;
  border-top: 1px solid #ececec;
  color: #555;
  text-decoration: none;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}
#rssfeed .feed-item:first-child {
  border-top: 0;
}
/* == Thumbnail == */
#rssfeed .feed-image {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 72px;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  margin-right: .9em;
  background-color: #f1f1f1;
  border-radius: 2px;
}
#rssfeed .feed-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  object-fit: cover;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
/* == Text == */
#rssfeed .feed-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}
#rssfeed .feed-title {
  display: block;
  margin: 0;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: .9375em;
  font-weight: 500;
  line-height: 1.35;
  color: #2b2b2b;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}
#rssfeed .feed-date {
  display: block;
  margin-top: .35em;
  font-size: .75em;
  line-height: 1.2;
  color: #9a9a9a;
}
#rssfeed .feed-summary {
  margin: .5em 0 0;
  font-size: .8125em;
  line-height: 1.5;
  color: #777;
}
/* == Featured, first item == */
#rssfeed .feed-item.featured {
  display: block;
  padding-bottom: 1.1em;
}
#rssfeed .featured .feed-image {
  width: auto;
  height: 0;
  margin: 0 0 .8em;
  padding-bottom: 56.25%;
}
#rssfeed .featured .feed-title {
  font-size: 1.0625em;
  line-height: 1.3;
}
/* == States == */
#rssfeed .feed-item:hover {
  background-color: #f6f7fb;
}
#rssfeed .feed-item:hover .feed-title {
  color: #333399;
}
#rssfeed .feed-item:hover .feed-image img {
  opacity: .88;
}
#rssfeed .feed-item:focus {
  outline: 0;
  background-color: #f6f7fb;
}
#rssfeed .feed-item:focus .feed-title {
  color: #333399;
}
/* Article that is open on the page right now */
#rssfeed .feed-item.current {
  background-color: #f2f3fa;
  cursor: default;
}
#rssfeed .feed-item.current:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background-color: #333399;
}
#rssfeed .feed-item.current .feed-title {
  color: #333399;
}
/* == Small screens, the feed sits under the article == */
@media only screen and (max-width: 767px) {
  #rssfeed .feed-item.featured {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #rssfeed .featured .feed-image {
    -ms-flex: 0 0 96px;
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    margin: 0 .9em 0 0;
    padding-bottom: 0;
  }
  #rssfeed .featured .feed-title {
    font-size: .9375em;
  }
  #rssfeed .featured .feed-summary {
    display: none;
  }
}
