#blog { background-image: url('/assets/img/news/coffee-2306471_1920.jpg'); }

section { display: flex; flex-flow: row nowrap; }

.news { 
  width: 65%; 
  margin-left: 0;
  flex-flow: column wrap;
}

.news .content {
  justify-content: center;
  flex-flow: row nowrap;
  display: flex;
  height: 500px;
}

.news .main_article {
  height: 400px;
  margin: 5vh 0;
}

.news article {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.news article > a {
  position: absolute;
  background-color: rgb(0 0 0 / 40%);
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  top: 0;
  left: 0;
  transition: opacity .3s ease;
  opacity: 1;
}

.news article:hover > a { opacity: .3; }

.news article > div {
  padding: 25px;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
  flex-flow: column nowrap;
}

.news article > div > a {
  z-index: 3;
  font-size: 1.2rem;
  color: white;
  line-height: 1.2;
  border: 1px solid #97db4f;
  padding: .4rem .5rem;
}

.news article > div > h3 {
  margin: 10px 0 14px;
  z-index: 3;
}

.news article > div > h3 > a {
  font-size: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: #abff51;
  text-shadow: 0 0 8px black;
  font-family: 'Permanent Marker';
}

.news article > div > span {
  line-height: 1.7rem;
  font-size: 1.1rem;
  text-transform: capitalize;
  color: white;
  z-index: 3;
}

.news-archive {
  display: flex;
  width: auto;
  margin: 0;
  padding: 1rem;
  align-items: baseline;
  flex-flow: column nowrap;
}

.news-archive a {
  color: #212121;
  font-family: 'Lato';
}

.news-archive h3 {
  font-family: 'Permanent Marker';
  color: #009e95;
  margin-top: 1rem;
  margin-left: 0;
}
.news-archive ul { 
  list-style-type: none; 
  padding-left: 1rem;
  margin: 0;
}
.news-archive ul > li {
  padding: 1rem;
  padding-left: 0;
  color: #212121;
}