:root {
  --button-color-outline: var(--color-border-tertiary);
  --button-color-text: var(--color-text-button);
  --button-color-text-hover: var(--color-text-secondary);
  --button-color-background-hover: var(--color-surface-secondary);
  --button-color-highlight-text: var(--button-color-text);
  --button-highlight-background: var(--color-surface-highlight);
  --button-highlight-color-background-hover: var(--button-color-background-hover);
  --button-highlight-color-text-hover: var(--button-color-text-hover);
}

.block__anatomy-post-list {
  display: flex;
  justify-content: center;
  padding: var(--spacing-lg) 0;
  --color-heading: var(--color-text-heading);
  --border-color: #232532;
  --gap: var(--spacing-md);
}
.block__anatomy-post-list.bg-white {
  background: var(--color-surface-primary);
}
.block__anatomy-post-list.bg-yellow {
  background: var(--color-brand-yellow);
  --button-color-highlight-text: var(--color-text-secondary);
  --button-highlight-background: var(--color-brand-dark-green);
  --button-highlight-color-background-hover: var(--color-brand-white);
  --button-highlight-color-text-hover: var(--color-text-primary);
}
.block__anatomy-post-list.bg-mid-green {
  background: var(--color-brand-mid-green);
  --button-color-highlight-text: var(--color-text-secondary);
  --button-highlight-background: var(--color-brand-dark-green);
  --button-highlight-color-background-hover: var(--color-brand-white);
  --button-highlight-color-text-hover: var(--color-text-primary);
}
.block__anatomy-post-list.bg-green, .block__anatomy-post-list.bg-dark {
  color: var(--color-text-secondary);
  --color-heading: var(--color-text-highlight);
  --button-color-background-hover: var(--color-brand-white);
  --button-color-outline: var(--color-brand-white);
  --button-color-text: var(--color-brand-white);
  --button-color-text-hover: var(--color-text-primary);
  --button-color-highlight-text: var(--color-text-primary);
  --button-highlight-color-background-hover: var(--color-brand-white);
  --button-highlight-color-text-hover: var(--color-text-primary);
}
.block__anatomy-post-list.bg-green {
  background: var(--color-surface-secondary);
}
.block__anatomy-post-list.bg-green.type-text {
  --color-heading: var(--color-text-highlight);
}
.block__anatomy-post-list.bg-dark {
  background: var(--color-surface-dark);
}
.block__anatomy-post-list.bg-off-white {
  background: var(--color-surface-tertiary);
}
.block__anatomy-post-list.bg-green, .block__anatomy-post-list.bg-dark {
  --color-heading: var(--color-text-secondary);
}
.block__anatomy-post-list .wrapper {
  max-width: var(--container-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block__anatomy-post-list .wrapper .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  width: 100%;
  gap: var(--spacing-sm);
}
.block__anatomy-post-list .wrapper .top .texts {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.block__anatomy-post-list .wrapper .top .texts h3 {
  font: var(--type-b3);
  margin-bottom: var(--spacing-sm);
}
.block__anatomy-post-list .wrapper .top .texts h2 {
  font: var(--type-h1);
  letter-spacing: -1.28px;
  margin-bottom: var(--spacing-sm);
  max-width: 70%;
  color: var(--color-heading);
}
.block__anatomy-post-list .wrapper .top .texts p {
  font: var(--type-b3);
  max-width: 70%;
}
.block__anatomy-post-list .wrapper .top.align-left {
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: end;
}
.block__anatomy-post-list .wrapper .top.align-left .texts {
  align-items: start;
  text-align: left;
  flex-grow: 1;
}
.block__anatomy-post-list .wrapper .top.align-left .cta {
  width: auto;
}
.block__anatomy-post-list .wrapper .top .cta {
  display: block;
  margin-top: var(--spacing-sm);
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  color: var(--button-color-highlight-text);
  background: var(--button-highlight-background);
}
.block__anatomy-post-list .wrapper .top .cta:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .top .cta:hover {
  color: var(--button-highlight-color-text-hover);
  background: var(--button-highlight-color-background-hover);
}
.block__anatomy-post-list .wrapper .events-type-picker {
  display: none;
  margin-top: auto;
  padding: 10px var(--spacing-xs);
  background: var(--color-surface-secondary);
  border-radius: var(--radius-small);
}
body.page-slug-events .block__anatomy-post-list .wrapper .events-type-picker {
  display: block;
}
.block__anatomy-post-list .wrapper .events-type-picker ul {
  display: flex;
  gap: var(--spacing-xs);
}
.block__anatomy-post-list .wrapper .events-type-picker ul li {
  cursor: pointer;
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  --button-color-text: var(--color-text-secondary);
  --button-color-text-hover: var(--color-text-heading);
  --button-color-background-hover: var(--color-surface-highlight);
}
.block__anatomy-post-list .wrapper .events-type-picker ul li:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .events-type-picker ul li.active {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .taxonomies {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block__anatomy-post-list .wrapper .taxonomies:has(.taxonomy) {
  margin-bottom: var(--spacing-lg);
}
.block__anatomy-post-list .wrapper .taxonomies .taxonomy ul {
  display: flex;
  gap: var(--spacing-sm);
}
.block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  border: 1px solid transparent;
  transition: border 0.3s;
  padding: var(--spacing-xs) var(--spacing-sm) !important;
}
.block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a:hover {
  border: 1px solid var(--button-color-outline);
}
.block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a.active {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  border: 1px solid var(--button-color-outline);
}
.block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a.active:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .posts {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  width: 100%;
}
.block__anatomy-post-list .wrapper .posts .post {
  width: 100%;
}
.block__anatomy-post-list .wrapper .posts .post.hidden {
  display: none;
}
.block__anatomy-post-list .wrapper .cta-holder {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}
.block__anatomy-post-list .wrapper .cta-holder .cta-end {
  display: block;
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  color: var(--button-color-highlight-text);
  background: var(--button-highlight-background);
}
.block__anatomy-post-list .wrapper .cta-holder .cta-end:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .cta-holder .cta-end:hover {
  color: var(--button-highlight-color-text-hover);
  background: var(--button-highlight-color-background-hover);
}
.block__anatomy-post-list .wrapper .load-more {
  margin-top: var(--spacing-md);
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  color: var(--button-color-highlight-text);
  background: var(--button-highlight-background);
}
.block__anatomy-post-list .wrapper .load-more:hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list .wrapper .load-more:hover {
  color: var(--button-highlight-color-text-hover);
  background: var(--button-highlight-color-background-hover);
}
.block__anatomy-post-list.layout-default .wrapper .posts .post {
  max-width: calc((100% - var(--gap) * 3) / 4);
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .media {
  aspect-ratio: 15/11;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  display: block;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .media .index {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  z-index: 1;
  background: var(--color-surface-highlight);
  font: var(--type-b3);
  min-width: 30px;
  text-align: center;
  padding: 4px 10px;
  border-radius: var(--radius-small);
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post:hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-xs);
  gap: 10px;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info .date {
  order: 1;
  font: var(--type-b3);
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info .tags {
  display: none;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info .posttype {
  font: var(--type-b4);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info .posttype::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--color-surface-highlight);
  border-radius: 2px;
  margin-right: 5px;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info h4 {
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-default .wrapper .posts .post .info p {
  display: none;
}
.block__anatomy-post-list.layout-default .wrapper .posts .post.type-directory .info .date {
  display: none;
}
@media screen and (max-width: 768px) {
  .block__anatomy-post-list.layout-default .wrapper .posts .post.type-events .info h4 {
    font: var(--type-b4);
  }
  .block__anatomy-post-list.layout-default .wrapper .posts .post.type-events .info .date {
    font: var(--type-b4);
    font-size: 12px;
    margin-top: -10px;
  }
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post {
  max-width: calc((100% - var(--gap) * 2) / 3);
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .media {
  aspect-ratio: 15/11;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  display: block;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .media .index {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  z-index: 1;
  background: var(--color-surface-highlight);
  font: var(--type-b3);
  min-width: 30px;
  text-align: center;
  padding: 4px 10px;
  border-radius: var(--radius-small);
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post:hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-xs);
  gap: 10px;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info .date {
  order: 1;
  font: var(--type-b3);
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info .tags {
  display: none;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info .posttype {
  font: var(--type-b4);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info .posttype::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--color-surface-highlight);
  border-radius: 2px;
  margin-right: 5px;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info h4 {
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post .info p {
  display: none;
}
.block__anatomy-post-list.layout-three-across .wrapper .posts .post.type-directory .info .date {
  display: none;
}
@media screen and (max-width: 768px) {
  .block__anatomy-post-list.layout-three-across .wrapper .posts .post.type-events .info h4 {
    font: var(--type-b4);
  }
  .block__anatomy-post-list.layout-three-across .wrapper .posts .post.type-events .info .date {
    font: var(--type-b4);
    font-size: 12px;
    margin-top: -10px;
  }
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: calc((100% - var(--gap)) / 2);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
  box-sizing: content-box;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post:hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .media {
  aspect-ratio: 31/20;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  display: block;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-smd);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .date {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  order: 1;
  font: var(--type-b4);
  padding: 4px var(--spacing-xs);
  background: var(--color-surface-highlight);
  border-radius: var(--radius-small);
  color: var(--button-color-highlight-text);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .date .date-compact {
  display: none;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .tags {
  display: flex;
  gap: 10px;
  align-items: center;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .tags a:not(.tag-cta-link) {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  padding: 4px var(--spacing-xs);
  font: var(--type-b4);
  color: var(--button-color-highlight-text);
  background: var(--color-surface-highlight);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .tags a:not(.tag-cta-link):hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .tags .tag-cta-link {
  font: var(--type-b4);
  margin-left: var(--spacing-xs);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .tags .tag-cta-link:hover {
  text-decoration: underline;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .tags:empty {
  display: none;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info .posttype {
  display: none;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info h4 {
  padding-top: 10px;
  font: var(--type-h2);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post .info p {
  font: var(--type-b3);
  padding-top: 10px;
  margin-bottom: auto;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .info {
  order: 1;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .info p {
  display: none;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .info .date {
  position: static;
  font: var(--type-b1);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-top: 10px;
  color: var(--color-text-primary);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .info .tags a {
  display: none;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .info .tags:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: var(--color-surface-highlight);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .info .tags:after {
  content: "Events";
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-events .media {
  order: 2;
  margin-top: auto;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news {
  display: flex;
  flex-direction: column;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info {
  order: 1;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info .tags {
  order: 1;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info .date {
  left: auto;
  right: var(--gap);
  top: 0px;
  background: transparent;
  padding-right: 0;
  color: var(--button-color-highlight-text);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info .date .date-compact {
  display: inline;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info a:has(h4) {
  order: 3;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info a:has(p) {
  order: 4;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .info:has(.tags:empty) h4 {
  padding-top: 0;
  width: calc(100% - 200px);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post.type-news .media {
  order: 2;
  margin-top: auto;
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post:nth-child(n+3) {
  margin-top: calc(var(--spacing-md) - var(--spacing-sm));
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post:nth-child(odd) {
  padding-right: var(--gap);
}
.block__anatomy-post-list.layout-all-featured .wrapper .posts .post:nth-child(even) {
  margin-left: calc(-1 * var(--gap));
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1), .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) {
  max-width: calc((100% - var(--gap)) / 2);
  padding-bottom: var(--spacing-md);
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: content-box;
  border-bottom: 1px solid #232532;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1):hover .media img, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2):hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .media, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .media {
  aspect-ratio: 31/20;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  display: block;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .media img, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-smd);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .date, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .date {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  order: 1;
  font: var(--type-b4);
  padding: 4px var(--spacing-xs);
  background: var(--color-surface-highlight);
  border-radius: var(--radius-small);
  color: var(--button-color-highlight-text);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .date .date-compact, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .date .date-compact {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .tags, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .tags {
  display: flex;
  gap: 10px;
  align-items: center;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .tags a:not(.tag-cta-link), .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .tags a:not(.tag-cta-link) {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  padding: 4px var(--spacing-xs);
  font: var(--type-b4);
  color: var(--button-color-highlight-text);
  background: var(--color-surface-highlight);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .tags a:not(.tag-cta-link):hover, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .tags a:not(.tag-cta-link):hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .tags .tag-cta-link, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .tags .tag-cta-link {
  font: var(--type-b4);
  margin-left: var(--spacing-xs);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .tags .tag-cta-link:hover, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .tags .tag-cta-link:hover {
  text-decoration: underline;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .tags:empty, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .tags:empty {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info .posttype, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info .posttype {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info h4, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info h4 {
  padding-top: 10px;
  font: var(--type-h2);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) .info p, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) .info p {
  font: var(--type-b3);
  padding-top: 10px;
  margin-bottom: auto;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .info, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .info {
  order: 1;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .info p, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .info p {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .info .date, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .info .date {
  position: static;
  font: var(--type-b1);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-top: 10px;
  color: var(--color-text-primary);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .info .tags a, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .info .tags a {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .info .tags:before, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .info .tags:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: var(--color-surface-highlight);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .info .tags:after, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .info .tags:after {
  content: "Events";
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-events .media, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-events .media {
  order: 2;
  margin-top: auto;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news {
  display: flex;
  flex-direction: column;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info {
  order: 1;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info .tags, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info .tags {
  order: 1;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info .date, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info .date {
  left: auto;
  right: var(--gap);
  top: 0px;
  background: transparent;
  padding-right: 0;
  color: var(--button-color-highlight-text);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info .date .date-compact, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info .date .date-compact {
  display: inline;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info .date .date-full, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info a:has(h4), .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info a:has(h4) {
  order: 3;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info a:has(p), .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info a:has(p) {
  order: 4;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .info:has(.tags:empty) h4, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .info:has(.tags:empty) h4 {
  padding-top: 0;
  width: calc(100% - 200px);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1).type-news .media, .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2).type-news .media {
  order: 2;
  margin-top: auto;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(1) {
  padding-right: var(--gap);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(2) {
  margin-left: calc(-1 * var(--gap));
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3):nth-child(-n+6) {
  margin-top: var(--spacing-md);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) {
  max-width: calc((100% - var(--gap) * 3) / 4);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .media {
  aspect-ratio: 15/11;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  display: block;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .media .index {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  z-index: 1;
  background: var(--color-surface-highlight);
  font: var(--type-b3);
  min-width: 30px;
  text-align: center;
  padding: 4px 10px;
  border-radius: var(--radius-small);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3):hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-xs);
  gap: 10px;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .date {
  order: 1;
  font: var(--type-b3);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .tags {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .posttype {
  font: var(--type-b4);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .posttype::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--color-surface-highlight);
  border-radius: 2px;
  margin-right: 5px;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info h4 {
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info p {
  display: none;
}
.block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3).type-directory .info .date {
  display: none;
}
@media screen and (max-width: 768px) {
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3).type-events .info h4 {
    font: var(--type-b4);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3).type-events .info .date {
    font: var(--type-b4);
    font-size: 12px;
    margin-top: -10px;
  }
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) {
  max-width: calc((100% - var(--gap)) / 2);
  padding-bottom: var(--spacing-md);
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: content-box;
  border-bottom: 1px solid #232532;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1):hover .media img, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2):hover .media img, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3):hover .media img, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4):hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .media {
  aspect-ratio: 31/20;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  display: block;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .media img, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .media img, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .media img, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-smd);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .date {
  position: absolute;
  top: var(--spacing-sm);
  left: var(--spacing-sm);
  order: 1;
  font: var(--type-b4);
  padding: 4px var(--spacing-xs);
  background: var(--color-surface-highlight);
  border-radius: var(--radius-small);
  color: var(--button-color-highlight-text);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .date .date-compact, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .date .date-compact, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .date .date-compact, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .date .date-compact {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .tags, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .tags, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .tags, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .tags {
  display: flex;
  gap: 10px;
  align-items: center;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .tags a:not(.tag-cta-link), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .tags a:not(.tag-cta-link), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .tags a:not(.tag-cta-link), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .tags a:not(.tag-cta-link) {
  padding: 11px var(--spacing-smd);
  display: inline-block;
  font: var(--type-b3);
  border-radius: var(--radius-small);
  color: var(--button-color-text);
  transition: color 0.3s, background 0.3s;
  text-wrap: nowrap;
  padding: 4px var(--spacing-xs);
  font: var(--type-b4);
  color: var(--button-color-highlight-text);
  background: var(--color-surface-highlight);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .tags a:not(.tag-cta-link):hover, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .tags a:not(.tag-cta-link):hover, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .tags a:not(.tag-cta-link):hover, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .tags a:not(.tag-cta-link):hover {
  color: var(--button-color-text-hover);
  background: var(--button-color-background-hover);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .tags .tag-cta-link, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .tags .tag-cta-link, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .tags .tag-cta-link, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .tags .tag-cta-link {
  font: var(--type-b4);
  margin-left: var(--spacing-xs);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .tags .tag-cta-link:hover, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .tags .tag-cta-link:hover, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .tags .tag-cta-link:hover, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .tags .tag-cta-link:hover {
  text-decoration: underline;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .tags:empty, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .tags:empty, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .tags:empty, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .tags:empty {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info .posttype, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info .posttype, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info .posttype, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info .posttype {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info h4, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info h4, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info h4, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info h4 {
  padding-top: 10px;
  font: var(--type-h2);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) .info p, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) .info p, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) .info p, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) .info p {
  font: var(--type-b3);
  padding-top: 10px;
  margin-bottom: auto;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .info {
  order: 1;
  margin-bottom: var(--spacing-sm);
  margin-top: 0;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .info p, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .info p, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .info p, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .info p {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .info .date {
  position: static;
  font: var(--type-b1);
  background: none;
  padding: 0;
  border-radius: 0;
  margin-top: 10px;
  color: var(--color-text-primary);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .info .tags a, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .info .tags a, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .info .tags a, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .info .tags a {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .info .tags:before, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .info .tags:before, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .info .tags:before, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .info .tags:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: var(--color-surface-highlight);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .info .tags:after, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .info .tags:after, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .info .tags:after, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .info .tags:after {
  content: "Events";
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-events .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-events .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-events .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-events .media {
  order: 2;
  margin-top: auto;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news {
  display: flex;
  flex-direction: column;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info {
  order: 1;
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info .tags, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info .tags, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info .tags, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info .tags {
  order: 1;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info .date, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info .date {
  left: auto;
  right: var(--gap);
  top: 0px;
  background: transparent;
  padding-right: 0;
  color: var(--button-color-highlight-text);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info .date .date-compact, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info .date .date-compact, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info .date .date-compact, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info .date .date-compact {
  display: inline;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info .date .date-full, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info .date .date-full, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info .date .date-full, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info a:has(h4), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info a:has(h4), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info a:has(h4), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info a:has(h4) {
  order: 3;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info a:has(p), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info a:has(p), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info a:has(p), .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info a:has(p) {
  order: 4;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .info:has(.tags:empty) h4, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .info:has(.tags:empty) h4, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .info:has(.tags:empty) h4, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .info:has(.tags:empty) h4 {
  padding-top: 0;
  width: calc(100% - 200px);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1).type-news .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2).type-news .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3).type-news .media, .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4).type-news .media {
  order: 2;
  margin-top: auto;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(1) {
  padding-right: var(--gap);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(2) {
  margin-left: calc(-1 * var(--gap));
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(3) {
  padding-right: var(--gap);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(4) {
  margin-left: calc(-1 * var(--gap));
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5):nth-child(-n+8) {
  margin-top: var(--spacing-md);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) {
  max-width: calc((100% - var(--gap) * 3) / 4);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .media {
  aspect-ratio: 15/11;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-small);
  display: block;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .media .index {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  z-index: 1;
  background: var(--color-surface-highlight);
  font: var(--type-b3);
  min-width: 30px;
  text-align: center;
  padding: 4px 10px;
  border-radius: var(--radius-small);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5):hover .media img {
  transform: scale(1.1);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info {
  display: flex;
  flex-direction: column;
  margin-top: var(--spacing-xs);
  gap: 10px;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .date {
  order: 1;
  font: var(--type-b3);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .date .date-full {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .tags {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .posttype {
  font: var(--type-b4);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .posttype::before {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: var(--color-surface-highlight);
  border-radius: 2px;
  margin-right: 5px;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info h4 {
  font: var(--type-b2);
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info p {
  display: none;
}
.block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5).type-directory .info .date {
  display: none;
}
@media screen and (max-width: 768px) {
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5).type-events .info h4 {
    font: var(--type-b4);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5).type-events .info .date {
    font: var(--type-b4);
    font-size: 12px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .block__anatomy-post-list {
    padding: var(--spacing-md) 0;
  }
  .block__anatomy-post-list .wrapper .top {
    margin-bottom: var(--spacing-md);
    flex-direction: column !important;
    align-items: center !important;
    gap: var(--spacing-md);
  }
  .block__anatomy-post-list .wrapper .top .cta {
    display: none;
  }
  .block__anatomy-post-list .wrapper .top .texts > * {
    max-width: 100% !important;
  }
  .block__anatomy-post-list .wrapper .cta-holder {
    margin-top: var(--spacing-md);
  }
  .block__anatomy-post-list .wrapper .taxonomies .taxonomy ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
  }
  .block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a {
    padding: 0 !important;
    font: var(--type-b4) !important;
    border-radius: 0;
  }
  .block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a.active {
    border: none;
    text-decoration: underline;
  }
  .block__anatomy-post-list .wrapper .taxonomies .taxonomy ul li a:hover {
    background: transparent !important;
    color: inherit !important;
  }
  .block__anatomy-post-list .wrapper .events-type-picker {
    margin-bottom: var(--spacing-md);
  }
  .block__anatomy-post-list .wrapper .events-type-picker ul {
    flex-direction: column;
    gap: 6px;
  }
  .block__anatomy-post-list .wrapper .events-type-picker ul li {
    padding: 6px 10px;
  }
  .block__anatomy-post-list.layout-default .wrapper .posts, .block__anatomy-post-list.layout-three-across .wrapper .posts {
    gap: var(--spacing-sm);
  }
  .block__anatomy-post-list.layout-default .wrapper .posts .post, .block__anatomy-post-list.layout-three-across .wrapper .posts .post {
    max-width: calc((100% - var(--spacing-sm) * 2) / 2);
  }
  .block__anatomy-post-list.layout-all-featured .wrapper .posts {
    gap: var(--spacing-md);
  }
  .block__anatomy-post-list.layout-all-featured .wrapper .posts .post {
    max-width: 100%;
    padding-right: 0;
    margin-left: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-md);
  }
  .block__anatomy-post-list.layout-all-featured .wrapper .posts .post:nth-child(odd) {
    padding-right: 0;
  }
  .block__anatomy-post-list.layout-all-featured .wrapper .posts .post:nth-child(even) {
    margin-left: 0;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts {
    gap: var(--spacing-sm);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post {
    max-width: 100% !important;
    padding-right: 0;
    margin-left: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-md);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(odd) {
    padding-right: 0;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(even) {
    margin-left: 0;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3):nth-child(-n+4) {
    margin-top: var(--spacing-md) !important;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) {
    max-width: calc((100% - var(--spacing-sm)) / 2) !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    margin-top: 0 !important;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .media {
    aspect-ratio: 15/11;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-small);
    display: block;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .media .index {
    position: absolute;
    top: var(--spacing-xs);
    left: var(--spacing-xs);
    z-index: 1;
    background: var(--color-surface-highlight);
    font: var(--type-b3);
    min-width: 30px;
    text-align: center;
    padding: 4px 10px;
    border-radius: var(--radius-small);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .media img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3):hover .media img {
    transform: scale(1.1);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info {
    display: flex;
    flex-direction: column;
    margin-top: var(--spacing-xs);
    gap: 10px;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .date {
    order: 1;
    font: var(--type-b3);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .date .date-full {
    display: none;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .tags {
    display: none;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .posttype {
    font: var(--type-b4);
    text-transform: capitalize;
    display: flex;
    align-items: center;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info .posttype::before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: var(--color-surface-highlight);
    border-radius: 2px;
    margin-right: 5px;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info h4 {
    font: var(--type-b2);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3) .info p {
    display: none;
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3).type-directory .info .date {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3).type-events .info h4 {
    font: var(--type-b4);
  }
  .block__anatomy-post-list.layout-two-featured .wrapper .posts .post:nth-child(n+3).type-events .info .date {
    font: var(--type-b4);
    font-size: 12px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .block__anatomy-post-list.layout-four-featured .wrapper .posts {
    gap: var(--spacing-sm);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post {
    max-width: 100% !important;
    padding-right: 0;
    margin-left: 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--spacing-md);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(odd) {
    padding-right: 0;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(even) {
    margin-left: 0;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5):nth-child(-n+6) {
    margin-top: var(--spacing-md) !important;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) {
    max-width: calc((100% - var(--spacing-sm)) / 2) !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    margin-top: 0 !important;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .media {
    aspect-ratio: 15/11;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-small);
    display: block;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .media .index {
    position: absolute;
    top: var(--spacing-xs);
    left: var(--spacing-xs);
    z-index: 1;
    background: var(--color-surface-highlight);
    font: var(--type-b3);
    min-width: 30px;
    text-align: center;
    padding: 4px 10px;
    border-radius: var(--radius-small);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .media img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5):hover .media img {
    transform: scale(1.1);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info {
    display: flex;
    flex-direction: column;
    margin-top: var(--spacing-xs);
    gap: 10px;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .date {
    order: 1;
    font: var(--type-b3);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .date .date-full {
    display: none;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .tags {
    display: none;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .posttype {
    font: var(--type-b4);
    text-transform: capitalize;
    display: flex;
    align-items: center;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info .posttype::before {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: var(--color-surface-highlight);
    border-radius: 2px;
    margin-right: 5px;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info h4 {
    font: var(--type-b2);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5) .info p {
    display: none;
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5).type-directory .info .date {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5).type-events .info h4 {
    font: var(--type-b4);
  }
  .block__anatomy-post-list.layout-four-featured .wrapper .posts .post:nth-child(n+5).type-events .info .date {
    font: var(--type-b4);
    font-size: 12px;
    margin-top: -10px;
  }
}