/**
 * @author      Dominik Douděra(doudera@grow-studio.eu)
 * @copyright   (C) 2016 Všechna práva vyhrazena.
 * @link        https://grow-studio.eu/
 */
.news {
    padding-bottom: 30px;
}
.news h2 {
    padding-bottom: 10px;
}
.news-page-content {
    margin-bottom: 35px;
}
.news-grid {
    clear: both;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}
.news-card {
    background: #fff;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.news-card-image {
    background: #f5f5f5;
    display: block;
    overflow: hidden;
}
.news-card-image img {
    aspect-ratio: 555 / 365;
    display: block;
    object-fit: cover;
    transition: transform .2s ease;
    width: 100%;
}
.news-card:hover .news-card-image img {
    transform: scale(1.04);
}
.news-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}
.news-card-date {
    color: #D2262E;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.news-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 12px;
}
.news-card h3 a {
    color: #222;
}
.news-card h3 a:hover {
    color: #D2262E;
}
.news-card-desc {
    color: #555;
    flex: 1;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}
.news-card-link {
    align-self: flex-start;
}
.news .item img {
    height: auto;
    max-width: 100%;
}
.newsDetail .left img {
    height: auto;
    max-width: 100%;
}
.newsDetail .right {
    font-style: italic;
}
.newsDetail h2 {
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .news-grid {
        gap: 22px;
        grid-template-columns: 1fr;
    }
    .news-card-body {
        padding: 18px;
    }
}
.news-detail-page .body_of_page {
    overflow: hidden;
}
.news-detail-image img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}
.news-detail-intro {
    font-size: 17px;
    line-height: 1.75;
}
.news-detail-anotation {
    color: #444;
    font-style: italic;
    margin-bottom: 25px;
}
.news-detail-content {
    clear: both;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 30px;
}
@media (max-width: 991px) {
    .news-detail-intro {
        margin-top: 24px;
    }
}
.news-page-content ul,
.news-detail-content ul {
    list-style: none;
    margin: 18px 0 24px;
    padding-left: 0;
}
.news-page-content ul li,
.news-detail-content ul li {
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 28px;
    position: relative;
}
.news-page-content ul li:before,
.news-detail-content ul li:before {
    color: #D2262E;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 14px;
    left: 0;
    position: absolute;
    top: 2px;
}
.body_of_page h3,
.staticpage h3,
.news-detail-content h3 {
    margin-top: 32px;
    margin-bottom: 14px;
}