* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.text-justify {
  text-align: justify;
}

p {
  font-size: 1.2em;
  padding-right: 15px;
}
.main-content.news {
  height: 100vh;
  background: #f4f7f5;
}

.container.news {
  background: silver;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2em 1fr 3em;
  grid-template-rows: 2em 1fr 2em;
  grid-row-gap: 1em;
  grid-template-areas:
    'header header .'
    '. col1 .'
    '. . . ';
}
.section-group {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    'dottedline dottedline'
    'newsimg newstext';
  grid-column-gap: 1em;
}

.dotted-underline {
  grid-area: dottedline;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.0625rem dotted #666;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}
.text-block-link {
  grid-area: newsimg;
}

.text-block-wrapper {
  grid-area: newstext;
}

.text-block-wrapper > h4 {
  font-size: 1.2em;
}

.container.news p {
  font-size: 1.4em;
}
.news-container blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}
.news-container cite {
  font-size: 0.9em;
}

.news-container blockquote .small:before,
.news-container blockquote footer:before,
.news-container blockquote small:before {
  content: '\2014 \00A0';
}
.news-container a.headline {
  color: rgba(27, 26, 27, 0.8);
  font-size: 1.8em;
  text-decoration: none;
}
.news-container a.sublink {
  color: rgba(27, 26, 27, 0.8);
  font-size: 1.4em;
  text-decoration: none;
}

.news-container p a.sublink {
  font-size: 1.1em;
}
.news-container a:visited,
.news-container a:focus,
.news-container a:hover {
  color: rgba(78, 64, 80, 1);
}

article > header {
  align-content: center;
  margin-top: 3rem;
  border-bottom: 0.0625rem dotted #dfdfdf;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-size: 2rem;
  -webkit-font-smoothing: antialiased;
  color: #666;
}
.news-container {
  background: linear-gradient(to top, #666, rgba(27, 26, 27, 0.8)),
    url(../images/magnetite.jpg) center no-repeat;
  background-size: cover;
  align-items: center;
  justify-content: center;
}
.news-container img {
  width: 360px;
  padding: 1em;
}

#col-1 {
  grid-area: col1;
}
#col-2 {
  grid-area: col2;
}
@media screen and (min-width: 2400px) {
  .container.news {
    width: 55%;
  }
}
@media (max-width: 1920px) {
  .container.news p {
    font-size: 1em;
  }
  .news-container a {
    font-size: 1.2em;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .container.news {
    display: flex;
    flex-direction: column;
  }
  .text-block-wrapper {
    grid-area: newstext;
    padding: 1em;
  }
}

@media (max-width: 767px) {
  .container.news {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .section-group {
    display: flex;
    flex-direction: column;
  }
  .text-block-wrapper {
    grid-area: newstext;
    padding: 1em;
  }
}
