/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.reports-and-presentations {
  position: relative;
  padding: 0 0 100px;
}
.reports-and-presentations__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 30px;
  margin: 0 0 120px 0;
}
.reports-and-presentations__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 60px;
}
.reports-and-presentations__item {
  margin: 20px 0 0 0;
}
.reports-and-presentations__item:first-child {
  margin: 0;
}
.reports-and-presentations__category {
  text-align: center;
  margin: 0 0 20px 0;
}
.reports-and-presentations__category__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.reports-and-presentations__category__item__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
  padding: 20px 30px 20px 0;
  color: hsl(0, 0%, 0%);
}
.reports-and-presentations__category__item:hover {
  background-color: #f58220;
}
.reports-and-presentations__category__item:hover .reports-and-presentations__category__item__content {
  color: hsl(0, 0%, 100%);
  filter: brightness(100);
}
.reports-and-presentations__category__item:hover .reports-and-presentations__category__item__icon {
  filter: brightness(100);
}
.reports-and-presentations__category__item__title {
  margin-inline-end: auto;
}
.reports-and-presentations__category__item__date {
  min-width: 150px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
}
.reports-and-presentations__category__item__line {
  width: 100%;
  height: 0.4px;
  background-color: #b6b6b6;
}
.reports-and-presentations__category__item__icon {
  position: absolute;
  top: 20px;
  right: 0;
}
.reports-and-presentations__category__item__icon.-bottom {
  top: unset;
  bottom: 20px;
}
@media screen and (min-width: 768px) {
  .reports-and-presentations__filter {
    flex-direction: row;
    align-items: flex-start;
  }
  .reports-and-presentations__item {
    margin: 30px 0 0 0;
  }
  .reports-and-presentations__category {
    text-align: start;
    padding: 0 50px;
    margin: 0 0 30px 0;
  }
  .reports-and-presentations__category__item__content {
    flex-direction: row;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
    padding: 20px 70px;
  }
  .reports-and-presentations__category__item__date {
    font-size: inherit;
  }
  .reports-and-presentations__category__item__line {
    width: calc(100% - 100px);
  }
  .reports-and-presentations__category__item__icon {
    position: relative;
    top: unset;
    right: unset;
  }
  .reports-and-presentations__category__item__icon.-bottom {
    bottom: unset;
  }
}