.block-liste-offres {
  padding: 2rem 0;
}

.block-liste-offres .block-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #12507d;
}

/* La Grille */
.offres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* La Carte */
.offre-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offre-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.offre-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  gap: 0.8rem;
}

.offre-contract.tag {
  background-color: #e3f2fd;
  color: #12507d;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.offre-date {
  color: #888;
}

h3.offre-title {
  margin: 1em 0 1em;
  font-size: 1.25rem;
  line-height: 1.3;
}

.offre-title a {
  text-decoration: none;
  color: #333;
}

.offre-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}

.offre-owner {
  color: #666;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.offre-details {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.offre-details span {
  display: flex;
  align-items: center;
}

.offre-intro {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offre-button {
  text-align: center;
  background-color: #12507d;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.offre-button:hover {
  background-color: #0d3c5e;
  color: white;
}
