.default__news {
    width: 100%;
  }
  .default__news .tab__cta{
    display: flex;
    justify-content: flex-end;
  }

  .default__news .tab__cta .tab__knowMore{
    border: 1px solid var(--theme-color);
    padding: 5px 10px;
    color: var(--theme-color);
    transition: all 300ms ease-in-out;
  }
  .default__news .tab__cta .tab__knowMore:hover{
    background: var(--theme-color);
    color: white;
  }
  .default__news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
  @media (max-width: 992px) {
    .default__news-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .default__news-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .default__news-grid .grid__card {
    width: 100%;
    position: relative;
  }
  .default__news-grid .grid__card .card__details {
    position: relative;
    margin-top: -50px;
    left: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
    background: white;
    width: calc(100% - 60px);
    padding: 15px 15px 0 15px;
  }
  .default__news-grid .grid__card .card__details .card__title {
    font-size: 20px;
    font-weight: bold;
    color: black;
    margin-bottom: 0;
    transition: all 300ms ease-in-out;
  }
  .default__news-grid .grid__card .card__details .card__title:hover {
    color: var(--secondary-color);
  }
  .default__news-grid .grid__card .card__details .card__title a {
    line-height: 1.4;
    color: inherit;
  }
  .default__news-grid .grid__card .card__details .post__meta .author {
    color: var(--theme-color);
    font-weight: bold;
    font-size: 15px;
    transition: all 300ms ease-in-out;
  }
  .default__news-grid .grid__card .card__details .post__meta .author:hover {
    color: var(--secondary-color);
  }
  .default__news-grid .grid__card .card__details .post__meta .date {
    font-size: 14px;
    font-weight: 600;
    color: #aaa;
  }
  .default__news-grid .grid__card .card__details .card__desc {
    font-size: 16px;
    font-weight: 400;
    color: black;
  }
  .default__news-grid .grid__card .card__details .card__desc p {
    color: inherit;
  }
  .default__news-grid .grid__card .card__details .card__more a {
    color: var(--theme-color);
    font-size: 15px;
    font-weight: 600;
    transition: all 300ms ease-in-out;
  }
  .default__news-grid .grid__card .card__details .card__more a:hover {
    color: var(--secondary-color);
  }
  