.post-cards .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 32px; }
  @media (min-width: 680px) {
    .post-cards .card {
      padding-bottom: 48px; } }
  .post-cards .card .head {
    position: relative;
    --border: 16px;
    border-top-left-radius: var(--border);
    border-top-right-radius: var(--border);
    display: flex;
    flex-basis: 240px;
    align-items: center;
    align-self: stretch;
    background-image: url("/assets/images/lightgrey-circle.svg");
    background-size: 20px 20px;
    background-position-x: 15px;
    background-position-y: 15px;
    background-color: #F2FAF9;
    overflow: hidden; }
    @media (min-width: 680px) {
      .post-cards .card .head {
        height: 278px; } }
    .post-cards .card .head img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: white; }
  .post-cards .card .featured {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    padding: 4px 8px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 6px;
    background: rgba(16, 41, 48, 0.15);
    backdrop-filter: blur(2px);
    color: var(--epoch-white, #FFF);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; }
  .post-cards .card .body-foot {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 32px;
    padding-right: 32px; }
    @media (min-width: 680px) {
      .post-cards .card .body-foot {
        padding-left: 40px;
        padding-right: 40px; } }
    @media (min-width: 1120px) {
      .post-cards .card .body-foot {
        padding-left: 56px;
        padding-right: 56px; } }
  .post-cards .card .body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 32px; }
    @media (min-width: 680px) {
      .post-cards .card .body {
        padding-top: 48px; } }
    @media (min-width: 1120px) {
      .post-cards .card .body {
        padding-top: 48px; } }
  .post-cards .card .foot {
    margin-top: auto; }
  .post-cards .card .body-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch; }
  .post-cards .card .button {
    height: 40px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; }
  .post-cards .card .type {
    color: #00A5A6;
    font-family: Messina Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.72px;
    text-transform: uppercase; }

@media (min-width: 1120px) {
  .post-cards:not(.column-layout) .card {
    max-width: calc((100% - 40px)/2); }
    .post-cards:not(.column-layout) .card.odd:first-child {
      max-width: 100%;
      height: 533px;
      width: 100%;
      display: flex;
      flex-direction: row;
      padding-bottom: 0; }
      .post-cards:not(.column-layout) .card.odd:first-child .head {
        height: 100%;
        flex-grow: 1;
        border-top-left-radius: var(--border);
        border-bottom-left-radius: var(--border);
        border-top-right-radius: 0; }
      .post-cards:not(.column-layout) .card.odd:first-child .body-foot {
        display: flex;
        width: 400px;
        min-width: 320px;
        max-width: 448px;
        padding: 48px 56px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        align-self: stretch; }
      .post-cards:not(.column-layout) .card.odd:first-child .body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0;
        align-items: flex-start;
        flex: 1 0 0;
        padding-top: 0; } }

.post-cards.column-layout {
  flex-direction: column; }
  .post-cards.column-layout .card {
    max-width: 100%;
    padding-bottom: 32px; }
    .post-cards.column-layout .card .body {
      padding-top: 32px;
      margin-bottom: 24px; }
    .post-cards.column-layout .card .body-foot {
      padding-left: 32px;
      padding-right: 32px; }
