.observatorio-main {
  .bento-grid {
    column-count: 2;
    padding-bottom: 3rem;

    .data-article {
      break-inside: avoid;

      .box-img {
        height: 20rem;
        width: 100%;

        img {
          height: 100%;
          width: 100%;
          object-fit: cover;
        }
      }

      h4 {
        margin-top: 3rem;
      }

      .data-tags {
        position: relative;
        margin: 3rem 0;
        padding-bottom: 3rem;

        &::after {
          content: "";
          width: 100%;
          height: 2px;
          position: absolute;
          background-color: var(--color-secondary-dark);
          bottom: 0;
          left: 0;
        }
      }
    }

    .relleno {
      margin: 3rem 0;

      .relleno-light {
        background-color: var(--color-verde-ddhub);
        height: 20rem;
      }

      .relleno-dark {
        background-color: var(--color-secondary-dark);
        height: 20rem;
      }
    }
  }

  .data-text {
    background-color: var(--color-verde-ddhub);

    p {
      font-family: var(--fonts-heading);
      font-size: var(--size-h2);
      padding: 4rem 30rem;
    }
  }
}

@media (width < 768px) {
  .observatorio-main {
    .bento-grid {
      column-count: 1;
    }
  }
}
