/* Get Started Banner - shared by homepage and single-post */
.get-started-banner-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 54px 50px 50px;
    width: 100%;
    background: #FFFFFF;
}

.get-started-banner-default {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 635px;
    background: #48C295;
    border-radius: 13.19px;
    position: relative;
    overflow: hidden;
    padding: 30px 63px;
    height: 170px;
}

.rocket-illustration {
    position: absolute;
    left: -45px;
    top: 41.74px;
    width: 77px;
    height: 108.16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rocket-illustration img {
    width: 100%;
    height: auto;
}

.get-started-banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    max-width: 510px;
    margin: 0 auto;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17.58px;
    width: 100%;
}

.get-started-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    border-radius: 17.58px;
    gap: 4px;
}

.get-started-banner-title {
    height: 35.717px;
    align-self: stretch;
    text-align: center;
    color: var(--Neutrals-Snow, #FFF);
    font-family: Poppins, sans-serif;
    font-size: 28px;
    font-style: normal;
    line-height: 34px;
    margin-bottom: 0;
}

.get-started-banner-title .title-ready {
    font-weight: 700;
}

.get-started-banner-title .title-get-started {
    font-weight: 300;
}

.get-started-banner-subtitle {
    height: 12.638px;
    align-self: stretch;
    color: var(--Neutrals-Snow, #FFF);
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}

.get-started-input-group {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 519.139px;
    height: 35.168px;
}

.get-started-banner-section .mail-input {
    flex: 1;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    border: 1.099px solid #1B1F1D;
    border-radius: 4.396px 0 0 4.396px;
}

.get-started-banner-section .email-field {
    flex: 1;
    height: 100%;
    width: 100%;
    background: #FFFFFF;
    border: 1.099px solid #1B1F1D;
    border-radius: 4.396px 0 0 4.396px;
    padding: 7.693px 10.99px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #1B1F1D;
    box-sizing: border-box;
}

.get-started-banner-section .email-field::placeholder {
    color: #B6B3B3;
}

.get-started-banner-section .submit-button {
    background-color: #0D0D2A;
    border: 1.099px solid #0D0D2A;
    color: #FFFFFF;
    padding: 8px 23.628px;
    border-radius: 0 4.396px 4.396px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started-banner-section .submit-button:hover {
    background-color: #1f233d;
    border-color: #1f233d;
}

.get-started-banner-section .submit-button:hover .button-text {
    transform: scale(1.05);
    color: #FFD950;
}

@media (max-width: 768px) {
    .get-started-banner-section {
        padding: 32px 16px;
        width: 100%;
        box-sizing: border-box;
    }
    .get-started-banner-default {
        padding: 20px;
        height: auto;
        flex-direction: column;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .get-started-banner-content {
        gap: 20px;
    }
    .rocket-illustration {
        display: none;
    }
    .get-started-banner-title {
        font-size: 24px;
    }
    .get-started-banner-subtitle {
        font-size: 14px;
    }
    .get-started-input-group {
        flex-direction: column;
        height: auto;
        gap: 8px;
        max-width: 100%;
    }
    .get-started-banner-section .email-field,
    .get-started-banner-section .submit-button {
        width: 100%;
        border-radius: 4.4px;
        height: 40px;
    }
}
