.journal-hero-banner {
    position: relative;
    width: 100%;
    height: 760px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
    background-color: #222;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.journal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.journal-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: left;
}

.journal-hero-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
}

.journal-hero-title {
    font-family: var(--title-font);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-align: left;
}

.journal-hero-title a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
    font-family: inherit;
    font-weight: inherit;
}

.journal-hero-title a:hover {
    opacity: 0.8;
}

.journal-hero-btn {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin-top: 10px;
}

.journal-hero-btn:hover {
    background: #fff;
    color: #000;
}

.journal-nav-wrapper {
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
    width: 100%;
}

.journal-category-nav {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-color: #eeeeee;

    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    justify-content: center;

    padding: 25px max(20px, calc((100vw - 1200px) / 2 + 20px));
    box-sizing: border-box;

    margin-bottom: 40px;
}

.journal-nav-label {
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 0;
    white-space: nowrap;
}

.journal-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.journal-nav-item {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #dcdcdc;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    transition: all 0.3s;
    background-color: transparent;
    margin-right: 5px;
}

.journal-nav-item:hover,
.journal-nav-item.is-active {
    border-color: #333;
    background-color: #333;
    color: #fff;
}

.featured-content {
    width: 100%;
    margin: 60px 0;
}

.featured-content-wrapper {
    display: flex;
    width: 100%;
    padding: 6rem 2rem;
    justify-content: center;
    align-items: center;
    gap: 4.5rem;
    background: #eeeeee;
}

.featured-content-title {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}

.featured-content-title h2 {
    color: #323338;
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: capitalize;
    margin: 0;
    text-align: left;
}

.featured-content-text {
    flex: 1;
    max-width: 35rem;
    color: #5a5b5f;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
}

@media (max-width: 768px) {
    .journal-hero-banner {
        height: 500px;
    }

    .journal-hero-title {
        font-size: 2rem;
    }

    .journal-category-nav {
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .journal-nav-label {
        padding-left: 20px;
        width: 100%;
        text-align: left;
    }

    .journal-nav-links {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;

        padding: 0 20px;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .journal-nav-links::-webkit-scrollbar {
        display: none;
    }

    .journal-nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
    }


    .featured-content-wrapper {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        text-align: left;
        align-items: flex-start;
    }

    .featured-content-title {
        justify-content: flex-start;
        text-align: left;
    }

    .featured-content-text {
        text-align: left;
        max-width: 100%;
    }

    .featured-content-title h2 {
        font-size: 2rem;
        text-align: left;
    }
}