﻿.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    background-color: white;
    width: 100%;
}

#sub-page-content {
    flex: 1;
    text-align: left;
    padding: 10px;
}

    #sub-page-content [style*="text-align: center;"] {
        margin-left: -150px;
    }

.center-left-wrapper {
    width: 275px;
}

.login-container {
    background-color: #282827;
    background-image: url("../images/login-background.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
    text-align: center;
    width: 100%;
}

.button-links {
    display: block;
    width: 100%;
    margin-top: 1px;
    text-align: center;
}

.button-link {
    background-color: var(--blue-button);
    color: white;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.breadcrumb-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2em;
    justify-content: left;
    border-bottom: 2px solid var(--headline-text);
    padding-bottom: 10px;
}

    .breadcrumb-header .home-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }

    .breadcrumb-header .breadcrumb-arrow {
        width: 16px;
        height: 20px;
        margin-left: -4px;
        margin-right: 8px;
        position: relative;
        top: 4px;
    }

    .breadcrumb-header .page-name {
        margin-left: 8px;
        font-weight: bold;
        color: var(--headline-text);
        position: relative;
        top: 2.3px;
        right: 10px;
    }

.main-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/* Product Categories */
.our-story-product-categories h2 {
    margin: 0 0 12px 0;
    font-size: 2.25rem;
    font-weight: 400;
}

.product-category-divider {
    border: 0;
    border-top: 1px solid #cfcfcf;
    margin: 0 0 18px 0;
}

.product-category-desktop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

    .product-category-desktop ul {
        flex: 1;
        margin: 0;
        padding-left: 24px;
    }

.product-category-mobile {
    display: none;
}

    .product-category-mobile ul {
        margin: 0;
        padding-left: 24px;
    }

    .product-category-desktop li,
    .product-category-mobile li {
        margin-bottom: 6px;
    }

/* Mobile Styles */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
    }

    .center-left-wrapper {
        width: 100%;
        margin-bottom: 20px;
    }

    .login-container {
        text-align: center;
        padding: 20px;
    }

    .main-content-wrapper {
        flex: 1;
        padding: 10px;
    }

    #sub-page-content {
        padding-left: 48px;
        word-break: break-word;
    }

    .breadcrumb-header {
        flex-wrap: wrap;
    }

        .breadcrumb-header .page-name {
            margin-left: 4px;
            margin-right: 4px;
        }

    .product-category-desktop {
        display: none;
    }

    .product-category-mobile {
        display: block;
    }
}