/* ─────────────────────────────────────────────
   DealCraft — Coming Soon
   Type: Canela Deck (headings) / Poppins (body) per DC brand guidelines
   Colors: #A67F68 (taupe-gold), #8A9083 (sage), #EFEAE8 (cream)
───────────────────────────────────────────── */

/* Brand Headings */
.dcs-highlight {
    font-family: "Canela Deck", "Canela Deck Bold", Georgia, serif;
    font-weight: 700;
}

.dcs-eyebrow,
.dcs-heading-line {
    font-family: "Canela Deck", "Canela Deck Regular", Georgia, serif;
    font-weight: 400;
}

/* Brand Body & UI Elements */
.dcs-date,
.dcs-desc,
.dcs-btn {
    font-family: "Poppins", sans-serif;
}

.dcs-wrap {
    display: flex;
    align-items: stretch;
    min-height: 460px;
    width: 100%;
    overflow: hidden;
}

.dcs-wrap.dcs-image-left {
    flex-direction: row-reverse;
}

.dcs-content {
    position: relative;
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 60px 60px;
    background: none;
    overflow: hidden;
}

/* Thin decorative circle lines behind the text, echoing the reference
   mockup's background graphic. Purely cosmetic — sits behind the
   copy via z-index and ignores clicks. */
.dcs-content::before,
.dcs-content::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(138, 144, 131, 0.25);
    pointer-events: none;
    z-index: 0;
}

.dcs-content::before {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -180px;
}

.dcs-content::after {
    width: 340px;
    height: 340px;
    bottom: -140px;
    left: -100px;
}

/* Narrower text column so copy doesn't stretch the full panel width,
   matching the reference layout's proportions */
.dcs-content-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 380px;
}

.dcs-image {
    width: 50%;
}

.dcs-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Reset theme/Astra global heading styles (bold + uppercase) that
   otherwise override this widget's own type treatment */
.dcs-wrap h2.dcs-heading {
    margin: 0 0 20px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.25;
}

/* ── Eyebrow ── */
.dcs-eyebrow {
    align-self: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #8A9083;
}

/* ── Heading ── */
.dcs-heading-line {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: #6B6B63;
}

.dcs-highlight {
    display: inline-block;
    margin-top: 4px;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #2A2A26;
}

/* ── Date ── */
.dcs-date {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #A67F68;
}

/* ── Description ── */
.dcs-desc {
    margin: 0 0 30px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #6B6B63;
}

/* ── Button ── */
.dcs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: 4px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    background: #A67F68;
    color: #FFFFFF !important;
    transition: background .2s ease;
}

.dcs-btn:hover {
    background: #8F6B56;
    color: #FFFFFF !important;
}

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */

@media (max-width: 900px) {

    .dcs-wrap,
    .dcs-wrap.dcs-image-left {
        flex-direction: column;
        min-height: 0;
    }

    .dcs-content,
    .dcs-image {
        width: 100%;
    }

    .dcs-content {
        padding: 48px 24px;
        justify-content: flex-start;
    }

    .dcs-content-inner {
        max-width: 100%;
    }

    .dcs-image {
        min-height: 300px;
    }

    .dcs-highlight {
        font-size: 30px;
    }

    .dcs-heading-line {
        font-size: 14px;
    }
}

@media(max-width: 767px) {

    .dcs-btn {
        padding: 10px 10px;
        font-size: 10px;
    }
}