/* Minification failed. Returning unminified contents.
(2,3): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,38): run-time error CSS1039: Token not allowed after unary operator: '-homepage-articles-per-row'
 */
:root {
  --homepage-articles-per-row: 1;
}
@media (min-width: 992px) {
  :root {
    --homepage-articles-per-row: 2;
  }
}
@media (min-width: 1400px) {
  :root {
    --homepage-articles-per-row: 3;
  }
}

.asset-homepage-feature .articles {
  display: grid;
  grid-template-columns: repeat(var(--homepage-articles-per-row), 1fr);
  gap: 20px;
}
.asset-homepage-feature .articles .article .outer {
  position: relative;
  font-size: 14px;
  background-color: #333;
  background-position: 50% 50%;
  background-size: cover;
  transition: color 0.4s ease;
}
.asset-homepage-feature .articles .article .outer:hover {
  color: #fff;
}
.asset-homepage-feature .articles .article .outer:hover .inner {
  background-color: rgba(16, 160, 214, 0.9);
}
.asset-homepage-feature .articles .article .outer:hover .inner time {
  color: #fff;
}
.asset-homepage-feature .articles .article .outer:hover .inner .type {
  color: #FFD400;
}
.asset-homepage-feature .articles .article .outer:hover .inner a {
  border-color: #FFD400;
  color: #FFD400;
}
.asset-homepage-feature .articles .article .outer .faux-img-link {
  display: block;
  height: 153px;
  vertical-align: top;
}
.asset-homepage-feature .articles .article .inner {
  padding-top: 12px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: background-color 0.4s ease;
  line-height: 24px;
}
.asset-homepage-feature .articles .article .inner time, .asset-homepage-feature .articles .article .inner .type, .asset-homepage-feature .articles .article .inner h5, .asset-homepage-feature .articles .article .inner p, .asset-homepage-feature .articles .article .inner a {
  line-height: inherit;
}
.asset-homepage-feature .articles .article .inner time {
  width: 80px;
  float: left;
  text-align: right;
  color: #666;
  transition: color 0.4s ease;
}
.asset-homepage-feature .articles .article .inner .content {
  position: relative;
  padding: 0 20px 38px 100px;
}
.asset-homepage-feature .articles .article .inner .type {
  display: block;
  margin-bottom: 10px;
  color: #10A0D6;
  transition: color 0.4s ease;
}
.asset-homepage-feature .articles .article .inner h5 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: bold;
}
.asset-homepage-feature .articles .article .inner p {
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 1400px) {
  .asset-homepage-feature .articles .article .inner p {
    font-size: 16px;
  }
}
.asset-homepage-feature .articles .article .inner a {
  display: block;
  position: absolute;
  bottom: 0;
  left: 100px;
  right: 0;
  padding-bottom: 10px;
  border-bottom: 4px solid #10A0D6;
  text-decoration: none;
  color: #10A0D6;
  transition: 0.4s ease;
  transition-property: border-color, color;
}
.asset-homepage-feature .articles .article .inner a:hover .text {
  transform: translate3D(30px, 0, 0);
}
.asset-homepage-feature .articles .article .inner a:hover .text .fi {
  opacity: 1;
}
.asset-homepage-feature .articles .article .inner a .text {
  display: inline-block;
  position: relative;
  transition: transform 0.4s ease;
}
.asset-homepage-feature .articles .article .inner a .text .fi {
  position: absolute;
  top: 0;
  left: -30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.asset-homepage-feature .articles .adverts .outer {
  padding-bottom: 75%;
  position: relative;
}
.asset-homepage-feature .articles .adverts .outer .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.asset-homepage-feature .articles .adverts .outer .cell {
  width: 100%;
  height: 100%;
}

#homepage-modal {
  position: relative;
  width: auto;
  max-width: 900px;
  margin: 20px auto;
  border: 6px solid #00aeef;
  background: #000;
  animation: ws-reveal 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
#homepage-modal .inner {
  position: relative;
  z-index: 20;
}
#homepage-modal .mfp-close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #00aeef;
  color: #fff;
  opacity: 1;
  transform: translate(6px, -100%);
}
