<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.news-title{
    border-bottom: 1px solid #ffd700;
    padding-bottom: 10px;
}
.news-label-centered {
    position: absolute; /* Position the background text */
    bottom: 0; /* At the bottom. Use top:0 to append it to the top */
    background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
    color: #f1f1f1; /* Grey text */
    width: 100%; /* Full width */
    padding: 20px; /* Some padding */
}

.news-text-secondary{
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
}

.news-label-container {
    position: relative;
    max-width: 800px; /* Maximum width */
    margin: 0 auto; /* Center it */
}

.news-label-container img {
    display: block;
    width: 100%;
    height: auto;
}
.news-label-secondary-container{
    position: relative;
    width: 100%;
}
.news-label-secondary-container:hover .overlay {
    height: 100%;
}
.news-block-general{
    padding:0;
    border: 1px solid #fff;


}

.news-block-top-l{
    padding:0;
    border: 1px solid #fff;
}

.news-block-top-r{
    padding:0;
    border: 1px solid #fff;
}

.news-block-bottom-l{
    padding:0;
    border: 1px solid #fff;
}

.news-block-bottom-r{
    padding:0;
    border: 1px solid #fff;
}

/*
.news-block-secondary{
    padding-left:0;
}*/
.zoom {
    transition: transform 1s;
}

.zoom:hover {
    -ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari 3-8 */
    transform: scale(1.05);
}
.overflow-hidden{
    overflow: hidden;
}</pre></body></html>