.readmore-block-container{
    display: flex;
    flex-direction: column;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--gb-mt-mobile, 0);
    margin-bottom: var(--gb-mb-mobile, 0);
    padding: 0;
    justify-content: center;
    align-items: center;
    & button.btn-cta{
        background-color: transparent;
        border: 0;
        &:hover{
            cursor: pointer;
        }
    }
    @media (max-width: 768px){
        & button.btn-cta{
            align-self: flex-start;
        }
    }
}
@media (min-width: 768px) {
    .readmore-block-container {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--gb-mt-desktop, 0);
        margin-bottom: var(--gb-mb-desktop, 0);
    }
}
.readmore-content{
    max-width: 600px;
    text-align: center;
    position: relative;
    & h1{
        text-align: center;
        justify-content: center;
    }
    
}
