#index-all-categs {
  padding-bottom: 80px;
  word-break: break-word;
}

#index-all-categs .title {
  font-family: Chivo, sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: #333333;
  margin: 0 0 16px;
}

#index-all-categs > hr {
  margin-bottom: 36px;
}

#index-all-categs #categs-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
  row-gap: 48px;
}

#index-all-categs #categs-wrapper .categ-container .top-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

#index-all-categs #categs-wrapper .categ-container .categ {
  color: white;
  text-transform: uppercase;
  font-family: Chivo, sans-serif;
  font-size: 16px;
  padding: 4px 8px;
  font-weight: bold;
}

#index-all-categs #categs-wrapper .categ-container .see-all {
  color: #a6a6a6;
  text-transform: uppercase;
  font-family: Chivo, sans-serif;
  font-size: 12px;
  text-decoration: underline;
  margin-left: 8px;
  flex-shrink: 0;
}

#index-all-categs #categs-wrapper .categ-container .see-all:hover {
  color: black;
  text-decoration-color: black;
}

#index-all-categs .article-list hr {
  margin: 16px 0;
}

#index-all-categs .article-list .article-wrapper .title {
  font-family: "Tiempos Headline", serif;
  font-size: 18px;
  font-weight: normal;
  color: #2c2c2c;
  margin: 0 0 8px;
}

#index-all-categs .article-list .article-wrapper .date {
  font-family: Chivo, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  color: #666666;
  margin: 0;
}

#index-all-categs .article-list .article-wrapper.top {
  display: flex;
  flex-flow: row nowrap;
}

#index-all-categs .article-list .article-wrapper.top img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  object-position: center;
  margin: 0 16px 0 0;
  flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
  #index-all-categs #categs-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  #index-all-categs .title {
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  #index-all-categs #categs-wrapper {
    grid-template-columns: 1fr;
  }
}
