/*

BLOG

*/
.tool-pagination{
    margin-bottom: 50px;
  }
  
  /* Résumé */
  
      /* Picture */
      .tease-post_picture{
          position: relative;
          overflow: hidden;
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
          transition: 0.2s ease-in-out;
        }
        .tease-post_picture a{
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
        }
        .tease-post_picture::before{
          content: "";
          display: block;
          width: 100%;
          padding-top: 66%;
        }
        .no-picture{
          max-height: 80%;
          max-width: 80%;
        }
        .tease-post_picture img{
          transition: 0.2s ease-in-out;
        }
        .tease-post_picture:hover{
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
        }
        .tease-post_picture:hover img{
            transform: scale(1.1);
        }
  
  
      .tease-post{
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-bottom: 30px;
      }
      .tease-post_content{
        flex: 1 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .tease-post_content .tease-post_title{
        font-family: var(--font-primary);
        margin-top: 20px;
        margin-bottom: 0;
      }
      .tease-post_content .tease-post_title::after{
        margin-top: 16px;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
      }
      .tease-post_content .btn-show-more{
        margin-top: auto;
      }
      .tease-post_content .btn-show-more:hover {
        color:var(--color-secondary);
      }
      .blog .header_content {
          padding-bottom: 0;
          margin-top: 0;
      }
  