.ipl-best-offers {
  padding: 3rem 1rem;
}
.ipl-best-offers__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ipl-best-offers__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ipl-best-offers__header {
  margin-bottom: 1rem;
}
.ipl-best-offers__title {
  color: #1F2937;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2222;
  margin: 0 0 1rem;
}
.ipl-best-offers__description {
  color: #4B5563;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  gap: 1rem;
  line-height: 1.5;
}
.ipl-best-offers__grid {
  display: grid;
  gap: 1.25rem;
}
/* Card */
.ipl-best-offers__card {
  background: #131F35;
  border: 1px solid #FFFFFF;
  border-radius: .5rem;
  overflow: hidden;
}

/* Top media (image area) */
.ipl-best-offers__media {
  position: relative;
  width: 100%;
  aspect-ratio: 344 / 200; /* mockup vibe */
  background: #131F35;
}
.ipl-best-offers__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* subtle dark overlay like in ads */
.ipl-best-offers__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.25) 70%,
    rgba(0,0,0,.35) 100%
  );
  pointer-events: none;
}

/* Logo top-left */
.ipl-best-offers__logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  width: 4rem;
  height: 3rem;
}
.ipl-best-offers__logo-img {
  border: 1px solid #fff;
  border-radius: .375rem;
  max-width: 100%;
  max-height: 100%;
  object-fit: fill;
}
.ipl-best-offers__sizebar-text {
  display: block;
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .2px;
}

/* Bottom panel */
.ipl-best-offers__panel {
  background: #131F35;
  padding: 1.5rem;
  text-align: center;
}
.ipl-best-offers__promo {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.3;
}
.ipl-best-offers__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3rem;
  border-radius: .5rem;
  background: linear-gradient(to left, #fbbf24 50%, #1f2937 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #1F2937;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
}
.ipl-best-offers__button:hover {
  background-position: left bottom;
  color: #fbbf24;
}
.ipl-best-offers__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .ipl-best-offers {
    padding: 3rem 1.5rem;
  }
  .ipl-best-offers__grid {
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ipl-best-offers {
    padding: 3rem 0;
  }
}