/* Petites annonces — liste */
body.page-annonces .site-main-inner {
  padding: 0 16px 24px;
}

.annonces-page-title {
  text-align: center;
  font-size: 0.95rem;
  color: #527bb2;
  font-weight: 600;
  margin: 1rem 0;
}

.annonces-list {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.annonces-header,
.annonce-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid #e0e8f2;
}

.annonces-header {
  background-color: #f3f6fb;
  font-weight: 600;
  font-size: 0.85rem;
  color: #444;
}

.annonce-row {
  transition: background-color 0.2s;
}

.annonce-row:hover {
  background-color: #f8fafc;
}

.annonce-date {
  flex: 0 0 88px;
  font-size: 0.85rem;
  color: #555;
  white-space: nowrap;
}

.annonce-photo {
  flex: 0 0 28px;
  text-align: center;
}

.annonce-photo .icon-photo {
  color: #527bb2;
  font-size: 1rem;
}

.annonce-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

.annonce-title a {
  color: #3d6aa2;
  text-decoration: none;
}

.annonce-title a:hover {
  text-decoration: underline;
}

.annonce-type {
  flex: 0 0 110px;
  font-size: 0.82rem;
  color: #666;
  text-align: right;
}

.annonces-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #555;
  font-size: 0.9rem;
}

.annonces-empty a {
  color: #527bb2;
}

@media (max-width: 640px) {
  .annonce-date {
    flex: 0 0 72px;
    font-size: 0.8rem;
  }

  .annonce-type {
    display: none;
  }

  .annonces-header .annonce-type {
    display: none;
  }
}
