.hero-container {
    width: 100%;
    height: 100vh;
}

.hero-image img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 700px;
}


.hero-text {
    position: sticky;
    bottom: 30%;
    transform: translateY(-50%);
    color: white;
    text-align: center;
    z-index: 2;
    font-size: 1.3rem;
    padding-bottom: 100px;
    pointer-events: none;
}

.hero-text h3 {
    line-height: 0;
}

.article-container {
    text-align: center;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.article-image {
    max-width: 900px;
}

.article-image img {
    width: 100%;
    height: auto;
}

.journal-more-button {
    text-align: center;
    margin: 40px 0 60px;
}

.journal-more-button button {
    font-family: 'Newsreader', sans-serif;
    color: 000;
    font-weight: 500;
    padding: 12px 28px;
    font-size: 14px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.journal-more-button button:hover {
    background: #000;
    color: #fff;
}

@media (max-width:768px) {
    .hero-container {
        width: 100%;
        height: auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 150px;
    }


    .hero-text {
        position: absolute;
        bottom: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 0 0 0;
    white-space: nowrap;
    }

    .hero-text h3 {
        line-height: 1.3;
        font-size: 14px;
    }
    .article-container {
        margin-top: 150px;
    }
    .article-container p {
        font-size: 13px;
        padding: 0 2rem;
    }
}