.category__container {
  margin: 0 2rem;
}

.grid__item {
  text-decoration: none;
}

.category__main {
  font-family: "BanamexDisplay";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.06rem;
  text-transform: uppercase;

  background: seagreen;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 1.5rem;
}

.grid__item_content .title {
  overflow: hidden;
  color: #000;

  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "BanamexDisplay";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem; /* 114.286% */
  letter-spacing: -0.02625rem;
  text-transform: uppercase;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.grid__item_content .excerpt {
  display: none;
  color: #b7b7b7;

  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "BanamexText";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.625rem; /* 130% */
  letter-spacing: -0.0375rem;
  white-space: initial;

  overflow: hidden;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.grid__item_cover {
  aspect-ratio: 1;
  border-radius: 15%;
  object-fit: cover;
  margin-bottom: 1rem;
  width: 100%;
}

.category__grid {
  padding: 3rem 0;
}

@media screen and (max-width: 768px) {
  .category__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
    overflow: hidden;
  }

  .grid__item .more {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .grid__item_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .grid__item .more {
    color: #000;
    margin-top: 1rem;
    display: block;

    font-family: "Interstate Light";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.045rem;
  }

  .grid__item .more img {
    margin-left: 1rem;
  }

  .grid__item .excerpt {
    display: block;
    display: -webkit-box;
  }

  .grid__item {
    display: inline-block;
  }

  .grid__item .title {
    color: #000;
    text-overflow: ellipsis;
    white-space: wrap;
    font-family: "BanamexDisplay";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem; /* 125% */
    letter-spacing: -0.045rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .grid__item .excerpt {
    color: #b7b7b7;
    text-overflow: ellipsis;
    white-space: wrap;
    font-family: "BanamexText";
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem; /* 130% */
    letter-spacing: -0.0375rem;
  }

  .category__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    max-width: 94vw;
  }

  .grid__item_cover {
    border-radius: 10%;
    width: 100%;
  }

  .grid__item {
    display: flex;
    flex-direction: column;
    width: calc(88vw / 7);
  }
}
