/* =========================================================
   GÖVDESAN PUBLIC SITE - MODÜLER CSS
   Kaynak satırlar: 1608-1704
   Ana sayfa haberler
   NOT: İlk refactor aşamasında CSS kuralları değiştirilmemiştir.
   ========================================================= */

/* =========================================================
   HABERLER
   ========================================================= */

.gv-home-news {
    padding: 85px 0;
    background: #f5f7f8;
}

.gv-news-card {
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #e0e6eb;
}

.gv-news-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #e8edf0;
}

.gv-news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .35s ease;
}

.gv-news-card:hover .gv-news-image img {
    transform: scale(1.035);
}

.gv-news-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    color: #91a0ab;
    font-size: 43px;
}

.gv-news-body {
    min-height: 215px;
    padding: 21px 22px;
}

.gv-news-body time {
    display: block;
    margin-bottom: 8px;
    color: #a4272d;
    font-size: 8px;
    font-weight: 700;
}

.gv-news-body h3 {
    margin: 0;
    font-size: 17px;
    line-height: 23px;
}

.gv-news-body h3 a {
    color: #263d51;
    text-decoration: none;
}

.gv-news-body h3 a:hover {
    color: #a4272d;
}

.gv-news-body p {
    margin: 11px 0 0 0;
    color: #7c8993;
    font-size: 10px;
    line-height: 17px;
}

.gv-news-more {
    display: inline-block;
    margin-top: 16px;
    color: #566e82;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.gv-news-more:hover {
    color: #a4272d;
    text-decoration: none;
}

.gv-news-more .glyphicon {
    margin-left: 5px;
    font-size: 8px;
}


