
    /* ─── Breadcrumb ─────────────────────────────────── */
    .offer-detail-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        color: #555c6e;
        flex-wrap: wrap;
    }

    .breadcrumb-link {
        color: #555c6e;
        text-decoration: none;
        transition: color 0.15s;
    }

    .breadcrumb-link:hover {
        color: #2CC4BD;
        text-decoration: underline;
    }

    .breadcrumb-separator {
        color: #adb5bd;
        font-size: 0.75rem;
        line-height: 1;
    }

    .breadcrumb-current {
        color: #555c6e;
    }

    /* ─── Title ──────────────────────────────────────── */
    .offer-detail-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1E266D;
        margin-bottom: 1.25rem;
    }

    /* ─── Image ──────────────────────────────────────── */
    .offer-detail-image-wrap {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        max-width: 700px;       /* matches Xd design — image doesn't stretch full width */
    }

    .offer-detail-image {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ─── Short description (bold lead paragraph) ────── */
    .offer-detail-short-desc {
        font-size: 16px;
        font-family: var(--ReadexPro-Bold);
        color: #1E266DC7;
        line-height: 1.6;
        max-width: 700px;
    }

    /* ─── Full description ───────────────────────────── */
    .offer-detail-desc {

    }

    .offer-detail-desc p {
        margin-bottom: 1rem;
        font-size: 16px;
        color: #283462C7;
        line-height: 1.75;
        max-width: 700px;
    }

    .offer-detail-desc li {
        margin-bottom: 1rem;
        font-size: 16px;
        color: #283462C7;
        line-height: 1.75;
        max-width: 700px;
    }

    .offer-detail-desc ul,
    .offer-detail-desc ol {
        padding-inline-start: 1.5rem;
        margin-bottom: 1rem;
    }

    /* ─── Responsive ─────────────────────────────────── */
    @media (max-width: 767.98px) {
        .offer-detail-title {
            font-size: 1.25rem;
        }

        .offer-detail-image-wrap {
            max-width: 100%;
        }

        .offer-detail-short-desc,
        .offer-detail-desc {
            max-width: 100%;
        }
    }
