/**
 * @version     CVS: 4.0.0
 * @package     com_rds_news
 * @copyright   2021 Robert Petrovic
 * @license     GNU General Public License Version 2 oder später; siehe LICENSE.txt
 * @author      Robert Petrovic <mail@robert-petrovic.com>
 */
.card.rds-news
{
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    min-height: 100%;
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
}
.card.rds-news:hover
{
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.card.rds-news .card-header img
{
    object-fit: cover;
    object-position: bottom;

}
.card.rds-news .card-header
{
    -webkit-border-radius: 1px 1px 1px 1px;
    -moz-border-radius: 1px 1px 1px 1px;
    border-radius: 1px 1px 1px 1px;
    background-size: contain;
    background-position: 0 -20px;
    background-repeat: no-repeat;
    padding: unset;
    overflow: hidden;
    border: transparent;
    background-color: rgba(0,0,0,0);
}
.card.rds-news .card-header a,
.card.rds-news .card-header a:hover
{
    padding: unset;
    margin: unset;
    background: transparent;
    color: transparent;
    display: inline-block;
    height: 100%;
    width: 100%;
}
.rds-news-card-title-image
{
    padding-top: 56%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid rgba(0,0,0,0);
    -webkit-box-shadow: 2px 3px 8px rgba(0,0,0,0.15);
    -moz-box-shadow: 2px 3px 8px rgba(0,0,0,0.15);
    box-shadow: 2px 3px 8px rgba(0,0,0,0.15);
    transition: all .2s;
}
.rds-news-card-title-image:hover
{
    border: 1px solid rgba(0,0,0,0);
    -webkit-box-shadow: 2px 3px 14px rgba(0,0,0,0.25);
    -moz-box-shadow: 2px 3px 14px rgba(0,0,0,0.25);
    box-shadow: 2px 3px 14px rgba(0,0,0,0.25);
}
.rds-news-card-title-image .kicon-search
{
    display: inline-block;
    position: absolute;
    left: 46%;
    bottom: 55%;
    color: #ffffff;
    opacity: .4;
    border: 1px solid transparent;
    width: 25px;
    height: 25px;
    font-size: 2rem;
    transition: all .2s;
}
.rds-news-card-title-image:hover .kicon-search
{
    opacity: 1;
}
.rds-news-detail .contact-image img
{
    max-height: 200px;
    margin-right: 15px;
}
.rds-news-detail hr
{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
    border-top: 1px solid rgba(200,200,200,.1);
}
.card.rds-news .tag-small:before,
.rds-news-list .tag-small:before,
.rds-news-detail .tag-small:before
{
    content: "• ";
    position: relative;
    top: 1px;
    left: -2px;
}
.card.rds-news .card-body .tag-small,
.rds-news-list .tag-small,
.rds-news-detail .tag-small
{
    font-size: .7rem;
    color: rgba(0,0,0,.8);
    background: rgba(100,100,100,.2);
    -webkit-border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    border-bottom: 1px solid rgba(0,0,0,.125);
    border-right: 1px solid rgba(0,0,0,.125);
    -webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    -moz-box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);
    display: inline-block;
    padding: 3px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.card.rds-news .card-body .date-divider-line
{
    border-bottom: 1px solid #dedede;
}
.card.rds-news .card-body .date-divider
{
    font-size: .75rem;
    color: rgba(0,0,0,.5);
    position: relative;
    top: 3px;
}
.card.rds-news.picture-gallery
{
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
}
.rds-news-list img
{
    width: 100%;
    margin-bottom: 15px;
}

.rds-news-list .rds-news-list-body
{
    font-size: .9rem;
}

.rds-news-list .tag-small
{
    margin-top: 0;
}

.rds-news-list a h5
{
    color: rgba(0,0,0,.9);
    transition: color .2s;
}
.rds-news-list a h5:hover
{
    color: rgba(255,100,0,1);
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px)
{
    .card.rds-news .card-header
    {

    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px)
{
    .card.rds-news .card-header img
    {

    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px)
{
    .rds-news-list img
    {
        width: 240px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px)
{
    .rds-news-list .rds-news-list-body
    {
        padding-right: 25%;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px)
{
    .card.rds-news .card-header
    {

    }
}


.card.rds-news .card-footer
{
    background: transparent;
    border: transparent;
}

.rds-news-hero
{
    background-image: url("/images/content/hero/Hero_Placeholder.jpg?1678954674086");
    height: 480px;
    width: 101vw;
    margin-left: -2rem;
    background-position: center;
}
.rds-news-hero-title-image-wrapper
{
    position: relative;
    width: 650px;
    top: 85px;
    left: -30px;
}
.rds-news-hero-title-image
{
    background-repeat: no-repeat;
    width: 100%;
    padding-top: 56%; /* 1:1 Aspect Ratio */
    border: 1px solid rgba(0,0,0,0);
    background-size: cover;
    margin-left: -50px;
}

.rds-news-hero-title-image.shadow
{
    border: 1px solid rgba(0,0,0,.2);
    -webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    -moz-box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.15);
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 768px)
{
    .rds-news-hero-title-image-wrapper
    {
        width:95%;
        left: 2.5%;
        top: 65px;
    }
    .rds-news-hero
    {
        height: 330px;
        margin-bottom: 60px;
    }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px)
{
    .rds-news-hero
    {
        height: 260px;
        margin-bottom: 90px;
    }
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 440px)
{
    .rds-news-hero-title-image-wrapper
    {
        top: 20px;
    }
    .rds-news-hero
    {
        height: 200px;
        margin-bottom: 60px;
    }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px)
{

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px)
{

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px)
{

}
/* navigation bar */
.news-tags
{
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    display: inline-block;
    width: 100%;
}
.btn-tag
{
    display: inline-block;
    border: 1px solid rgba(0,0,0,.2);
    background: rgba(200,200,200,.1);
    -webkit-border-radius: 2px 2px 2px 2px;
    -moz-border-radius: 2px 2px 2px 2px;
    border-radius: 2px 2px 2px 2px;
    padding: 8px 16px 8px 8px;
    color: rgba(0,0,0,.7);
    margin-top: 10px;
    margin-right: 5px;
}
.btn-tag .kicon-checkbox,
.btn-tag .kicon-checkbox-checked
{
    position: relative;
    top: -1px;
}
.btn-tag:hover,
.btn-tag:focus
{
    cursor: pointer;
    color: rgba(0,0,0,1);
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}
.btn-tag.checked,
.btn-tag.checked:hover
{
    cursor: pointer;
    color: rgba(255,255,255,1);
    background: #263139;

}