/* ==========================================
   IGBD - KORISNO
   ========================================== */

.igbd-korisno {

    width: 100%;

    padding: 10px 0 20px;

    background: #ffffff;

    box-sizing: border-box;

    font-family: inherit;
}


.igbd-korisno-inner {

    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding: 0px;

    box-sizing: border-box;
}


/* ==========================================
   NASLOV
   ========================================== */

.igbd-korisno-heading {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #d0dedc;

    padding-bottom: 15px;

    margin-bottom: 26px;
}


.igbd-korisno-heading h2 {

    margin: 0;

    font-size: 30px;

    line-height: 1;

    font-weight: 600;

    color: #18221f;

    letter-spacing: -.5px;
}


.igbd-korisno-heading::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 80px;

    height: 3px;

    background: #008b68;
}


/* ==========================================
   GRID - 2 BOXA
   ========================================== */

.igbd-korisno-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 26px;
}


/* ==========================================
   BOX
   ========================================== */

.igbd-korisno-box {

    position: relative;

    min-width: 0;

    min-height: 195px;

    padding: 38px 32px 32px;

    border: 1px solid #d8dedb;

    border-radius: 6px;

    background: #ffffff;

    box-sizing: border-box;
}


/* ==========================================
   BROJ
   ========================================== */

.igbd-korisno-number {

    margin-bottom: 18px;

    font-size: 15px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #b18d4b;
}


/* ==========================================
   IKONA / LINK
   ========================================== */

.igbd-korisno-icon {

    --arrow-color: #008b68;

    position: absolute;

    top: 25px;

    right: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 35px;

    height: 35px;

    border: 1px solid #d8dedb;

    border-radius: 6px;

    text-decoration: none !important;

    transition:
        background .25s ease,
        border-color .25s ease;
}


/* STRELICA */

.igbd-korisno-icon::before {

    content: "→";

    display: block;

    color: var(--arrow-color);

    font-size: 19px;

    font-weight: 300;

    line-height: 1;

    transition:
        color .25s ease,
        transform .25s ease;
}


/* HOVER */

.igbd-korisno-icon:hover {

    background: var(--arrow-color);

    border-color: var(--arrow-color);
}


.igbd-korisno-icon:hover::before {

    color: #ffffff;

    transform: translateX(2px);
}


/* ==========================================
   NASLOV BOXA
   ========================================== */

.igbd-korisno-box h3 {

    margin: 0 0 10px;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 500;

    letter-spacing: -.2px;
}


.igbd-korisno-box h3 a {

    color: #008b68;

    text-decoration: none !important;

    transition: color .25s ease;
}


.igbd-korisno-box h3 a:hover {

    color: #aa8a4d;
}


/* ==========================================
   OPIS
   ========================================== */

.igbd-korisno-box p {

    max-width: 600px;

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #7b827f;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 750px) {

    .igbd-korisno-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .igbd-korisno-box {

        min-height: 180px;
    }
}


/* ==========================================
   MOBITEL
   ========================================== */

@media (max-width: 600px) {

    .igbd-korisno {

        padding: 0px 0 55px;
    }


    .igbd-korisno-inner {

        padding-left: 0px;

        padding-right: 0px;
    }


    .igbd-korisno-heading h2 {

        font-size: 27px;
    }


    .igbd-korisno-box {

        padding: 32px 25px 28px;

        min-height: 175px;
    }


    .igbd-korisno-icon {

        top: 21px;

        right: 21px;
    }


    .igbd-korisno-box h3 {

        font-size: 20px;
    }

}