#journal .section1 {
    position: relative;
}

#journal .section1 img {
    width: 100%;
}

#journal .section1 .next,
#journal .section1 .prev {
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

#journal .section1 .next {
    padding-left: unset;
    padding-right: 20px;
    left: unset;
    right: 0;
    transform: translate(50%, -50%);
}

#journal .section1 h1 {
    position: absolute;
    bottom: 30px;
    left: 0;
    font-size: 3rem;
    z-index: 100;
    font-family: HelveticaNeueBold;
    left: 50%;
    transform: translateX(-50%);
    color: #444343;
    text-shadow: 5px 5px 10px rgba(255, 255, 255, 0.6);
}

#journal .section2 {
    padding: 50px 0
}

#journal .section2 .item {
    margin-top: 30px;
}

#journal .section2 .item a {
    display: block;
    height: 100%;
    padding: 0;
    background-color: #fff;
    text-decoration: none;
}

#journal .section2 .item .img {
    --bs-aspect-ratio: 63.647058823%;
}

#journal .section2 .item .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#journal .section2 .item .caption {
    padding: 15px;
}

#journal .section2 .item h2 {
    margin: 0;
    font-size: 1.5rem;
    font-family: HelveticaNeueBold;
    color: #000;
}

#journal .section2 .item h4 {
    margin: 0;
    font-family: dmSans;
    color: #000;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

#journal .section2 .item span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    border: solid 1px #D48D33
}

#journal .section2 .item span img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


#journalDetail .section1 {
    /* height: 75vh; */
    position: relative;
}

#journalDetail .section1:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#000000", GradientType=1);
} 

#journalDetail .section1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#journalDetail .section1 .source{
    position: absolute;
    bottom:5px;
    right:5px;
    margin-bottom: 0;
    font-size: .8rem;
}

#journalDetail .caption {
    /* position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%); */
    margin-top: 30px;
    color:#fff
}
#journalDetail .caption h5 {
    font-size: 1rem;
}

#journalDetail .caption h1 {
    font-size: 2rem;
    color: #fff;
    font-family: HelveticaNeueBold;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

#journalDetail .caption h4 {
    margin: 0;
    font-family: dmSans;
    color: #fff;
    margin-top: 15px;
    display: flex;
    align-items: center;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
    gap: 15px
}

#journalDetail .caption span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    border: solid 1px #D48D33
}

#journalDetail .caption span img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#journalDetail .section2 {
    padding: 50px 0;
    color: #fff
}
#journalDetail .section2 img {
    max-width: 75%;
    margin: 0 auto;
}
#journalDetail .section2 .source {
    font-size: .8rem;
}



@media (orientation: portrait) {
    #journal .section1 h1 {
        font-size: 2rem;
    }

    #journal .section2 .item h2 {
        font-size: 1rem
    }

    #journal .section2 .item h4 {
        font-size: .8rem
    }

    #journal .section2 .item h4 span {
        width: 30px;
        height: 30px;
    }

    #journalDetail .section1 {
        height: auto;
    }
    #journalDetail .section1 .caption {
        position: relative;
        bottom: unset;
        left: unset;
        transform: unset;
        margin-top: 30px;
    }

    #journalDetail .section1 h1 {
        font-size: 1.2rem;
    }

    #journalDetail .section1 h4 {
        font-size: 1rem;
    }

    #journalDetail .section2 h5 {
        font-size: 1rem;
    }
    #journalDetail .section2 img {
        max-width: 100%;
        margin: 0 auto;
    }
}