.news-item {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #d4d5d5;
  padding: 20px;
  margin-top: 20px;
  position: relative;
}

@media (min-width: 992px) {
  .news-item {
    border-radius: 16px;
    padding: 40px;
    margin-top: 48px;
  }
}

.news-item .news-item__header {}

.news-item .news-item__body {}

@media (min-width: 992px) {
  .news-item .news-item__body {
    width: 80%;
  }
}

.news-item[aria-expanded=false] .news-item__body {
  display: none;
}

.news-item[aria-expanded=false] .bi-chevron-up {
  display: none;
}

.news-item[aria-expanded=true] .bi-chevron-down {
  display: none;
}

.news-item__toggle {
  border: solid 1px #014c87;
  width: 26px;
  height: 26px;
  border-radius: 2px;
  margin: 0;
  padding: 0;
  background: #fff;
  flex: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 40px;
  right: 40px;
}

@media (min-width: 992px) {
  .news-item__toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}

.news-item__date {
  color: #014c87;
  font-size: 1.4rem;
  line-height: 2rem;
  margin: 0;
  font-weight: bold;
}

@media (min-width: 992px) {
  .news-item__date {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

.news-item__title,
.news-item__title a h2 {
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 3rem;
  color: #000;
  margin: .5em 0 0;
}

@media (min-width: 992px) {

  .news-item__title,
  .news-item__title a h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}

.news-item__title>a {
  color: #000;
  text-decoration: none;
}

.news-item__title>a:hover {
  text-decoration: none;
  color: #014c87;
}

@media (min-width: 992px) {
  .news-item__title {
    width: 80%;
  }
}

.news-item__contact {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .news-item__contact {
    margin-top: 60px;
  }
}

.fo-pagination {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1
}

.fo-pagination__btn {
  background: #fff;
  border: solid 1px #014c87;
  border-radius: 2px;
  min-width: 28px;
  min-height: 28px;
  margin: 5px;
  padding: 5px;
  transition: all .3s cubic-bezier(0.39, 0.575, 0.565, 1)
}

.fo-pagination__btn a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: normal;
}

.fo-pagination__btn--disabled {
  opacity: .3
}

.fo-pagination__pages {
  display: flex;
  flex-flow: row nowrap
}

.fo-pagination__pages__current {
  display: flex;
  flex-flow: row nowrap;
}

.fo-pagination__pages__panel {
  position: relative
}

.fo-pagination__pages__panel__overlay {
  position: absolute;
  bottom: 50px;
  display: flex;
  left: -80px;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 175px;
  padding: 10px;
  background: #fff;
  border: 1px solid #f4f4f5;
  border-radius: 4px;
  box-shadow: 0px 10px 15px -5px rgba(16, 24, 40, .1), 0px 5px 5px -2px rgba(16, 24, 40, .05)
}

.fo-pagination__pages__panel__overlay--centered {
  justify-content: center
}

@media(min-width: 992px) {
  .o-pagination {
    font-size: 1.6rem
  }

  .o-pagination__btn {
    min-width: 40px;
    min-height: 40px;
    margin: 10px
  }

  .fo-pagination__pages__panel__overlay {
    bottom: 80px;
    width: 228px;
    padding: 20px
  }
}

.popover-container {
  position: absolute;
  bottom: 50px;
  display: flex;
  left: -80px;

  background: white;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  display: none;
  z-index: 1000;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  width: 240px;
}

.popover-container a {
  display: block;
  margin: 4px 0;
  color: #007bff;
  text-decoration: none;
}

.popover-container a:hover {
  text-decoration: underline;
}

.trigger {
  position: relative;
  /* the parent for popover positioning */
}

.fo-pagination__btn--active {
  background: #014c87;
  color: #fff
}

.fo-pagination__btn--active a {
  color: #fff;
}

.fo-staticpage ul:not(.list-unstyled) {
  list-style: none;
  padding-left: 0;
}

.fo-staticpage ul:not(.list-unstyled)>li {
  position: relative;
  padding-left: 2.6rem;
}

@media (min-width: 992px) {
  .fo-staticpage ul:not(.list-unstyled)>li {
    padding-left: 34px;
  }
}

.fo-staticpage ul:not(.list-unstyled)>li::before {
  color: #014c87;
  position: absolute;
  font-size: 20px;
  left: 0;
  top: .1em;
  font-family: fobig-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
}

@media (min-width: 992px) {
  .fo-staticpage ul:not(.list-unstyled)>li::before {
    font-size: 24px;
    top: .05em;
  }
}