.item-relacionados {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px;
  border-radius: 16px;
  border: 1px solid rgba(176, 169, 163, 0.5);
  background-color: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  .item-relacionados .categorias {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    z-index: 1; }
    .item-relacionados .categorias .categoria {
      border-radius: 8px;
      background-color: #fff;
      display: flex;
      padding: 4px 8px;
      justify-content: center;
      align-items: center;
      gap: 4px;
      width: fit-content;
      color: var(--Forest-100, #00402A);
      font-family: IberPangea;
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 500;
      line-height: 100%;
      text-transform: uppercase; }
      .item-relacionados .categorias .categoria::before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        background-color: #5BD38C;
        border-radius: 99px; }
  .item-relacionados .imagen {
    width: 100%;
    height: auto;
    aspect-ratio: 403 / 212;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px; }
    .item-relacionados .imagen img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      transition: .3s all ease-in-out; }
  .item-relacionados .item-title {
    color: #003020;
    font-family: IberPangea;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 130%;
    padding-inline: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px; }
    @media screen and (max-width: 768px) {
      .item-relacionados .item-title {
        font-size: 1.25rem; } }
  .item-relacionados .fecha {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #615D5A;
    font-family: IberPangea;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    border-top: 1px solid rgba(162, 188, 177, 0.5);
    padding: 12px 8px;
    justify-content: space-between;
    margin-inline: 8px; }
    .item-relacionados .fecha img {
      width: 16px;
      height: 16px;
      object-fit: contain;
      margin-top: -3px; }
      @media screen and (max-width: 768px) {
        .item-relacionados .fecha img {
          display: none; } }
    .item-relacionados .fecha .texto-fecha > * {
      display: inline; }
    .item-relacionados .fecha svg {
      margin-inline: 8px; }
    .item-relacionados .fecha.has-front-text {
      justify-content: end; }
    @media screen and (max-width: 768px) {
      .item-relacionados .fecha {
        font-size: 0.875rem; } }
  .item-relacionados:hover .item-title {
    text-decoration: underline; }
  .item-relacionados:hover .imagen img {
    transform: scale(1.05); }
