@charset "UTF-8";
section.post-list {
  padding: 0 1rem;
}
section.post-list.base-style {
  margin-bottom: 20px;
}
section.post-list .inner-wrapper .header {
  grid-area: header;
}
section.post-list .inner-wrapper .header h2 {
  color: var(--haymarket-blue);
  margin: 20px 0 14px;
  font-size: 1.25rem !important;
}
section.post-list .inner-wrapper .header h2 a .arrow {
  margin-left: 20px;
  border: solid var(--haymarket-blue);
  border-width: 0 2.8px 2.8px 0;
  display: inline-block;
  padding: 5.6px;
  transform: rotate(-45deg);
  border-inline-color: var(--haymarket-blue);
}
section.post-list .inner-wrapper .header .more-link {
  display: none;
}
section.post-list .inner-wrapper .posts-wrapper {
  grid-area: posts;
}
section.post-list .inner-wrapper .posts-wrapper ul {
  padding: 0;
}
section.post-list .inner-wrapper .posts-wrapper ul li {
  list-style: none;
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--slate);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
section.post-list .inner-wrapper .posts-wrapper ul li a {
  font-family: var(--font-family-serif);
  font-size: 1.125rem;
  font-weight: 600;
}
section.post-list .inner-wrapper .posts-wrapper ul li a.clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
section.post-list .inner-wrapper .posts-wrapper ul li a.clamp-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
section.post-list .inner-wrapper .posts-wrapper ul li.tiled-on-mobile {
  flex-direction: column;
  border-bottom: none;
}
section.post-list .inner-wrapper .posts-wrapper ul li .post-thumbnail img {
  width: auto;
  min-height: 102px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
section.post-list .inner-wrapper .posts-wrapper ul li .content .post-eyebrow {
  text-transform: uppercase;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  margin-top: 7px;
}
section.post-list .inner-wrapper .posts-wrapper ul li .content .post-excerpt {
  display: none;
  color: var(--haymarket-blue);
  font-size: 0.875rem;
  line-height: 24px;
}
section.post-list .inner-wrapper .posts-wrapper ul li .content .post-byline {
  margin-top: 10px;
  font-size: 0.875rem;
}
section.post-list .inner-wrapper .posts-wrapper ul li .content .post-byline a {
  display: inline;
  color: var(--steel);
  font-size: 0.875rem;
  font-weight: 700;
}
section.post-list .inner-wrapper .posts-wrapper ul li .content .post-byline .by-text {
  color: initial;
  font-size: 0.875rem;
  font-weight: 400;
}
section.post-list .inner-wrapper .posts-wrapper ul li .content .post-date {
  font-size: 0.875rem;
  color: #000000;
}
section.post-list.desktop-ad .inner-wrapper {
  grid-template-areas: "header header" "posts ad";
  grid-template-columns: 1fr 330px;
}
section.post-list.desktop-ad .inner-wrapper .posts-wrapper {
  margin-right: 20px !important;
}
section.post-list.excerpt-on-mobile .inner-wrapper .posts-wrapper ul li .content .post-excerpt {
  display: block;
}
section.post-list.excerpt-on-mobile .inner-wrapper .posts-wrapper ul li .content .post-excerpt.clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
section.post-list.excerpt-on-mobile .inner-wrapper .posts-wrapper ul li .content .post-excerpt.clamp-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
section.post-list.mpr-container .inner-wrapper .header {
  position: relative;
  border-bottom: 1px solid var(--light-grey);
  margin-bottom: 20px;
}
section.post-list.mpr-container .inner-wrapper .header::before {
  position: absolute;
  content: "";
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--brand-primary);
  border-radius: 50%;
  bottom: -4px;
  outline: 4px solid #ffffff;
}
section.post-list.mpr-container .inner-wrapper .header::after {
  position: absolute;
  content: "";
  right: 0;
  width: 7px;
  height: 7px;
  background-color: var(--brand-primary);
  bottom: -4px;
  border-radius: 50%;
  outline: 4px solid #ffffff;
}

