/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
.search-result-card {
  position: relative;
  border: 3px solid #EDEFF8;
  border-radius: 3px;
  padding: 1.5rem 1.5rem 1.5rem;
  margin-bottom: 1rem;
  max-width: 1140px;
}
@media (min-width: 767px) {
  .search-result-card {
    margin-bottom: 2rem;
  }
}
.search-result-card::after {
  display: block;
  content: "";
  clear: both;
}
.search-result-card svg {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.search-result-card h2.is-h4,
.search-result-card h3.is-h4 {
  font-size: 1.28rem;
  margin-top: -0.25em;
  margin-bottom: 0.5rem;
  font-weight: normal;
}
.search-result-card h2.is-h4 a,
.search-result-card h3.is-h4 a {
  text-decoration: none;
}
.search-result-card__date {
  font-weight: bold;
  margin-top: 0.5rem;
}
.search-result-card__subtitle {
  margin-top: 0.5rem;
}
.search-result-card__image {
  display: none;
  float: right;
  width: 10rem;
  height: auto;
  margin: 0 0 0.25rem 0.5rem;
  text-align: center;
}
.search-result-card__image svg,
.search-result-card__image audio,
.search-result-card__image video {
  width: auto;
  max-width: 10rem;
  height: auto;
  max-height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
  border: 3px solid #EDEFF8;
  background: #EDEFF8;
}
.search-result-card__image img {
  margin-left: auto;
  margin-right: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border: 3px solid #EDEFF8;
  background: #EDEFF8;
  width: auto !important;
}
.search-result-card__image .avatar {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 480px) {
  .search-result-card__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.search-result-card__content--spacing {
  margin-top: 0.5rem;
}
.search-result-card__content::after {
  display: block;
  content: "";
  clear: both;
}
.search-result-card__group-link {
  margin-top: 0.5em;
}
.search-result-card__tags {
  margin-top: 1rem;
}
.search-result-card__footer {
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  top: 0.75rem;
  vertical-align: bottom;
}
.search-result-card__footer:before {
  content: "";
  width: 100%;
  border-top: 1px solid #444444;
  display: block;
  height: 0;
  position: absolute;
  left: 0rem;
  top: -1.5px;
}
.search-result-card__footer a,
.search-result-card__footer span,
.search-result-card__footer .icon {
  text-decoration: none;
}
.search-result-card__footer1 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 0.7rem;
  font-weight: 600;
  margin-right: 0.5rem;
  text-align: left;
}
.search-result-card__footer2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
}
.search-result-card__buttons {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.search-result-card .button {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  margin-right: 0;
  margin-left: 0.5rem;
}

.views-row:first-child > .search-result-card {
  margin-top: 1.5rem;
}