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.taxonomy-conference-coverage {
  background: #f2f3f1;
  padding: 10px 1rem 0;
  display: none;
  margin-bottom: 20px !important;
}
section.taxonomy-conference-coverage.has-curated-terms {
  display: block;
}
section.taxonomy-conference-coverage .header h2 {
  margin-bottom: 15px;
}
section.taxonomy-conference-coverage .header a::after {
  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: solid var(--haymarket-blue);
  content: "";
}
section.taxonomy-conference-coverage #conference-content {
  display: inline-block;
  position: relative;
  width: 100%;
}
section.taxonomy-conference-coverage #conference-content a.conf-image {
  width: 100%;
  display: inline-block;
}
section.taxonomy-conference-coverage #conference-content a.conf-image img {
  height: auto;
  margin: 0;
  width: 100%;
}
section.taxonomy-conference-coverage #conference-content .conference-info {
  box-shadow: 7px 7px 15px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 20px;
  width: calc(100% - 40px);
  margin: -70px 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 60%;
}
section.taxonomy-conference-coverage #conference-content .conference-info .cate-name {
  font-size: 12px;
  font-weight: 700;
  color: #0067a5;
  text-transform: uppercase;
}
section.taxonomy-conference-coverage #conference-content .conference-info .title {
  margin: 8px 0 17px;
  display: block;
}
section.taxonomy-conference-coverage #conference-content .conference-info .title a {
  font-weight: 600;
  font-family: var(--font-family-serif);
  font-size: 18px;
  line-height: 1.28;
  color: #292354;
  text-decoration: none;
}
section.taxonomy-conference-coverage #conference-content .conference-info .title a:hover {
  text-decoration: underline;
}
section.taxonomy-conference-coverage #conference-content .conference-info a.conf-button {
  display: inline-block;
  height: 30px;
}
section.taxonomy-conference-coverage #conference-content .conference-info a.conf-button input {
  height: 30px;
  max-width: 175px;
  width: 100%;
  font-weight: 600;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
section.taxonomy-conference-coverage.conf_coverage_page {
  display: none;
}

@media (min-width: 768px) {
  section.taxonomy-conference-coverage {
    padding: 10px 1rem 50px;
  }
  section.taxonomy-conference-coverage .header a::after {
    content: none;
  }
  section.taxonomy-conference-coverage #conference-content {
    padding-left: 40px;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info {
    margin: -220px 0 0 40px;
    justify-content: center !important;
    width: 48%;
    position: absolute;
    right: 40px;
    height: 230px;
    padding: 35px;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info .cate-name {
    font-weight: bold;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info a.conf-image {
    min-height: 280px;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info a.conf-image img {
    height: 285px;
  }
}
@media (min-width: 992px) {
  section.taxonomy-conference-coverage .inner-wrapper {
    max-width: 1100px;
    margin: 0 auto;
  }
  section.taxonomy-conference-coverage #conference-content {
    padding-left: 100px;
  }
  section.taxonomy-conference-coverage #conference-content a.conf-image {
    width: 60%;
    min-height: 370px;
  }
  section.taxonomy-conference-coverage #conference-content a.conf-image img {
    height: 372px;
    object-fit: cover;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info {
    width: 39.45%;
    position: absolute;
    right: 100px;
    top: 25px;
    justify-content: left;
    height: 322px;
    margin-top: 0;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info .cate-name {
    font-size: 15px;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info .title a {
    font-size: 30px;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info a.conf-button {
    height: 45px;
  }
  section.taxonomy-conference-coverage #conference-content .conference-info a.conf-button input {
    height: 45px;
    max-width: 245px;
    font-size: 16px;
  }
  section.taxonomy-conference-coverage.conf_coverage_page {
    display: block;
    margin-bottom: 0 !important;
    padding: 25px 1rem;
  }
  section.taxonomy-conference-coverage.conf_coverage_page .header {
    display: none;
  }
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content {
    padding-left: 16px;
  }
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content .conference-info {
    width: 60%;
    position: absolute;
    right: 16px;
    height: 230px;
    padding: 20px;
  }
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content .conference-info .title a {
    font-size: 24px;
  }
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content a.conf-image {
    min-height: 270px;
  }
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content a.conf-image img {
    height: 270px;
  }
}
@media (min-width: 1200px) {
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content {
    padding-left: 20px;
  }
  section.taxonomy-conference-coverage.conf_coverage_page #conference-content .conference-info {
    width: 48%;
    right: 20px;
    padding: 35px;
  }
}

/*# sourceMappingURL=conference-page.min.css.map */
