/**
 * Styles for customizations related to the News section of the site.
 */
/*
 * Responsive font size mixins.
 */
/*
 * Text styling.
 * Also see heading.scss.
 */
.text-bold {
  font-weight: 700;
}

.text-label {
  font-weight: 700;
  margin-right: 5px;
}

.text-centered {
  text-align: center;
}

.text-small-3 {
  font-size: 0.5rem;
}

.text-small-2 {
  font-size: 0.8rem;
}

.text-small-1 {
  font-size: 0.9rem;
}

.text-normal {
  font-size: 1rem;
}

.text-large-1 {
  font-size: 1.1rem;
}

.text-large-2 {
  font-size: 1.3rem;
}

.text-large-3 {
  font-size: 1.5rem;
}

.text-large-4 {
  font-size: 2rem;
}

.text-large-5 {
  font-size: 3rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*
 * News listing page.
 */
.news-listing {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (min-width: 1540px) {
  .news-listing {
    max-width: 1250px;
  }
}

h2.news-list {
  font-size: 2rem;
}

/**
 * Strip - News.
 */
.strip--news .strip-panel--date {
  flex: 1;
}
.strip--news .date-segment--month {
  order: 1;
}
.strip--news .date-segment--day-number {
  order: 2;
}
.strip--news .date-segment--year {
  order: 3;
}

.news__tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.news__tags li:not(:last-child) {
  margin-right: 3px;
}
.news__tags li:not(:last-child)::after {
  content: " / ";
}

.article--news {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
  font-size: 1.2rem;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1540px) {
  .article--news {
    max-width: 1250px;
  }
}
.article--news label {
  font-weight: 700;
}

.news__meta {
  font-size: 0.8rem;
}
@media screen and (min-width: 1024px) {
  .news__meta {
    font-size: 1rem;
  }
}

.news__media {
  margin: 0 auto 25px;
  max-width: 800px;
  max-height: 500px;
}

.news__extras {
  border: 1px solid #4c4c4c;
  padding: 10px;
  font-size: 0.8rem;
}
@media screen and (min-width: 1024px) {
  .news__extras {
    font-size: 1rem;
  }
}
.news__extras div {
  margin: 10px 5px;
}
.news__extras ul {
  padding: 3px 3rem;
}
.news__extras label {
  display: block;
}