body {
  box-sizing: border-box;
  font-family: "AvenirLTStd-Book", sans-serif;
}

.blog-container {
  background: #fff;
  border-radius: 5px;
  box-shadow: hsla(0, 0, 0, .2) 0 4px 2px -2px;
  margin: 16px auto;
  width: 95%;
  border-radius: 10px;
  padding: 0;
  padding-bottom: 36px;
  @media screen and (min-width: 480px) {
    width: 95%;
  }
  @media screen and (min-width: 767px) {
    width: 90%;
  }
  @media screen and (min-width: 959px) {
    width: 90%;
  }
}
.blog-container:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,.16);

}
img {
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 8px;
}
.blog-container a {
  color: #17ad2a;
  text-decoration: none;
  transition: .25s ease;
  &:hover {
    border-color: #17ad2a;
    color: #17ad2a;
  }
}
.blog-container .activ {
  background-color: white;
}

.blog-cover {
  background: url("https://www.fondationdegaspebeaubien.org/wp-content/uploads/2023/10/FdGB-Consequences-de-la-pollution-de-leau-comprendre-pour-agir-AdobeStock_370967077-scaled.jpeg");
  background-size: cover;
  border-radius: 5px 5px 0 0;
  height: 10rem;
  box-shadow: inset hsla(0, 0, 0, .2) 0 64px 64px 16px;
}
.blog-author,
.blog-author--no-cover {
  margin: 0 auto;
  padding-top: .125rem;
  width: 90%;
}
.blog-author h3::before,
.blog-author h3 {
  color: #fff;
  font-weight: 100;
}
.blog-author--no-cover h3 {
  color: lighten(#333, 40%);
  font-weight: 100;
}

.blog-body {
  margin: 0 auto;
  width: 90%;
}
.video-body {
  height: 100%;
  width: 100%;
}
.blog-title h1 a {
  color: #333;
  font-weight: 100;
}
.blog-body h2 {
  color: #333;
  font-weight: 500;
}
.blog-summary p {
  color: lighten(#333, 10%);
}
.blog-tags ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.blog-tags li + li {
  margin-left: .5rem;
}
.blog-tags a {
  border: 1px solid lighten(#333, 40%);
  border-radius: 3px;
  color: lighten(#333, 40%);
  font-size: .75rem;
  height: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: 1px;
  padding: 0 .5rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  width: 5rem;
}

.blog-footer {
  border-top: 1px solid lighten(#333, 70%);
  margin: 0 auto;
  padding-bottom: .125rem;
  width: 90%;
}
.blog-footer ul {
  list-style: none;
  display: flex;
  flex: row wrap;
  justify-content: flex-end;
  padding-left: 0;
}
.blog-footer li:first-child {
  margin-right: auto;
}
.blog-footer li + li {
  margin-left: .5rem;
}
.blog-footer li {
  color: lighten(#333, 40%);
  font-size: .75rem;
  height: 1.5rem;
  letter-spacing: 1px;
  line-height: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  & a {
    color: lighten(#333, 40%);
  }
}
.comments {
  margin-right: 1rem;
}
.published-date {
  border: 1px solid lighten(#333, 40%);
  border-radius: 3px;
  padding: 0 .5rem;
}
.numero {
  position: relative;
  top: -0.5rem;
}

.icon-star,
.icon-bubble {
  fill: lighten(#333, 40%);
  height:24px;
  margin-right: .5rem;
  transition: .25s ease;
  width: 24px;
  &:hover {
    fill: #17ad2a;
  }
}
/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding-right: 10px;
}
.w-70 {
  width: 70%;
}
.w-25 {
  width: 25%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
  .w-70 {
    width: 100%;
  }
  .w-25 {
    width: 100%;
  }
}
.float-right {
  float: right;
}

.pb-18 {
  padding-bottom: 18px;
}


.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 0px 0;
  border-radius: 1px;
  cursor:pointer;
  }
  
  .pagination>li {
  display: inline
  }
  
  .pagination>li>a,
  .pagination>li>span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: var(--static_text);
  text-decoration: none;
  background-color: var(--nav_color);
  border: 1px solid var(--shadow_hover);
  }
  
  .pagination>li:first-child>a,
  .pagination>li:first-child>span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px
  }
  
  .pagination>li:last-child>a,
  .pagination>li:last-child>span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px
  }
  
  .pagination>li>a:focus,
  .pagination>li>a:hover,
  .pagination>li>span:focus,
  .pagination>li>span:hover {
  z-index: 2;
  color: var(--static_text);
  background-color: var(--nav_color);
  border-color: var(--static_text);
  }
  
  .pagination>.active>a,
  .pagination>.active>a:focus,
  .pagination>.active>a:hover,
  .pagination>.active>span,
  .pagination>.active>span:focus,
  .pagination>.active>span:hover {
  z-index: 3;
  color: green;
  cursor: default;
  font-weight: 700;
  background-color: var(--main_color);
  border-color: var(--main_color);
  }
  
  .pagination>.disabled>a,
  .pagination>.disabled>a:focus,
  .pagination>.disabled>a:hover,
  .pagination>.disabled>span,
  .pagination>.disabled>span:focus,
  .pagination>.disabled>span:hover {
  color: #777;
  cursor: not-allowed;
  background-color: var(--nav_color);
  border-color: var(--shadow_hover);
  }
  
  .pagination-lg>li>a,
  .pagination-lg>li>span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333
  }
  
  .pagination-lg>li:first-child>a,
  .pagination-lg>li:first-child>span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px
  }
  
  .pagination-lg>li:last-child>a,
  .pagination-lg>li:last-child>span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px
  }
  
  .pagination-sm>li>a,
  .pagination-sm>li>span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5
  }
  
  .pagination-sm>li:first-child>a,
  .pagination-sm>li:first-child>span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px
  }
  
  .pagination-sm>li:last-child>a,
  .pagination-sm>li:last-child>span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px
  }
  .center {
    justify-self: center;
  }