@media (min-width: 768px) {
  section.post-list .inner-wrapper .posts-wrapper ul li .content .post-excerpt {
    display: none;
  }
  section.post-list.mpr-container .inner-wrapper {
    max-width: 576px !important;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  section.post-list {
    padding: 0 1rem;
  }
  section.post-list .inner-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-areas: "header" "posts" "ad";
  }
  section.post-list .inner-wrapper .header {
    grid-area: header;
    display: flex;
    align-items: center;
  }
  section.post-list .inner-wrapper .header h2 {
    margin: 20px 36px 20px 0;
    font-size: 2.1875rem !important;
  }
  section.post-list .inner-wrapper .header h2 a {
    pointer-events: none;
  }
  section.post-list .inner-wrapper .header h2 a .arrow {
    display: none;
  }
  section.post-list .inner-wrapper .header .more-link {
    margin-left: auto;
    color: var(--blue);
    text-decoration: underline;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
  }
  section.post-list .inner-wrapper .posts-wrapper {
    margin-right: 20px;
    position: relative;
    overflow: hidden;
  }
  section.post-list .inner-wrapper .posts-wrapper ul {
    border-bottom: 1px solid var(--slate);
    left: 0;
    padding: 0;
    transition: all 0.3s ease 0s;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li {
    border-bottom: none;
    border-top: 1px solid var(--slate);
    margin-bottom: 10px;
    padding-top: 18px;
    padding-bottom: 0;
    flex-direction: row;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li a {
    font-family: var(--font-family-serif);
    font-size: 1.4375rem;
    font-weight: 600;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li .post-thumbnail {
    flex-basis: 28%;
    min-width: 180px;
    margin-right: 22px;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li.tiled-on-mobile {
    flex-direction: row;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li .post-eyebrow {
    margin-top: 0 !important;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li .post-excerpt.clamp-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  section.post-list .inner-wrapper .posts-wrapper ul li .post-excerpt.clamp-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  section.post-list .inner-wrapper .posts-wrapper ul.page1 {
    position: relative;
    top: 0;
    left: -100%;
    opacity: 0;
  }
  section.post-list .inner-wrapper .posts-wrapper ul.page2 {
    display: grid;
    position: absolute;
    width: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    margin: 0;
  }
  section.post-list .inner-wrapper .posts-wrapper ul.current {
    left: 0;
    opacity: 1;
  }
  section.post-list.base-style {
    max-width: 100%;
  }
  section.post-list.base-style .inner-wrapper .posts-wrapper {
    margin-right: 0;
  }
  section.post-list.base-style .inner-wrapper .posts-wrapper > ul > li {
    padding-top: 10px;
  }
  section.post-list.base-style .inner-wrapper .posts-wrapper > ul > li:first-child {
    border-top: 3px solid var(--haymarket-blue);
  }
  section.post-list.base-style .inner-wrapper .posts-wrapper > ul > li .post-title {
    font-size: 1.25rem;
    font-weight: 600;
  }
  section.post-list.base-style .inner-wrapper .posts-wrapper > ul > li .post-excerpt {
    /* -webkit-box is needed for clamp */
    display: -webkit-box;
  }
  section.post-list.small-header {
    padding: 0;
  }
  section.post-list.small-header .inner-wrapper .header h2 {
    font-size: 1.5rem !important;
    margin: 7px 36px 7px 0;
  }
  section.post-list .dfp-ad {
    grid-area: ad;
    width: 330px;
    justify-self: end;
  }
  section.post-list.mpr-container .inner-wrapper {
    max-width: 1400px !important;
  }
}
section.post-list.paginated {
  padding: 0 1rem;
  margin-bottom: 20px;
}
section.post-list.paginated .inner-wrapper .header .round-nav-buttons {
  display: none;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul.slick-initialized {
  display: block;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-list li {
  border-bottom: none;
  width: 311px !important;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-dots {
  display: flex;
  justify-content: center;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-dots li {
  border-bottom: none;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-dots li button {
  border: 0 !important;
  background: 0 0 !important;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-dots li button::before {
  font-size: 14px;
  line-height: 20px;
  position: absolute;
  width: 14px;
  height: 14px;
  content: "•";
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-dots li button:focus {
  box-shadow: none !important;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul .slick-dots .slick-active button::before {
  color: var(--brand-primary) !important;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(5), section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(6) {
  display: none;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul li .post-thumbnail {
  min-height: 166px;
  margin-right: 10px;
}
section.post-list.paginated .inner-wrapper .posts-wrapper ul.page2 {
  display: none;
}
section.post-list.paginated .inner-wrapper .dfp-ad {
  grid-area: ad;
}
section.post-list.paginated.paginated-without-slider {
  padding: 0;
}
section.post-list.paginated.paginated-without-slider .inner-wrapper {
  display: flex;
  flex-direction: column;
}
section.post-list.paginated.paginated-without-slider .inner-wrapper .header {
  padding: 0 1rem;
}
section.post-list.paginated.paginated-without-slider .inner-wrapper .dfp-ad {
  order: 3;
}
section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper {
  padding: 0 1rem;
}
section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul {
  margin-bottom: 0;
}
section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul li .content .post-excerpt {
  display: none;
}
section.post-list.paginated.mpr-news-feature .posts-wrapper ul li:first-child {
  border-top: none;
  padding-top: 0;
}
section.post-list.paginated.mpr-news-feature .posts-wrapper ul li:nth-child(2) {
  border-top: none;
  padding-top: 0;
}

@media (min-width: 767px) {
  section.post-list.paginated .inner-wrapper .posts-wrapper ul li .post-thumbnail {
    min-height: initial;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul li .content .clamp-3 {
    font-size: 1.1875rem;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul li:first-child {
    border-top: 3px solid var(--haymarket-blue);
    padding-top: 10px;
  }
}
@media (min-width: 992px) {
  section.post-list.paginated {
    min-height: 250px;
  }
  section.post-list.paginated .inner-wrapper {
    grid-template-areas: "header header" "posts ad";
  }
  section.post-list.paginated .inner-wrapper .header .round-nav-buttons {
    display: block;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
    transition: all 0.3s ease 0s;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(5), section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(6), section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(11), section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(12) {
    border-bottom: none;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(5), section.post-list.paginated .inner-wrapper .posts-wrapper ul li:nth-child(6) {
    display: flex;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul.page1 {
    position: relative;
    top: 0;
    left: -100%;
    opacity: 0;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul.page2 {
    display: grid;
    position: absolute;
    width: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    margin: 0;
  }
  section.post-list.paginated .inner-wrapper .posts-wrapper ul.current {
    left: 0;
    opacity: 1;
  }
  section.post-list.paginated div.dfp-ad {
    width: 330px;
    justify-self: end;
  }
  section.post-list.paginated.paginated-without-slider {
    padding: 0 1rem;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper {
    display: grid;
    grid-template-areas: "header ad" "posts ad";
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .header {
    padding: 0;
    margin-right: 20px;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .header h2 {
    font-size: 1.5rem !important;
    margin: 0 0 5px;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper {
    padding: 0;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul {
    border-bottom: none;
    grid-template-columns: repeat(1, 1fr);
    gap: initial;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul li {
    border-top: 1px solid var(--haymarket-blue);
    border-bottom: none;
    padding: 12px 0;
    margin-bottom: 0;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul li .content {
    padding-top: 0;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul li .content .clamp-2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  section.post-list.paginated.paginated-without-slider .inner-wrapper .posts-wrapper ul li .content .post-excerpt {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  section.post-list.paginated.advisory-board-module .inner-wrapper .header h2 {
    margin-right: 18px;
  }
}
section.post-list.tiled {
  margin-bottom: 20px;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul {
  display: none;
  border-bottom: none;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul.slick-initialized {
  display: block;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-list li {
  width: 311px !important;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-dots {
  display: flex;
  justify-content: center;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-dots li {
  border: none;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-dots li button {
  border: 0 !important;
  background: 0 0 !important;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-dots li button::before {
  font-size: 14px;
  line-height: 20px;
  position: absolute;
  width: 14px;
  height: 14px;
  content: "•";
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-dots li button:focus {
  box-shadow: none !important;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul .slick-dots .slick-active button::before {
  color: var(--brand-primary) !important;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li {
  padding-left: 1rem;
  padding-top: 0;
  border-top: none;
  border-bottom: none;
  display: block;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li:first-child {
  padding-left: 0;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li.tiled-ad {
  display: none;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li a .post-thumb {
  width: 100%;
  min-height: 166px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li a .post-title {
  font-family: var(--font-family-serif);
  font-size: 1.125rem;
  font-weight: 600;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li a .post-author {
  font-size: 0.875rem;
  font-weight: 700;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li .post-excerpt {
  display: none;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li .post-byline {
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
}
section.post-list.tiled .inner-wrapper .posts-wrapper ul li .post-byline a {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
}
section.post-list.tiled .inner-wrapper .posts-wrapper .slick-dots li button {
  border: 0 !important;
  background: 0 0 !important;
}
section.post-list.tiled .inner-wrapper .posts-wrapper .slick-dots li button::before {
  font-size: 14px;
  line-height: 20px;
  position: absolute;
  width: 14px;
  height: 14px;
  content: "•";
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
section.post-list.tiled .inner-wrapper .posts-wrapper .slick-dots li button:focus {
  box-shadow: none !important;
}
section.post-list.tiled .inner-wrapper .posts-wrapper .slick-dots .slick-active button::before {
  color: var(--brand-primary) !important;
}

@media (min-width: 768px) {
  section.post-list.tiled {
    padding: 0 1rem;
  }
  section.post-list.tiled .inner-wrapper {
    max-width: 1180px;
    margin: 0 auto;
  }
  section.post-list.tiled .inner-wrapper .header {
    display: flex;
    align-items: center;
    padding-left: 0;
  }
  section.post-list.tiled .inner-wrapper .header h2 {
    margin: 20px 36px 20px 0;
    font-size: 2.1875rem !important;
  }
  section.post-list.tiled .inner-wrapper .header h2 a {
    pointer-events: none;
  }
  section.post-list.tiled .inner-wrapper .header h2 a .arrow {
    display: none;
  }
  section.post-list.tiled .inner-wrapper .header .more-link {
    margin-left: auto;
    color: var(--blue);
    text-decoration: underline;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper {
    position: relative;
    overflow: hidden;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list {
    display: grid;
    grid-template-columns: 40% 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li {
    padding-left: 0;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li.tiled-ad {
    display: block;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li .post-thumb {
    min-height: 354px;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li .post-title {
    font-size: 1.4375rem;
    font-weight: 600;
    font-family: var(--font-family-serif);
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li .post-excerpt {
    margin-top: 10px;
    font-size: 1.125rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li .post-author {
    color: var(--blue);
    font-size: 0.875rem;
    font-weight: 700;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(1) {
    grid-column: 1;
    grid-row: 1/3;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(2) a .post-thumb, section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(3) a .post-thumb, section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(4) a .post-thumb, section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(5) a .post-thumb {
    min-height: 188px;
  }
  section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(2) .post-excerpt, section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(3) .post-excerpt, section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(4) .post-excerpt, section.post-list.tiled .inner-wrapper .posts-wrapper ul.tiled-list li:nth-child(5) .post-excerpt {
    display: none;
  }
  section.post-list.tiled .inner-wrapper .dfp-ad {
    margin: 0 auto;
    max-width: 330px;
    justify-self: end;
  }
}

/*# sourceMappingURL=subject-taxonomy.min.css.map */
