.offers-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

@media (max-width: 1100px) {
  .offer-card {
    grid-column: span 6;
  }

  .offers-grid > .offer-card:last-child:nth-child(odd) {
    grid-column: 4 / 10;
  }
}

@media (max-width: 760px) {
  .offres {
    overflow-x: hidden;
  }

  .offres .container {
    overflow-x: hidden;
  }

  .offers-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .offers-grid > .offer-card,
  .offers-grid > .offer-card:last-child:nth-child(odd) {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
  }
}