.elementor-191 .elementor-element.elementor-element-2b71d88{--display:flex;--min-height:200px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-191 .elementor-element.elementor-element-2b71d88:not(.elementor-motion-effects-element-type-background), .elementor-191 .elementor-element.elementor-element-2b71d88 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://agrikol.bg/wp-content/uploads/2026/03/bg-page-title-1.jpg");background-position:center center;background-repeat:no-repeat;background-size:cover;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-191 .elementor-element.elementor-element-7233790 .elementor-heading-title{font-family:"Montserrat", Sans-serif;font-size:32px;font-weight:600;color:#FFFFFF;}.elementor-widget-breadcrumbs{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-191 .elementor-element.elementor-element-45e7f5f{color:#FFFFFF;}.elementor-191 .elementor-element.elementor-element-45e7f5f a{color:#FFFFFF;}.elementor-191 .elementor-element.elementor-element-45e7f5f a:hover{color:var( --e-global-color-primary );}.elementor-191 .elementor-element.elementor-element-efd00b9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:60px;--padding-bottom:60px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-191 .elementor-element.elementor-element-7233790 .elementor-heading-title{font-size:26px;}}/* Start custom CSS *//* =========================================
   REDIZAJN SINGLE SERVIS STRANE (Agrikol.bg)
   Font: Montserrat | Boja: #496E2D | Oštre ivice
========================================= */

/* Glavni kontejner stranice */
.wsk-single-post {
    font-family: 'Montserrat', sans-serif; /* Primena novog fonta */
    max-width: 900px; /* Ograničava širinu radi lakšeg čitanja teksta */
    margin: 0 auto; /* Centriranje kontejnera na sredinu ekrana */
    padding: 40px 20px;
    background-color: #ffffff;
}

/* Hero slika na vrhu */
.wsk-single-post__img-wrap {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    aspect-ratio: 16/9; /* Zadržava landscape proporciju slike */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Suptilna senka oko slike */
    border-radius: 0; /* Oštre ivice kontejnera */
}

.wsk-single-post__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0; /* Oštre ivice slike */
}

/* Zaglavlje (Naslov i uvodni tekst) */
.wsk-single-post__header {
    margin-bottom: 40px;
}

/* Glavni naslov (H1) */
.wsk-single-post__title {
    font-size: 36px;
    font-weight: 800; /* Podebljan Montserrat za moćan naslov */
    color: #222222;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 16px;
}

/* Dekorativna linija ispod naslova u ZELENOJ primarnoj boji */
.wsk-single-post__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #496E2D; /* Primarna BG zelena boja */
}

/* Uvodni текст (Excerpt) - Izdvojen kao "Lead" paragraf */
.wsk-single-post__excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #444444;
    font-weight: 500;
    padding-left: 20px;
    border-left: 4px solid #496E2D; /* Oštar zeleni detalj uz levu ivicu teksta */
    margin-bottom: 0;
}

/* Glavni sadržaj i tipografija */
.wsk-single-post__content {
    font-size: 16px;
    line-height: 1.8; /* Veći prored za bolju čitljivost dugih tekstova */
    color: #555555;
    margin-top: 40px;
}

.wsk-single-post__content p {
    margin-bottom: 24px;
}

.wsk-single-post__content strong {
    color: #222222; /* Podebljan tekst je malo tamniji od običnog */
    font-weight: 700;
}

/* Stilizacija liste (Bullet points) - Oštri zeleni kvadratići */
.wsk-single-post__content ul {
    list-style: none; /* Uklanjamo default okrugle tačke */
    padding-left: 0;
    margin-top: 24px;
    margin-bottom: 32px;
}

.wsk-single-post__content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}

/* Custom kvadratni bulleti u primarnoj boji */
.wsk-single-post__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; /* Poravnanje kvadrata sa prvim redom teksta */
    width: 10px;
    height: 10px;
    background-color: #496E2D; /* ZELENA BG boja */
    border-radius: 0; /* Oštre ivice kvadratića */
}

/* Prostor za eventualni footer deo */
.wsk-single-post__footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

/* =========================================
   RESPONZIVNOST (Mobilni telefoni)
========================================= */
@media (max-width: 768px) {
    .wsk-single-post__title {
        font-size: 28px;
    }
    
    .wsk-single-post__img-wrap {
        aspect-ratio: auto; /* Oslobađa visinu na malim ekranima */
        height: 250px;
    }
}/* End custom CSS */