/* Ensure the badge container allows absolute positioning of the date */
.badge {
  position: relative;
  display: block;
  width: 100%;
  font-size: 18px;
  /* Adjust as needed for the main title */
  font-weight: 700;
  color: white;
  text-align: left;
  white-space: normal;
  /* Allow text to wrap if needed */
  padding: 0;
  margin: 0;
}

/* Date positioning */
.badge span {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-custom, #888);
  /* Fallback color */
  opacity: 0.7;
}

/* Section titles (1. General Provisions, etc.) */
.title_offer {
  font-weight: 700;
  /* Force bold */
  font-size: 20px;
  /* Make it slightly larger */
  line-height: 1.5;
  font-family: var(--font-family-1, sans-serif);
  color: white;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* List/Text styles */
.desc_ofer {
  padding: 10px 15px;
  font-size: 14px;
  color: var(--text-custom, #ccc);
  font-weight: 400;
  margin: 10px 0 20px 0;
  text-align: center;
}

.oferta_list li {
  font-size: 14px;
  color: var(--text-custom, #ccc);
  margin-bottom: 8px;
  line-height: 1.6;
}

.oferta_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 0;
  list-style: none;
  /* Remove default bullets if any */
}

.oferta_list li b {
  font-weight: 700;
  color: white;
}