@use "../../../../src/scss/utilities.scss";
.resultsGrid {
  //max-width: 1320px;
  margin: auto;
  &__title {
    @extend %VFSans-font;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.63;
    color: var(--a-negro-unops);
    @media (max-width: 991.98px) {
      font-size: 30px;
    }
  }
  &__border {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      left: 0%;
      bottom: 0%;
      width: 100%;
      height: 1px;
      background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23004976FF' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    }
  }
  &__blocks {
    &--items {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      min-height: 270px;
      position: relative;
      &::before {
        content: "";
        position: absolute;
        top: 0%;
        right: 0%;
        width: 1px;
        height: 100%;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23004976FF' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
        @media (max-width: 767.98px) {
          top: auto;
          bottom: 0%;
          left: 0%;
          right: auto;
          width: 100%;
          height: 1px;
        }
      }
      &:last-child {
        &::before {
          content: none;
        }
      }
      .titleBlock {
        @extend %VFSans-font;
        font-size: 28px;
        font-weight: 900;
        line-height: 1.61;
        letter-spacing: 1.17px;
        text-align: center;
        color: var(--a-azul-unops);
        @media (max-width: 991.98px) {
          font-size: 23px;
        }
      }
      .description {
        @extend %VFSans-font;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.5;
        text-align: center;
        color: #333;
        p {
          margin-top: 0rem;
          margin-bottom: 0rem;
        }
        a {
          color: var(--a-azul-unops);
        }
      }
    }
  }
}
