.single-content{
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 0 0;
}
.single__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.single__title{
  width: 70%;
}
.titre-article{
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0;
}
.single__share{
  width: 30%;
  display: flex;
  justify-content: space-evenly;
}
.single__content{
  display: flex;
}
.single-image{
  width: 300px;
  height: auto;
}
.single__post-content{
  margin: 0 2rem;
}
.single__category{
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.single__date{
  font-size: 1rem;
  font-style: italic;
  margin: 0.5rem 0rem;
}
.single__source{
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 1rem;
}
.single__source:hover {
  text-decoration: underline;
}
.single__tags{
  margin-top: 1rem;
}
.tags-single{
  display: inline-flex;
}
.tags-item{
  margin: 0 0.2em;
}
.tags-item:hover{
  text-decoration: underline;
}

/* Pagination Single */
.post-nav {
  width: 30%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.post-nav a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.backhome {
  font-weight: bold;
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  border-radius: 4px;
}

.backhome:hover {
  background-color: #e0e0e0;
}

/** RESPONSIVE **/
@media (max-width: 600px) {
  .single__header{
    flex-direction: column;
    align-items: center;
  }
  .single__title{
    width: 90%;
  }
  .titre-article{
    text-align: center;
    font-size: 1.5rem;
  }
  .single-image {
    width: 250px;
    height: auto;
  }
  .single__category{
    font-size: 1rem;
  }
  .single__content {
    flex-direction: column;
    align-items: center;
  }
  .single__post-content{
    text-align: center;
  }
  .single__source{
    text-align: center;
  }
  .tags-single__keywords{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .post-nav{
    width: 80%;
  }
  .single__share{
    width: 100%;
    justify-content: center;
    margin: 1rem 0 0 0;
  }
  .menu-social__mobile-single{
    width: 70%;
  }
  .txt-mobile-single{
    font-weight: bolder;
    width: 50%;
  }
}
@media (min-width: 600px) and (max-width: 800px) {
  .single__header{
    flex-direction: column;
    align-items: center;
  }
  .single__title{
    width: 90%;
  }
  .titre-article{
    text-align: center;
    font-size: 1.5rem;
  }
  .single-image {
    width: 250px;
    height: auto;
  }
  .single__category{
    font-size: 1rem;
  }
  .single__content {
    flex-direction: column;
    align-items: center;
  }
  .single__post-content{
    text-align: center;
  }
  .single__source{
    text-align: center;
  }
  .tags-single__keywords{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .post-nav{
    width: 80%;
  }
  .single__share{
    width: 100%;
    justify-content: center;
    margin: 1rem 0 0 0;
  }
  .menu-social__mobile-single{
    width: 70%;
  }
  .txt-mobile-single{
    font-weight: bolder;
    width: 50%;
  }
}
@media (min-width: 800px) and (max-width: 1230px) {
  .single__header{
    flex-direction: column;
    align-items: center;
  }
  .single__title{
    width: 90%;
    text-align: center;
  }

  .single__share{
    width: 100%;
    justify-content: center;
    margin: 1rem 0 0 0;
  }
  .single-content{
    width: 95%;
  }
}
@media (min-width: 1230px) and (max-width: 1700px) {}