.homeSection {
    margin-bottom: 18px;
}
    .homeSection p {
        margin-left: 10px;
        font-size: 14px;
        margin-bottom: 20px;
    }
.homeLoginForm {
    padding: 5px 0 12px 0;
    line-height: 28px;
}

.homeLoginFields {
    display: grid;
    grid-template-columns: 45px minmax(120px, 240px) 60px minmax(120px, 240px) 70px;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px;
}

    .homeLoginFields input {
        width: 100%;
        height: 30px;
        border: 1px solid var(--cara-border);
        padding: 6px 8px;
    }

.requiredMark {
    color: #c00000;
    font-weight: bold;
}

.newsList {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(235px, 1fr);
    grid-template-rows: repeat(3, 150px) 50px;
    gap: 10px;
    margin-top: 5px;
}

.newsItem {
    min-width: 0;
    min-height: 0;
}

.newsItem.largeNewsItem {
    grid-row: 1 / span 3;
    grid-column: 1;
}

.newsItem.moreNews {
    grid-column: 1 / -1;
    background: none;
}

.newsItem.moreNews a {
    display: block;
    width: 100%;
    padding-right: 20px;
    border-bottom: 1px solid #18A44C;
    background: url(../images/layout/icon_next.gif) no-repeat right bottom 10px;
    color: #18A44C;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
}

.newsItem img {
    display: block;
    width: 100%;
    height: 105px;
    object-fit: cover;
    object-position: top;
}

.newsItem.largeNewsItem img {
    width: 100%;
    height: 311px;
}

.newsItem .newsTxt {
    height: 40px;
    overflow: hidden;
    padding: 5px 8px 0;
    border-top: 1px solid #18A44C;
    border-bottom: 1px solid #999999;
    background-color: #F4F4F4;
    background-image: url('../images/layout/icon_next.gif');
    background-repeat: no-repeat;
    background-position: 95% 85%;
}

.newsItem.largeNewsItem .newsTxt {
    height: 159px;
    background-image: none;
}

.newsItem .newsTxt h2 {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    line-height: 16px;
}

.newsItem.largeNewsItem .newsTxt h2 {
    font-size: 25px;
    line-height: 30px;
}

.newsItem .newsDesc {
    display: none;
    color: #333333;
    font-size: 12px;
    line-height: 15px;
}

.newsItem.largeNewsItem .newsDesc {
    display: block;
    font-size: 15px;
    line-height: 20px;
}

.homeEmptyList,
.homeLoadMessage {
    padding: 12px 0;
    color: #555;
}

.MainTxt {
    padding: 0 0 4px 0;
    line-height: 1.5;
}

@media (min-width: 1250px) {
    .newsList {
        grid-template-columns: minmax(0, 3fr) 300px;
        grid-template-rows: repeat(3, 180px) 50px;
    }

    .newsItem img {
        height: 110px;
    }

    .newsItem.largeNewsItem img {
        height: 381px;
    }

    .newsItem .newsTxt {
        height: 50px;
    }

    .newsItem .newsDesc {
        display: block;
    }

}

@media (max-width: 767.98px) {
    .newsList {
        display: block;
    }

    .newsItem,
    .newsItem.largeNewsItem {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .newsItem img,
    .newsItem.largeNewsItem img {
        width: 100%;
        height: auto;
        max-height: 320px;
    }

    .newsItem.moreNews {
        height: 50px;
    }

    .homeLoginFields {
        display:block;
    }
    .homeLoginFields button {
        margin-top:10px;
        width: 100%;
    }
}