/* Header Box Widget */
.mn-header-box {
    position: relative;
    overflow: hidden;
    background-color: #4a3944;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
}

.mn-header-box__decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.06);
}

.mn-header-box__decor--tl {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -120px;
}

.mn-header-box__decor--br {
    width: 520px;
    height: 520px;
    bottom: -220px;
    right: -160px;
}

.mn-header-box__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.mn-hb-align-left .mn-header-box__inner {
    align-items: flex-start;
    text-align: left;
}

.mn-hb-align-center .mn-header-box__inner {
    align-items: center;
    text-align: center;
}

.mn-hb-align-right .mn-header-box__inner {
    align-items: flex-end;
    text-align: right;
}

.mn-header-box__tag {
    display: inline-block;
    padding: 8px 18px;
    margin: 0 0 24px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}

.mn-header-box__title {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
}

.mn-header-box__desc {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.mn-header-box__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    background-color: #9a7364;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
}

.mn-header-box__btn:hover,
.mn-header-box__btn:focus {
    background-color: #8a6558;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .mn-header-box {
        padding: 56px 24px;
    }

    .mn-header-box__decor--tl {
        width: 260px;
        height: 260px;
        top: -120px;
        left: -80px;
    }

    .mn-header-box__decor--br {
        width: 300px;
        height: 300px;
        bottom: -140px;
        right: -100px;
    }

    .mn-header-box__title {
        font-size: 28px;
    }

    .mn-header-box__desc {
        font-size: 15px;
    }

    .mn-header-box__tag {
        font-size: 11px;
        padding: 6px 14px;
    }
}
