.container {
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  padding: 0 2rem;
}

.category-sports, .category-ent, .category-tech {
  display: inline-block;
  color: #fff;
  font-size: 0.55rem;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-radius: 15px;
  margin-bottom: 0.5rem;
}

.category-sports {
  background: #f99500;
}

.category-ent {
  background: #a66bbe;
}

.category-tech {
  background: #009cff;
}

.btn-primary, .btn-secondary, .btn-dark, .btn-light, .btn-block {
  display: inline-block;
  border: none;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
}

.btn-primary:hover, .btn-secondary:hover, .btn-dark:hover, .btn-light:hover, .btn-block:hover {
  opacity: 0.8;
}

.btn-primary {
  background: #c72727;
  color: #fff;
}

.btn-secondary {
  background: #f99500;
  color: #fff;
}

.btn-dark {
  background: #333;
  color: #fff;
}

.btn-light {
  background: #f3f3f3;
  color: #333;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.py-1 {
  padding: 1rem 0;
}

.py-2 {
  padding: 2rem 0;
}

.py-3 {
  padding: 3rem 0;
}

.py-4 {
  padding: 4rem 0;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.my-1 {
  margin: 1rem 0;
}

.my-2 {
  margin: 2rem 0;
}

.my-3 {
  margin: 3rem 0;
}

.my-4 {
  margin: 4rem 0;
}

.m-1 {
  margin: 1rem;
}

.m-2 {
  margin: 2rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.card {
  background: #fff;
  padding: 1rem;
}

.bg-primary {
  background: #c72727;
  color: #fff;
}

.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary a {
  color: #fff;
}

.bg-secondary {
  background: #f99500;
  color: #fff;
}

.bg-secondary h1, .bg-secondary h2, .bg-secondary h3, .bg-secondary a {
  color: #fff;
}

.bg-dark {
  background: #333;
  color: #fff;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark a {
  color: #fff;
}

.bg-light {
  background: #f3f3f3;
  color: #333;
}

.bg-light h1, .bg-light h2, .bg-light h3, .bg-light a {
  color: #333;
}

.list li {
  padding: 0.5rem 0;
  border-bottom: #555 dotted 1px;
  width: 90%;
}

.list li a:hover {
  color: #c72727 !important;
}

.page-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5fr 2fr;
      grid-template-columns: 5fr 2fr;
  grid-gap: 1.5rem;
  margin: 2rem 0;
}

.page-container > *:first-child {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1 / span 3;
}

.l-heading {
  font-size: 3rem;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.5;
  background: #f3f3f3;
}

a {
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
}

p {
  margin: 0.5rem 0;
}

img {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Staatliches', cursive;
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

#main-nav {
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
}

#main-nav .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6fr 3fr 2fr;
      grid-template-columns: 6fr 3fr 2fr;
  padding: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-nav .logo {
  width: 180px;
}

#main-nav ul {
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main-nav ul a {
  padding: 0.75rem;
  font-weight: bold;
}

#main-nav ul a.current {
  background: #c72727;
  color: #fff;
}

#main-nav ul a:hover {
  background: #f3f3f3;
  color: #333;
}

#main-nav .social {
  -ms-grid-column-align: center;
      justify-self: center;
}

#main-nav .social i {
  color: #777;
  margin-right: 0.5rem;
}

#main-nav .social i:hover {
  color: #c72727;
}

#showcase {
  color: #fff;
  background: #333;
  padding: 2rem;
  position: relative;
}

#showcase::before {
  content: '';
  background: url("../img/featured.jpg") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

#showcase .showcase-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50vh;
}

#showcase .showcase-container .showcase-content {
  z-index: 1;
}

#showcase .showcase-container .showcase-content p {
  margin-bottom: 1rem;
}

#home-articles .articles-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

#home-articles .articles-container .card-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / span 2;
}

#home-articles .articles-container .span-2 {
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2 / span 2;
}

#main-footer {
  background: #333;
  color: #fff;
}

#main-footer img {
  width: 150px;
}

#main-footer a {
  color: #fff;
}

#main-footer .footer-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
}

#main-footer .footer-container > *:last-child {
  background: #444;
  -ms-grid-column: 1;
  -ms-grid-column-span: 4;
  grid-column: 1 / span 4;
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
}

#main-footer .footer-container input[type='email'] {
  width: 90%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

#main-footer .footer-container input[type='submit'] {
  width: 90%;
}

#article .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eee;
  padding: 0.5rem;
}

#article .meta .category-ent {
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  #main-nav .container {
    -ms-grid-rows: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 1.2rem;
  }
  #main-nav .container .logo, #main-nav .container .social, #main-nav .container ul {
    -ms-grid-column-align: center;
        justify-self: center;
  }
  #main-nav .container ul a {
    padding: 0.5rem;
  }
  #home-articles .articles-container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  #home-articles .articles-container .card-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-column: 1;
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  #showcase .showcase-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #home-articles .articles-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #main-footer .footer-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #main-footer .footer-container > *:last-child {
    -ms-grid-column: 1;
    grid-column: 1;
  }
  #main-footer .footer-container > *:first-child {
    border-bottom: #444 dotted 1px;
    padding-bottom: 1rem;
  }
  #main-footer .footer-container > *:nth-child(2) {
    border-bottom: #444 dotted 1px;
    padding-bottom: 1rem;
  }
  .page-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
  .page-container > *:first-child {
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .page-container .l-heading {
    font-size: 2rem;
  }
}
/*# sourceMappingURL=main.css.map */