/* ── Home Newsletter ───────────────────────────────────────── */
.bfn-home-newsletter {
    background-color: #F5F5F5;
    width: 100%;
    margin-top: 2.5rem;
}

.bfn-home-newsletter__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .bfn-home-newsletter__inner {
        flex-direction: row;
    }
}

.bfn-home-newsletter__image-wrap {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.bfn-home-newsletter__circle {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #22C55E;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bfn-home-newsletter__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bfn-home-newsletter__right {
    flex: 1;
}

.bfn-home__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.bfn-home__desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.bfn-home-form .bfn-form__row {
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .bfn-home-form .bfn-form__row {
        flex-direction: row;
    }
}

.bfn-home-form .bfn-form__input {
    border: 1px solid #cbd5e1;
    color: #464646;
    margin-right: .5rem;
    border-radius: 2px;
    font-size: 1rem;
    background-clip: padding-box;
    background-color: #fff;
    display: block;
    font-weight: 400;
    line-height: 1.5;
    padding: .5rem 1rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    width: 100%;
}

.bfn-home-form .bfn-form__input:focus {
    border-color: #118377;
    outline: none;
}

.bfn-home-form .bfn-form__input::placeholder {
    color: #94a3b8;
}

.bfn-home-form .bfn-form__submit {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #2751c5;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.bfn-home-form .bfn-form__submit:hover,
.bfn-home-form .bfn-form__submit:focus {
    background: #557ae1;
}

.bfn-home-form .bfn-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bfn-home-form .bfn-form__submit.is-loading {
    position: relative;
    color: transparent;
}

.bfn-home-form .bfn-form__submit.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1rem;
    margin: -0.5rem 0 0 -0.5rem;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: bfn-spin 0.6s linear infinite;
}

@keyframes bfn-spin {
    to {
        transform: rotate(360deg);
    }
}