#item-detail {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    padding: 0 0 30px;
    box-sizing: border-box;
    color: white;
}

#item-detail > h1 {
    position: relative;
    padding: 15px 20px;
    text-transform: capitalize;
    word-break: break-word;
    color: #ffffff;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(15px);
}

#item-detail > .general,
#item-detail > .text-links,
#item-detail > .text-paragraphs,
#item-detail > .photo-links,
#item-detail > .photos {
    width: 100%;
    padding: 10px 0 0;
    word-break: break-word;
    box-sizing: border-box;
}
#item-detail > .photos {
    padding: 0;
    background-color: #2B2B2B;
}
#item-detail > .photos .wrap {
    padding: 0;
}
#item-detail .article-back-button {
    position: absolute;
    top: 20px;
    left: 20px;
}
#item-detail > .photos.stick-top {
    padding: 0;
}
#item-detail > .text-paragraphs {
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-top: 0;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
}
#item-detail > .text-paragraphs.article-content-last {
    border-radius: 0 0 12px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
#item-detail > .text-links > h3,
#item-detail > .text-paragraphs > h3,
#item-detail > .photo-links > h3,
#item-detail > .photos > h3 {
    color: rgb(255, 255, 64);
    font-size: 25px;
    text-transform: capitalize;
}
#item-detail > .text-links > h3::after,
#item-detail > .photo-links > h3::after,
#item-detail > .photos > h3::after {
    content: ":";
}

#item-detail > .general > .poster {
    display: inline-block;
    max-width: 50%;
}
#item-detail > .general > .poster > img {
    max-width: 100%;
    max-height: 350px;
    object-fit: cover;
}
#item-detail > .general > .detail {
    display: inline-block;
    max-width: 50%;
    vertical-align: top;
}
#item-detail > .general > .detail > h4 {
    margin-top: 0px;
}
#item-detail > .general > .detail > .wrap {
    margin-bottom: 15px;
}
#item-detail > .general > .detail .title {
    display: inline-block;
    color: rgb(255, 255, 64);
    text-transform: capitalize;
}
#item-detail > .general > .detail .title::after {
    content: ":";
    padding-right: 5px;
}
#item-detail > .general > .detail .content {
    display: inline-block;
    text-transform: capitalize;
}
#item-detail > .general > .detail .content.url {
    text-transform: none;
    padding: 0 5px;
}

#item-detail > .text-paragraphs > span {
    display: block;
    margin: 1em 0;
    text-align: justify;
    word-break: break-word;
}
#item-detail > .text-paragraphs table th,
#item-detail > .text-paragraphs table td {
    border: 1px solid white;
    padding: 5px;
}

#item-detail > .text-links > .wrap {
    width: 100%;
    min-width: auto;
}
#item-detail > .text-links > .wrap > a {
    display: block;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    color: white;
    background-color: rgba(208, 208, 208, 0.2);
    border: 1px solid rgba(112,112,112,1);
    text-align: justify;
    text-decoration: none;
    border-radius: 5px;
}
#item-detail > .text-links > .wrap > a:hover {
    background-color: rgba(208, 208, 208, 0.5);
}

#item-detail > .photo-links > h3 {
    margin-bottom: 10px;
}

#item-detail > .photos > .wrap {
    box-sizing: border-box;
}
#item-detail > .photos img {
    display: block;
    width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 1024px) {
    #item-detail {
        width: 100%;
    }
    
    #item-detail  > h1 {
        background: rgba(255, 255, 255, 0.20);
        /*backdrop-filter: blur(15px);*/
    }
    
    #item-detail > .rating {
        position: relative;
        display: block;
        text-align: center;
    }
    
    #item-detail > .text-links,
    #item-detail > .text-paragraphs,
    #item-detail > .photo-links,
    #item-detail > .photos {
        text-align: justify;
    }

    #item-detail > .text-paragraphs {
        background: none;
        border: 0 !important;
    }
    
    #item-detail > .general {
        text-align: center;
    }
    #item-detail > .general > .poster {
        display: block;
        max-width: 100%;
    }
    #item-detail > .general > .detail {
        display: block;
        max-width: 100%;
        margin-top: 15px;
        text-align: left;
    }
    
    #item-detail > .text-links > .wrap {
        padding: 0;
        text-align: center;
    }

    #item-detail > .photos img {
        width: 100%;
    }

}