/* ==========================================
   Subscribe Form
========================================== */

.blog-subscribe__container{
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.blog-subscribe{
    margin-top: 48px;
}
.blog-subscribe__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 32px;
    padding: 35px 20px 27px 20px;
    background: url('../imgs/subscribe-form/bg-form.webp') no-repeat center center / cover,
        linear-gradient(177deg, #7C7EFE -21.66%, #C3C5FC 36.89%);
    backdrop-filter: blur(4.079999923706055px);
}
.blog-subscribe__title {
    color: var(--text-main, #000);
    text-align: center;
    /* 20/Semibold */
   font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 120% */
    letter-spacing: -0.2px;
}
.blog-subscribe__subtitle{
    margin-top: 8px;
    color: var(--text-main, #000);
    text-align: center;

    /* 14/Regular */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    letter-spacing: 0.05px;
}
.blog-subscribe__form{
    margin-top: 14px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px 0;
    /* width: 100%; */
}

.blog-subscribe__input{
    border-radius: 16px;
    padding: 10px 16px;
    overflow: hidden;
    color: var(--input-text-default, rgba(0, 0, 0, 0.46));
    text-overflow: ellipsis;

    /* 14/Regular */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    letter-spacing: 0.05px;
    outline: none;
    border: none;
}

.blog-subscribe__button{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 11px 16px;
    width: 100%;

    color: var(--button-primary-text-default, #FFF);
    text-align: center;

    /* 14/Semibold */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 128.571% */
    outline: none;
    border: none;
    cursor: pointer;
    background: #000;
}

.blog-subscribe__hint{
    margin-top: 14px;
    color: var(--input-text-default, rgba(0, 0, 0, 0.46));
    text-align: center;

    /* 14/Regular */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
    letter-spacing: 0.05px;
}
.blog-subscribe__image-wrapper {
    display: none;
    position: absolute;
    bottom: 0;
    right: 126px;
}

@media (min-width: 1200px) {
    .blog-subscribe__container{
        margin: 0 auto;
        padding: 0 10px;
        max-width: 1220px;
    }
    .blog-subscribe{
        margin-top: 120px;
    }
    .blog-subscribe__inner{
        position: relative;
        padding: 72px 0 66px 60px;
        align-items: flex-start;
        background: url('./bg-form.png') no-repeat center center / cover,
        linear-gradient(177deg, #7C7EFE -21.66%, #C3C5FC 36.89%);

    }
    .blog-subscribe__title {
        font-size: 28px;
        font-weight: 600;
        line-height: 32px; /* 114.286% */
        letter-spacing: -0.5px;
    }

    .blog-subscribe__subtitle{

        font-size: 17px;
        font-weight: 400;
        line-height: 22px; /* 129.412% */
        letter-spacing: -0.12px;
    }

    .blog-subscribe__form{
        margin-top: 24px; 
        flex-direction: row;
        align-items: center;
        gap: 0 8px;
        width: 638px;
    }

    .blog-subscribe__input{
        padding: 15px 16px;

        /* 14/Regular */
        font-size: 17px;
        font-weight: 400;
        line-height: 22px; /* 129.412% */
        letter-spacing: -0.12px;    
    }

    .blog-subscribe__button{
        padding: 15px 24px;
        /* 14/Semibold */
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: 22px; /* 129.412% */
        letter-spacing: -0.12px;
    }

    .blog-subscribe__hint{
        margin-top: 16px;
        color: var(--input-text-default, rgba(0, 0, 0, 0.46));
        text-align: center;

        /* 14/Regular */
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 129.412% */
        letter-spacing: -0.12px;
    }

    .blog-subscribe__image-wrapper {
        display: block;
    }
    .blog-subscribe__image-wrapper img{
        display: flex;
        align-items: flex-end;
    }
}
