.Offre_card {
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  align-self: stretch;
}

.Offre_card:hover {
  transform: translate3d(0, -8px, 0);
}

.Offre_card > div {
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.07);
}

.Offre_card .Offre_image {
  max-height: 150px;
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.Offre_card .Offre_logo {
  width: 48px;
  min-height: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--pure-blue-color);
  transform: translateY(-50%);
}

.Offre_card .Offre_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.Offre_card .Offre_infos {
  margin-top: -24px;
}

.Offre_card .Offre_tags > span {
  font-size: 10px;
  color: #fa6a58;
  background: #ffd7d2;
  padding: 2px 8px;
  border-radius: 50px;
}

.Offre_card .ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px;
  height: 75px;
  text-align: right;
}

.Offre_card .ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 20px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  display: block;
  background: linear-gradient(#fa6a58 0%, #fa6a58 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px;
  right: -21px;
}

.Offre_card .ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #fa6a58;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #fa6a58;
}

.Offre_card .ribbon span::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #fa6a58;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #fa6a58;
}
