/* Hardbyg Custom */

.hardbyg-custom {
    position: relative;
    margin: 20px 0;
    padding: 18px 20px;
    background: var(--hb-bg, #FBF6EE);
    border: 2px solid var(--hb-border, #C9A063);
    border-radius: var(--hb-radius, 12px);
    color: var(--hb-color, #3B2E22);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    line-height: 1.55;
}

.hardbyg-custom__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hb-btn-color, #fff);
    background: var(--hb-btn-bg, #8B5E34);
    border-radius: 999px;
}

.hardbyg-custom__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.hardbyg-custom__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--hb-btn-bg, #8B5E34);
}

.hardbyg-custom__title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--hb-color, #3B2E22);
    text-transform: none;
}

.hardbyg-custom__text {
    margin: 0 0 14px;
    font-size: 15px;
}

.hardbyg-custom__text:last-child {
    margin-bottom: 0;
}

.hardbyg-custom__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--hb-btn-color, #fff);
    background: var(--hb-btn-bg, #8B5E34);
    border: 0;
    border-radius: calc(var(--hb-radius, 12px) / 2 + 2px);
    transition: filter 0.15s ease, transform 0.15s ease;
}

.hardbyg-custom__cta:hover,
.hardbyg-custom__cta:focus {
    color: var(--hb-btn-color, #fff);
    filter: brightness(0.92);
    transform: translateY(-1px);
    text-decoration: none;
}

@media (max-width: 575px) {
    .hardbyg-custom {
        padding: 16px;
    }

    .hardbyg-custom__cta {
        width: 100%;
        justify-content: center;
    }
}
