.posts-list-old, .post-list-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.post-list-container{
  width: 80%;
  margin: 0 auto;
}
.post-ticket{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}
.post-ticket:nth-child(odd) {
  border-bottom: 1px solid var(--color-text); /* Bordure inférieure uniquement sur les éléments impairs */
} 
.post-ticket:nth-child(even) {
  border-bottom: 1px solid var(--color-text); 
} 

.post-ticket:first-child {
  border-top: 1px solid var(--color-text); 
}

.post-ticket:last-child {
  border-bottom: 1px solid var(--color-text); 
}
.post-ticket__image img{
    width:300px;
    height: 100%;
    object-fit: fill;
}
.ticket-title{
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}
.ticket__ticket:hover {
  text-decoration: underline;
}
.ticket__category{
  margin: 0.5rem 0 0 0;
}
.ticket__category-item{
  font-size: 0.90rem;
}
.ticket__category-item:hover {
  text-decoration: underline;
}
.ticket__date{
  font-size: 0.75rem;
  color: var(--color-text);
}

/** RESPONSIVE **/
@media (max-width: 600px) {
  .post-list-container{
    width: 90%;
  }
  .post-ticket__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post-ticket__image img{
    width: 100px;
    height: 100px;
  }
  .post-ticket-excerpt {
    display: none;
  }
  .ticket-title{
    font-size: 1rem;
  }
  .ticket__category {
    margin: 0.15rem 0 0 0 ;
  }
  .ticket__category-item{
    font-size: 0.75rem;
  }
  .post-ticket.home-ticket__mobile-only:first-child{
    border-top: none;
    margin-top: 2rem;
  }
}
@media (min-width: 601px) and (max-width: 800px) {
  .post-ticket__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post-ticket__image img {
    width: 200px;
    height: fit-content;
  }
  .post-ticket-excerpt {
    display: none;
  }
}
@media (min-width: 801px) and (max-width: 1230px) {
  .post-ticket__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post-list-container {
    width: 90%;
  }
  .post-ticket__image img {
    width: 200px;
    height: fit-content;
  }
}
@media (min-width: 1231px) and (max-width: 1700px) {}