/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.news {
  position: relative;
  padding: 0 0 100px;
}
.news .container {
  align-items: center;
}
.news__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  margin: 0 0 40px 0;
}
.news__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0 0 50px 0;
  width: 100%;
}
.news__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  gap: 20px;
  text-align: center;
  color: hsl(0, 0%, 0%);
}
.news__item.-hidden-after {
  border: transparent;
}
.news__item.-hidden-after::after {
  opacity: 0;
}
.news__item__image {
  width: 100%;
  height: 100%;
}
.news__item__image img {
  object-fit: cover;
}
.news__item__title {
  width: 100%;
  font-weight: 600;
  letter-spacing: -1.12px;
  text-transform: none;
}
.news__item__date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
}
.news__item__detail {
  filter: brightness(0);
}
.news__item__detail:hover {
  filter: brightness(1);
}
.news__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.news__image img {
  width: 100%;
  max-width: 260px;
}
@media screen and (min-width: 768px) {
  .news__filter {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin: 0 0 120px 0;
  }
  .news__wrapper {
    flex-direction: row;
    padding: 0 0 100px 0;
  }
  .news__item::after {
    content: "";
    opacity: 1;
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 40px;
    background-color: #f6f6f6;
    background-image: url("/assets/svg/brand-minimal-logo.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .news__item {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 50px 100px;
    width: 33.3333333333%;
    border-right: 0.4px solid #b6b6b6;
    text-align: start;
  }
  .news__image {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .news__image img {
    width: 100%;
    max-width: 100%;
  }
}