/* SCSS Framework boilerplate from Ristretto: https://github.com/kylelarkin/ristretto */
* {
  box-sizing: border-box;
}

body, select, input, textarea {
  color: #333;
}

::-moz-selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

::selection {
  background: #ccc;
  color: #000;
  text-shadow: none;
}

a:link {
  -webkit-tap-highlight-color: transparent;
}

ins {
  background-color: #ccc;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ccc;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.featured-news h2 svg {
  display: inline-block;
}
.featured-news ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  margin-bottom: 5rem;
  margin-top: 1.5rem;
}
@media (min-width: 320px) {
  .featured-news ul {
    margin-bottom: calc(5rem + 3.6625 * (100vw - 320px) / 1120);
  }
}
@media (min-width: 1440px) {
  .featured-news ul {
    margin-bottom: 8.6625rem;
  }
}
@media (min-width: 768px) {
  .featured-news ul li.post {
    align-items: center;
    max-width: 100%;
    display: grid;
    position: relative;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .featured-news ul li.post .post-featured-image-container {
    width: 55%;
    position: absolute;
    height: 100%;
  }
}
.featured-news ul li.post .post-featured-image-container picture {
  display: contents;
}
.featured-news ul li.post .post-featured-image-container img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (min-width: 768px) {
  .featured-news ul li.post .post-featured-image-container img {
    border-radius: 10px;
  }
}
.featured-news ul li.post .post-detail-container {
  padding: 1.5rem;
  background-color: #EF5C48;
  border-radius: 0 0 10px 10px;
  color: #fff;
}
@media (min-width: 768px) {
  .featured-news ul li.post .post-detail-container {
    width: 50%;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 1.9375rem 0;
    justify-self: end;
  }
}
@media (min-width: 1024px) {
  .featured-news ul li.post .post-detail-container {
    padding: 2.3125rem 7rem 2.625rem 3.4375rem;
  }
}
.featured-news ul li.post .post-detail-container .post-detail-category {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.featured-news ul li.post .post-detail-container h3 {
  color: #fff;
  margin-top: 0;
}
.featured-news ul li.post .post-detail-container .post-detail-date {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 2.3rem;
}
.featured-news ul li.post .post-detail-container .post-detail-excerpt {
  font-size: 16px;
  margin-bottom: 1.9375rem;
}
@media (min-width: 320px) {
  .featured-news ul li.post .post-detail-container .post-detail-excerpt {
    font-size: calc(16px + 2 * (100vw - 320px) / 1120);
  }
}
@media (min-width: 1440px) {
  .featured-news ul li.post .post-detail-container .post-detail-excerpt {
    font-size: 18px;
  }
}
.featured-news ul li.post .post-detail-container .post-detail-perma {
  background-color: #fff;
  border-radius: 24px;
  border: 0;
  color: #00407B;
  cursor: pointer;
  text-align: center;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.36px;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0.7rem 2rem 0.6rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-block;
}
.featured-news ul li.post .post-detail-container .post-detail-perma:hover {
  transform: scale(1.0125);
}
