.product-shared-landing-section {
    background-color: #353A47;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    flex-grow: 1;
    height: 100%;
    min-height: 500px;
    max-height: 600px;
}

.product-shared-landing-section .text-container {
    padding: 48px 24px 0 24px;
}

.product-shared-landing-section .page-title {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: relative;
}

.product-shared-landing-section .page-title .title {
    position: relative;
    color: var(--color-background-1);
    font-size: 48px;
    line-height: normal;
    font-weight: 100;
}

.product-shared-landing-section .page-title .title-bold {
    font-weight: 700;
}

.product-shared-landing-section .page-title .small-title {
    color: var(--color-background-1);
    font-size: 24px;
    line-height: normal;
    font-weight: 100;
}

.product-shared-landing-section .page-title .small-title .title-bold {
    font-weight: 700;
}

.product-shared-landing-section .rectangle {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: var(--color-background-1);
    margin: 32px 0;
}

.product-shared-landing-section .banner-image {
    justify-self: flex-end;
    align-self: flex-end;
    max-height: 250px;
    padding: 0 0 0 24px;
    max-width: 100%;
    width: auto;
    height: 100%;
    object-fit: cover;
}

.product-shared-landing-section .product-tabs {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.product-shared-landing-section .product-tabs .product-tab {
    background-color: var(--color-accent-4);
    color: var(--color-background-1);
    font-style: normal;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    line-height: 175%;
    text-decoration: none;
    min-width: 200px;
    text-align: center;
}

.product-shared-landing-section .product-tabs .product-tab.active {
    background-color: var(--color-accent-1);
}

@media only screen and (min-width: 480px) {
    .product-shared-landing-section .page-title .title {
        font-size: 60px;
    }

    .product-shared-landing-section .page-title .small-title {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) {
    .product-shared-landing-section .text-container {
        padding: 48px 120px 0 120px;
    }

    .product-shared-landing-section .product-tabs {
        flex-direction: row;
        gap: 16px;
    }
}

@media only screen and (min-width: 1280px) {
    .product-shared-landing-section {
        flex-direction: row;
        justify-content: space-between;
    }

    .product-shared-landing-section {
        height: calc(90vh - 115px);
        max-height: none;
        align-items: center;
    }

    .product-shared-landing-section .text-container {
        max-width: 730px;
        padding: 0 0 48px 120px;
    }

    .product-shared-landing-section .page-title .title {
        font-size: 90px;
        width: 100%;
    }

    .product-shared-landing-section .page-title .small-title {
        font-size: 50px;
    }

    .product-shared-landing-section .product-tabs {
        padding: 0 120px;
    }

    .product-shared-landing-section .product-tabs .product-tab {
        padding: 16px 20px;
        font-size: 18px;
    }

    .product-shared-landing-section .banner-image {
        max-height: 450px;
    }
}

@media only screen and (min-width: 1500px) {
    .product-shared-landing-section .banner-image {
        max-height: 90%;
    }
}