.this-weeks-offers-section {
    position: relative;
    background-color:transparent;
    margin-top: 8rem;
    padding: 2.5rem 0;
}

.this-weeks-offers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.this-weeks-offers-title {
    font-weight: 700;
    font-size: 2rem;
    color: #011722;
    margin: 0;
}

.this-weeks-offers-arrows {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.this-weeks-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 0.8px solid rgba(28, 28, 26, 0.09);
    border-radius: 999px;
    color: #1C1C1A;
    cursor: pointer;
}

.this-weeks-arrow-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.this-weeks-arrow-btn:not(:disabled):hover {
    background: #F4F8FA;
}

.offer-unit-card {
    /* Figma tokens (card component) */
    background: #FFFFFF;
    border: 1px solid #54A8BD;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom:8px;
}

.offer-unit-card-image-wrapper {
    position: relative;
}

.offer-unit-card-image-tint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
}

.offer-unit-card-image {
    width: 100%;
    aspect-ratio: 411 / 260;
    object-fit: cover;
    display: block;
}

.offer-campaign-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 0.8px solid;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 10px;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
}

.offer-campaign-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    line-height: 18px;
    vertical-align: middle;
}

.offer-unit-card-body {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.offer-unit-title-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-unit-title {
    font-weight: 400;
    font-size: 1.1rem;
    margin: 0;
    color: #1C1C1A;
}

.offer-unit-area {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1C1C1A;
}

.offer-unit-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #011722;
}

.offer-unit-stats span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.offer-unit-stats i {
    /* primary/Blue/blue-500 - the site's brand teal, used for every stat icon in Figma */
    color: #007D9C;
    font-size: 13px;
}

.offer-unit-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.offer-unit-price-group {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.offer-unit-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #011722;
}

.offer-unit-price-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #011722;
}

.offer-unit-original-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-decoration: line-through;
    color: #011722;
}

.offer-unit-favorite {
    /* Same centering technique as the established .favorite-wrapper (PropertiesCard.css) -
       asymmetric top/bottom padding, not a fixed box + transform hack, is what actually
       centers the bi-heart glyph correctly since its own ink sits high in its em-box. */
    flex-shrink: 0;
    border: solid 1px gray;
    border-radius: 50%;
    padding: 5px 7px 3px 7px;
    font-size: 12px;
    text-align: center;
}

.offer-unit-save-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #009966;
}
