body {
  --dark-grey: #515966;
  --light-grey: #EEF1F6;
  --bittersweet: #FF6666;
  --white: #fff;
  --black: #000;
  --ps-blue: #102582;
  --ps-red: #982440;
  --text-grey: #333;
}

.section-dark {
  background: var(--dark-grey);
  color: var(--white);
}

.section-grey {
  background: var(--light-grey);
  color: #333;
}

* {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: Raleway, Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 500;
}

p, ul, ol {
  font-size: 18px;
  margin: 0;
}

p {
  margin-bottom: 1em;
}

p a, p a:visited, .text a, .text a:visited {
  color: #000;
  font-weight: 600;
}

phillipsoft-logo {
  --font-size: 30px;
  display: inline-block;
  z-index: 1;
}

body > nav {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 2rem;
  align-items: center;
  padding: 0 1rem;
  font-size: 14px;
}

body > nav ul {
  list-style-type: none;
  margin: 1em 0;
  padding: 0;
  display: grid;
  grid-column-gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

body > nav ul li {
  display: inline-block;
}

body > nav ul li:not(.contact-us-link) {
  display: none;
}

@media only screen and (min-device-width: 768px) {
  body > nav ul.nav-links-2 {
    grid-template-columns: repeat(2, max-content) 1fr;
  }

  body > nav ul.nav-links-3 {
    grid-template-columns: repeat(3, max-content) 1fr;
  }

  body > nav ul li:not(.contact-us-link) {
    display: inline-block;
  }
}
body > nav ul .contact-us-link {
  text-align: right;
}

body > nav ul .contact-us-link a {
  display: inline-block;
  padding: 0.5em 0.8em;
  background: tomato;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 75%;
}

body > nav ul a {
  text-decoration: none;
}

body > nav ul li:not(.contact-us-link) a,
body > nav ul li:not(.contact-us-link) a:visited {
  color: inherit;
}

body > nav ul li:not(.contact-us-link) a:hover {
  color: var(--top-nav-link-hover, var(--ps-red));
}

@media only screen and (min-device-width: 768px) {
  body > nav {
    font-size: 18px;
  }

  body > nav ul {
    grid-column-gap: 1.5rem;
  }
}
@media screen and (max-width: 556px) {
  body > nav ul li:nth-child(2) {
    display: none;
  }
}
footer {
  min-height: 75px;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 3rem !important;
  padding-bottom: 1rem !important;
}

.footer-links {
  display: grid;
  text-align: center;
}

.footer-links h1 {
  color: var(--ps-blue);
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-link a, .footer-links a:visited {
  color: #333;
  text-decoration: none;
}

.copyright p {
  text-align: center;
  font-size: 75%;
}

@media only screen and (min-device-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 200px);
    text-align: left;
  }
}
.unstyled-list {
  list-style-type: none;
  padding: 1em 0;
  line-height: 1.5;
}

.contained-section {
  padding: 2rem 1rem;
}

.container {
  padding: 0 1rem;
}

@media only screen and (min-device-width: 768px) {
  .contained-section {
    padding: 4rem 8rem;
  }

  .container {
    padding: 0 8rem;
  }
}
.button {
  font-family: inherit;
  border: none;
  background: #102582;
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.button:hover {
  background: #40519b;
}

.link-button {
  display: inline-block;
  padding: 0.5em 0.8em;
  text-align: center;
  text-decoration: none;
}

body > header {
  text-align: center;
}

#posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
#posts article {
  display: grid;
}
#posts article img {
  max-height: 150px;
  justify-self: center;
  border-radius: 5px;
  margin-bottom: 0.8rem;
}
#posts article h1 {
  font-weight: 600;
}
#posts article h1 a, #posts article h1 a:visited {
  color: inherit;
}
#posts article time {
  font-size: 90%;
}
#posts article .read-more {
  background: var(--dark-grey);
  color: var(--white);
}

#mailing-list {
  display: grid;
  justify-content: center;
  margin-top: 6rem;
}

/*# sourceMappingURL=posts.css.map */
