
/* backgrounds */
.blog-incontent-banner-background-blue-note {
    background-color: #1C2742;
}
.blog-incontent-banner-background-dark-green {
    background-color: #306960;
}
.blog-incontent-banner-background-dark-blue {
    background-color: #1D2531;
}
.blog-incontent-banner-background-dark-pink {
    background-color: #FFCCDB;
}
.blog-incontent-banner-background-purple {
    background-color: #C2BAF4;
}

/* text colors */
.blog-incontent-banner-caption-text-color-white {
    color: #ffffff;
}
.blog-incontent-banner-caption-text-color-blue-note {
    color: #1C2742;
}


/* */
.blog-details-incontent-banner-container {
    position: relative;
}

.blog-incontent-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 280px;
    border-radius: 8px;
    padding: 0;
}

.blog-incontent-banner-caption-container {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding: 40px;
}

.blog-incontent-banner-caption-text-big {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
}
.blog-incontent-banner-caption-text-small-container {
    display: none;
    height: 88px;
    min-height: 88px;
    z-index: 1;
}
.blog-incontent-banner-caption-text-small {
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding: 16px;
}

.blog-incontent-banner-caption-image-container {
    display: flex;
    height: 100%;
    z-index: 1;
}

.blog-incontent-banner-caption-store-buttons-container {
    margin-top: auto;
    display: flex;
    gap: 40px
}

.blog-incontent-banner-caption-signin-buttons-container {
    margin-top: auto;
    display: flex;
    gap: 40px
}
.blog-incontent-banner-caption-signin-buttons-container > button {
    font-size: 18px !important;
    font-weight: 600 !important;
    height: 56px !important;
    width: 204px !important;
}


.blog-incontent-banner-caption-signin-buttons-container > button.yellow {
    color: #1C2742;
    background-color: #FAFE96;
    border-color: #FAFE96;
}
.blog-incontent-banner-caption-signin-buttons-container > button.yellow:hover {
    color: #1C2742;
    background-color: #e6ea8b;
    border-color: #e6ea8b;
}

.blog-incontent-banner-caption-signin-buttons-container > button.blu-note {
    color: #ffffff;
    background-color: #1C2742;
    border-color: #1C2742;
}
.blog-incontent-banner-caption-signin-buttons-container > button.blu-note:hover {
    color: #ffffff;
    background-color: #394f83;
    border-color: #394f83;
}

.blog-incontent-banner-caption-store-button {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.blog-incontent-banner-image-container {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.blog-incontent-banner-image-container > img {
    height: calc(100% - 34px);
    width: auto;
    margin-top: auto;
    object-fit: contain;
    object-position: bottom;
}


/* MEDIA QUERIES */
@media (max-width: 500px) {
    .blog-incontent-banner-caption-store-button {
        height: 40px;
    }
}
@media (max-width: 728px) {
    .blog-incontent-banner-caption-image-container {
        height: calc(100% - 88px);
    }
    .blog-incontent-banner-caption-container {
        width: 50%;
        padding: 0;
    }
    .blog-incontent-banner-image-container {
        width: 50%;
    }
    .blog-incontent-banner-image-container > img {
        height: 100%;
        object-position: bottom right;
    }
    .blog-incontent-banner-caption-container > p {
        font-size: 32px;
        font-weight: 600;
        color: #ffffff;
    }

    .blog-incontent-banner-caption-text-big {
        display: none;
    }
    .blog-incontent-banner-caption-text-small-container {
        display: block;
    }
    .blog-incontent-banner-caption-store-buttons-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 0 48px 16px;
    }
    .blog-incontent-banner-caption-signin-buttons-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0 68px 16px;
    }

    .blog-incontent-banner-caption-signin-buttons-container > button {
        height: 56px !important;
        width: 147px !important;
    }
}