/* ==========================================
   IGBD NOVOSTI
   ========================================== */

.igbd-novosti {

    width: 100%;

    padding: 40px 0 40px;

    background: #ffffff;

    box-sizing: border-box;

    font-family: inherit;
}


.igbd-novosti-inner {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding: 0;

    box-sizing: border-box;
}


/* ==========================================
   NASLOV SEKCIJE
   ========================================== */

.igbd-novosti-heading {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #d0dedc;

    padding-bottom: 15px;

    margin-bottom: 26px;
}


.igbd-novosti-heading::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 80px;

    height: 3px;

    background: #008b68;
}


.igbd-novosti-heading h2 {

    margin: 0;

    font-size: 30px;

    line-height: 1;

    font-weight: 600;

    color: #18221f;

    letter-spacing: -.5px;
}


/* ==========================================
   SVE NOVOSTI
   ========================================== */

.igbd-novosti-all {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #59645f;

    text-decoration: none !important;
}


.igbd-novosti-all span {

    font-size: 17px;

    line-height: 1;

    color: #b18d4b;

    transition: transform .25s ease;
}


.igbd-novosti-all:hover {

    color: #a98a4d !important;
}


.igbd-novosti-all:hover span {

    transform: translateX(4px);
}


/* ==========================================
   GRID - 3 VIJESTI
   ========================================== */

.igbd-novosti-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* ==========================================
   CARD / VIJEST
   ========================================== */

.igbd-novost {

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe4e2;

    border-radius: 6px;

    transition:
        box-shadow .25s ease,
        transform .25s ease;
}


.igbd-novost:hover {

    transform: translateY(-2px);

    box-shadow:
        0 8px 24px rgba(20, 45, 38, .06);
}


/* ==========================================
   SLIKA
   ========================================== */

.igbd-novost-image {

    display: block;

    width: 100%;

    height: 235px;

    overflow: hidden;

    background: #dbe7e5;
}


.igbd-novost-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease;
}


.igbd-novost:hover
.igbd-novost-image img {

    transform: scale(1.035);
}


.igbd-novost-no-image {

    width: 100%;

    height: 100%;

    background: #dbe7e5;
}


/* ==========================================
   SADRŽAJ
   ========================================== */

.igbd-novost-content {

    padding: 22px 22px 27px;
}


/* ==========================================
   KATEGORIJA
   ========================================== */

.igbd-novost-category {

    margin: 0 0 8px;

    font-size: 12px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: #b18d4b;
}


/* ==========================================
   NASLOV VIJESTI
   ========================================== */

.igbd-novost h3 {

    margin: 0;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 600;

    letter-spacing: -.2px;
}


.igbd-novost h3 a {

    color: #18221f;

    text-decoration: none !important;

    transition:
        color .25s ease;
}


.igbd-novost h3 a:hover {

    color: #008b68;
}


/* ==========================================
   UVODNI TEKST
   ========================================== */

.igbd-novost-excerpt {

    margin-top: 13px;

    color: #5d6865;

    font-size: 14px;

    line-height: 1.65;
}


.igbd-novost-excerpt p {

    margin: 0;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 950px) {

    .igbd-novosti-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        row-gap: 22px;
    }


    .igbd-novost-image {

        height: 220px;
    }


    .igbd-novost-category {

        font-size: 9px;

        letter-spacing: 1.4px;
    }

}


/* ==========================================
   MOBITEL
   ========================================== */

@media (max-width: 600px) {

    .igbd-novosti {

        padding: 45px 0 55px;
    }


    .igbd-novosti-inner {

        padding-left: 0px;

        padding-right: 0px;
    }


    .igbd-novosti-heading h2 {

        font-size: 27px;
    }


    .igbd-novosti-grid {

        grid-template-columns: 1fr;

        gap: 22px;
    }


    .igbd-novost-image {

        height: 220px;
    }


    .igbd-novost-content {

        padding: 22px 20px 25px;
    }


    .igbd-novost-category {

        margin-bottom: 8px;

        font-size: 12px;

        letter-spacing: 1.4px;
    }


    .igbd-novost h3 {

        font-size: 19px;
    }


    .igbd-novost-excerpt {

        font-size: 14px;

        line-height: 1.6;
    }

}