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.taxonomy {
  display: none;
  padding: 0 1rem;
}
section.post-list.taxonomy .inner-wrapper {
  max-width: 1180px;
  margin: 0 auto;
}
section.post-list.taxonomy .inner-wrapper .header h2 {
  margin: 0 10px 0 0;
}
section.post-list.taxonomy .inner-wrapper .posts-wrapper {
  margin-right: 0;
}
section.post-list.taxonomy .inner-wrapper .posts-wrapper ul {
  padding: 0;
  margin: 0;
  display: none;
  border: none;
}
section.post-list.taxonomy .inner-wrapper .posts-wrapper ul.slick-initialized {
  display: block;
}
section.post-list.taxonomy .inner-wrapper .posts-wrapper ul li {
  list-style: none;
  margin-right: 13px;
  border: none;
}
section.post-list.taxonomy .inner-wrapper .posts-wrapper ul li a {
  width: 100%;
  height: 149px;
  padding: 0 10px;
  background-position: center center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-color: #999999;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
section.post-list.taxonomy .inner-wrapper .posts-wrapper ul li a:focus, section.post-list.taxonomy .inner-wrapper .posts-wrapper ul li a:active {
  background-position: center center;
  background-size: cover;
  background-color: #999999;
}
section.post-list.taxonomy.page-layout {
  display: block;
}
section.post-list.taxonomy.page-layout .inner-wrapper .header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
section.post-list.taxonomy.page-layout .inner-wrapper .posts-wrapper ul {
  margin-top: 0;
  visibility: visible;
  gap: 50px 43px;
}
section.post-list.taxonomy.resource-center {
  display: block;
}
section.post-list.taxonomy.resource-center .inner-wrapper .header h2 {
  margin: 20px 0 14px;
}
section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper {
  margin-right: 0;
}
section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul {
  display: flex !important;
  flex-flow: row wrap;
  margin-top: 15px;
  padding: 0;
  gap: 0 45px;
}
section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul li {
  flex: 1 1 calc(100% - 45px);
  max-height: 58px;
  list-style: none;
  padding: 15px 0;
  margin: 0;
}
section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul li:hover {
  background: var(--brand-primary);
}
section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul li a {
  background: none;
  color: #261656;
  width: auto;
  height: 100%;
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 400;
  justify-content: left;
}

@media (min-width: 768px) {
  section.post-list.taxonomy {
    display: block;
    margin-bottom: 20px;
  }
  section.post-list.taxonomy .inner-wrapper .header {
    display: flex;
    align-items: center;
  }
  section.post-list.taxonomy .inner-wrapper .header h2 {
    color: var(--haymarket-blue);
    margin: 20px 30px 15px 0;
    line-height: 1.2;
  }
  section.post-list.taxonomy .inner-wrapper .header h2 a {
    pointer-events: none;
  }
  section.post-list.taxonomy .inner-wrapper .header .round-nav-buttons .round-button::before {
    border-color: var(--haymarket-blue) !important;
    opacity: 0.75;
    border-width: 0 2px 2px 0 !important;
  }
  section.post-list.taxonomy .inner-wrapper .header .round-nav-buttons .round-button.slick-disabled::before {
    opacity: 0.25;
  }
  section.post-list.taxonomy .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.taxonomy .inner-wrapper .posts-wrapper ul {
    display: none;
  }
  section.post-list.taxonomy .inner-wrapper .posts-wrapper ul.slick-initialized {
    display: block;
  }
  section.post-list.taxonomy .inner-wrapper .posts-wrapper ul li a {
    width: 260px;
  }
  section.post-list.taxonomy.page-layout {
    display: block;
  }
  section.post-list.taxonomy.page-layout .inner-wrapper .posts-wrapper ul {
    visibility: visible;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px 43px;
    margin-top: 50px;
  }
  section.post-list.taxonomy.page-layout .inner-wrapper .posts-wrapper ul li {
    margin: 0;
  }
}
@media (min-width: 992px) {
  section.post-list.taxonomy.resource-center .inner-wrapper .header h2 {
    margin: 20px 30px 15px 0;
  }
  section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul {
    flex-flow: column wrap;
    height: 522px;
    overflow: initial;
    min-height: 522px;
    box-shadow: none;
  }
  section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul li {
    flex: 1 1 calc(33.33% - 45px);
    border-top: solid 1px #979797;
  }
  section.post-list.taxonomy.resource-center .inner-wrapper .posts-wrapper ul li:nth-child(9n) {
    border-bottom: solid 1px #979797;
  }
}

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