/* ==========================================================
   Hero Heading Widget — hhw.css
   ========================================================== */

.hhw-wrap *,
.hhw-wrap *::before,
.hhw-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.hhw-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-family: inherit;
}

/* Left block — takes all remaining space */
.hhw-left {
    flex: 1 1 0%;
    min-width: 0;
}

/* Eyebrow */
.hhw-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a07840;
    margin-bottom: 12px;
    font-family: inherit;
}

/* Heading */
.hhw-heading {
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: #1e2e1e;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.01em;
}

.hhw-plain {
    /* inherits heading colour */
}

.hhw-highlight {
    color: #2d5a27;
}

/* Right: description column */
.hhw-desc-col {
    flex: 0 0 22%;
    width: 22%;
    align-self: flex-end;
    padding-bottom: 4px;
}

.hhw-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #4a4a3a;
    font-family: inherit;
}

/* ==========================================================
   MOBILE  ≤ 767px
   ========================================================== */
@media (max-width: 767px) {

    .hhw-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hhw-desc-col {
        flex: none;
        width: 100%;
        align-self: flex-start;
        padding-bottom: 0;
    }

    .hhw-heading {
        font-size: clamp(26px, 7vw, 40px);
    }
}

/* ==========================================================
   TABLET  768px – 1024px
   ========================================================== */
@media (min-width: 768px) and (max-width: 1024px) {

    .hhw-heading {
        font-size: clamp(28px, 4vw, 48px);
    }

    .hhw-desc-col {
        flex: 0 0 28%;
        width: 28%;
    }
}
