/* ==========================================
   IGBD - EDUKACIJA
   ========================================== */

.igbd-edukacija {

    width: 100%;

    padding: 20px 0 40px;

    background: #ffffff;

    box-sizing: border-box;

    font-family: inherit;
}


.igbd-edukacija-inner {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding: 0;

    box-sizing: border-box;
}


/* ==========================================
   NASLOV SEKCIJE
   ========================================== */

.igbd-edukacija-heading {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #d0dedc;

    padding-bottom: 15px;

    margin-bottom: 26px;
}


.igbd-edukacija-heading::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 80px;

    height: 3px;

    background: #008b68;
}


.igbd-edukacija-heading h2 {

    margin: 0;

    font-size: 30px;

    line-height: 1;

    font-weight: 600;

    color: #18221f;

    letter-spacing: -.5px;
}


/* ==========================================
   SVE EDUKACIJE
   ========================================== */

.igbd-edukacija-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-edukacija-all span {

    display: inline-block;

    font-size: 17px;

    line-height: 1;

    color: #b18d4b;

    transition:
        transform .25s ease;
}


.igbd-edukacija-all:hover {

    color: #a98a4d !important;
}


.igbd-edukacija-all:hover span {

    transform: translateX(4px);
}


/* ==========================================
   GRID
   ========================================== */

.igbd-edukacija-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


/* ==========================================
   BOX
   ========================================== */

.igbd-edukacija-box {

    position: relative;

    display: flex;

    min-width: 0;

    min-height: 235px;

    border: 1px solid #d8dedb;

    border-radius: 6px;

    background: #ffffff;

    box-sizing: border-box;

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


/* ==========================================
   HOVER
   ========================================== */

.igbd-edukacija-box:hover {

    transform: translateY(-3px);

    border-color: #c5d3cf;

    box-shadow:
        0 8px 24px rgba(20, 45, 38, .08);
}


/* ==========================================
   SLIKA
   ========================================== */

.igbd-edukacija-image {

    position: relative;

    align-self: stretch;

    flex: 0 0 42%;

    width: 42%;

    min-width: 0;

    overflow: hidden;

    display: block;

    text-decoration: none !important;

    background: #eef2f0;
}


.igbd-edukacija-image img {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 0;

    margin: 0;

    padding: 0;

    object-fit: cover;

    object-position: center;

    transition:
        transform .45s ease;
}


/* ==========================================
   HOVER SLIKA
   ========================================== */

.igbd-edukacija-box:hover
.igbd-edukacija-image img {

    transform: scale(1.04);
}


/* ==========================================
   SADRŽAJ
   ========================================== */

.igbd-edukacija-content {

    position: relative;

    flex: 1;

    min-width: 0;

    padding: 20px 28px 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: flex-start;
}


/* ==========================================
   STRELICA
   ========================================== */

.igbd-edukacija-icon {

    --arrow-color: #008b68;

    position: absolute;

    top: 20px;

    right: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 32px;

    height: 32px;

    border: 1px solid #d8dedb;

    border-radius: 6px;

    text-decoration: none !important;

    box-sizing: border-box;

    transition:
        background .25s ease,
        border-color .25s ease;
}


.igbd-edukacija-icon::before {

    content: "→";

    display: block;

    color: var(--arrow-color);

    font-size: 18px;

    font-weight: 300;

    line-height: 1;

    transition:
        color .25s ease,
        transform .25s ease;
}


.igbd-edukacija-icon:hover {

    background: var(--arrow-color);

    border-color: var(--arrow-color);
}


.igbd-edukacija-icon:hover::before {

    color: #ffffff;

    transform: translateX(2px);
}


/* ==========================================
   KATEGORIJA
   ========================================== */

.igbd-edukacija-category {

    margin: 0 0 0;

    padding-right: 42px;

    font-size: 12px !important;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color: #b18d4b;
}


/* ==========================================
   NASLOV POSTA
   ========================================== */

.igbd-edukacija-box h3 {

    margin: 18px 0 12px;

    padding-right: 40px;

    font-size: 21px;

    line-height: 1.25;

    font-weight: 600;

    letter-spacing: -.3px;
}


.igbd-edukacija-box h3 a {

    color: #18221f;

    text-decoration: none !important;

    transition:
        color .25s ease;
}


.igbd-edukacija-box h3 a:hover {

    color: #008b68;
}


/* ==========================================
   OPIS
   ========================================== */

.igbd-edukacija-box p {

    margin: 0;

    font-size: 14px;

    line-height: 1.6;

    color: #7b827f;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 900px) {

    .igbd-edukacija-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .igbd-edukacija-box {

        min-height: 220px;
    }


    .igbd-edukacija-image {

        flex: 0 0 40%;

        width: 40%;

        align-self: stretch;
    }


    .igbd-edukacija-image img {

        min-height: 0;

        height: 100%;
    }


    .igbd-edukacija-content {

        padding:
            20px 22px 22px;
    }


    .igbd-edukacija-box h3 {

        margin-top: 18px;

        font-size: 19px;
    }


    .igbd-edukacija-category {

        font-size: 12px;

        letter-spacing: 1.4px;
    }

}


/* ==========================================
   MOBITEL
   ========================================== */

@media (max-width: 650px) {

    .igbd-edukacija {

        padding: 0px 0 55px;
    }


    .igbd-edukacija-inner {

        padding-left: 0px;

        padding-right: 0px;
    }


    .igbd-edukacija-heading h2 {

        font-size: 27px;
    }


    .igbd-edukacija-all {

        font-size: 12px;

        letter-spacing: 1px;
    }


    .igbd-edukacija-grid {

        grid-template-columns: 1fr;

        gap: 16px;
    }


    .igbd-edukacija-box {

        display: block;

        min-height: 0;

        width: 100%;
    }


    .igbd-edukacija-category {

        margin-bottom: 8px;

        font-size: 12px !important;

        letter-spacing: 1.4px;
    }


    /* SLIKA GORE */

    .igbd-edukacija-image {

        display: block;

        width: 100%;

        height: 190px;

        align-self: auto;
    }


    .igbd-edukacija-image img {

        width: 100%;

        height: 190px;

        min-height: 190px;

        padding: 0;
    }


    /* SADRŽAJ */

    .igbd-edukacija-content {

        display: block;

        width: 100%;

        padding:
            20px 24px 26px;
    }


    /* STRELICA */

    .igbd-edukacija-icon {

        top: 20px;

        right: 20px;
    }


    /* KATEGORIJA */

    .igbd-edukacija-category {

        margin-bottom: 0;

        padding-right: 35px;

        font-size: 9px;

        letter-spacing: 1.4px;
    }


    /* NASLOV */

    .igbd-edukacija-box h3 {

        margin-top: 18px;

        margin-bottom: 10px;

        padding-right: 35px;

        font-size: 20px;
    }


    /* OPIS */

    .igbd-edukacija-box p {

        font-size: 13px;

        line-height: 1.65;
    }

}


/* ==========================================
   MALI TELEFONI
   ========================================== */

@media (max-width: 400px) {

    .igbd-edukacija-inner {

        padding-left: 0px;

        padding-right: 0px;
    }


    .igbd-edukacija-image {

        height: 175px;
    }


    .igbd-edukacija-image img {

        height: 175px;

        min-height: 175px;

        padding: 0;
    }


    .igbd-edukacija-content {

        padding:
            20px 20px 24px;
    }

}