/* Ensure the badge container allows absolute positioning of the date */
.badge {
    position: relative;
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-align: left;
    white-space: normal;
    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);
    opacity: 0.7;
}

/* Section titles */
.title_offer {
    font-weight: 700;
    font-size: 20px;
    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;
}

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