
.wpex-post-cards-related-card .wpex-card-media {
    border-radius: var(--border-radius-aposta) var(--border-radius-aposta) 0 0;
    overflow: hidden;
  }
  .wpex-post-cards-related-card .wpex-card-inner {
    border-radius: var(--border-radius-aposta);
    background: var(--mid-grey);
    padding: 0;
    height: 100%;
  }

  .wpex-post-cards-related-card .related-media-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: start;
    /*! justify-content: stretch; */
  }

  .wpex-post-cards-related-card .wpex-card-media {
    grid-column: 1/2;
    grid-row: 1/2;
    z-index: 10;
  }

  .wpex-post-cards-related-card .wpex-card-media img {
    border-radius: var(--border-radius-aposta) var(--border-radius-aposta) 0 0;
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  @media screen and (min-width: 782px) {
    .wpex-post-cards-related-card .wpex-card-media img {
      height: 200px;
    }
  }

  .wpex-post-cards-related-card .related-post-type-container {
    grid-column: 1/2;
    grid-row: 1/2;
    z-index: 20;
    align-self: start;
    justify-self: end;
    margin: 5px 5px 0 0;
    background: var(--light-purple-2);
    padding: 6px 10px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    line-height: 1;
    position: relative;
  }
  
  .wpex-post-cards-related-card .related-container {
    padding: 20px;
  }
 
  .wpex-post-cards-related-card .related-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    height: 54px;
  }




  .wpex-post-cards-related-card .related-exc {
    display: none;
  }

  .wpex-post-cards-related-card .related-exc p {
    font-size: 13px;
    line-height: 1.2;
    height: 49px;
  }



  @media screen and (min-width: 782px) {
    .wpex-post-cards-related-card .related-exc {
      display: block;
    }
  }


  

 