.offres-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
	margin-bottom: 150px;
}

#centrer{
	text-align: center;
	margin-top: 100px;
}

.end{
	display: flex;
	justify-content: end;
}

#col-gauche {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.offre-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s ease;
}

.offre-card:hover {
  transform: translateY(-4px);
}

.offre-header {
  display: flex;
  margin-bottom: 1.5rem;
	flex-direction: column;
}

.offre-header h2 {
  font-size: 2rem;
  font-weight: 700;
	margin-bottom: 0;
}

.type-contrat {
  font-weight: 600;
  color: #E6AC16; /* jaune/orangé */
}

.offre-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.offre-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.offre-body p {
  margin: 0.3rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.btn-postuler {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: #BBD078; /* vert clair */
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-postuler:hover {
  background: #9ab65a;
}

.formulaire{
	margin-top: 100px;
}

/* Responsive */
@media (max-width: 768px) {
  .offre-body {
    grid-template-columns: 1fr;
  }
}
