﻿/* --- RASPORED 3 VESTI U JEDNOM REDU --- */
.news-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.container-news {
    text-align: center;
    color: #124461;
    font-family: Tahoma, sans-serif;
    font-size: 32px;
}

@media(max-width: 700px) {
    .news-row {
        flex-direction: column;
    }
    .container-news {
        text-align: center;
        color: #124461;
        font-family: Tahoma, sans-serif;
        font-size: 14px;
    }
}

/* --- STARINSKA PERGAMENT KARTICA --- */
.news-card {
    flex: 1;
    background-size: cover;
    padding: 18px;
    /* TALASASTI BORDER KOJI RADI U SVIM BROWSERIMA */
    border-width: 25px;
    border-style: solid;
    border-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'>\
<path d='M0,10 Q10,0 20,10 T40,10 T60,10 T80,10 T100,10 \
         L100,90 Q90,100 80,90 T60,90 T40,90 T20,90 T0,90 Z' \
      fill='none' stroke='%23e3f5fc' stroke-width='10'/>\
</svg>") 30 round;
    box-shadow: 0 10px 28px rgba(0,0,0,0.45);
    position: relative;
    transition: 2s ease;
}

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 34px rgba(0,0,0,0.55);
    }

/* --- POCEPANE STARINSKE FOTOGRAFIJE --- */
.news-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    /*border: 10px solid #c8b088;*/
    filter: sepia(0.55) contrast(1.2) brightness(0.9);
    box-shadow: 0 10px 25px rgba(0,0,0,0.45);
    /*clip-path: polygon( 6% 0%, 94% 0%, 100% 7%, 100% 93%, 94% 100%, 6% 100%, 0% 93%, 0% 7% );*/
    /*background: url('images/old_photo_texture.png');*/
    background-size: cover;
}

/* --- GOTIČKI NASLOV SA KRSTOM --- */
.news-title {
    font-family: "Uncial Antiqua", serif;
    font-size: 26px;
    font-weight: 700;
    color: #3e2d1f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
    border-bottom: 2px solid #bfa47a;
    padding-bottom: 6px;
    margin-top: 14px;
    position: relative;
}

    .news-title:after {
        /*content: "†";*/
        position: absolute;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 22px;
        color: #6b573a;
    }

.news-link {
    text-decoration: none; /* Skida liniju */
    color: inherit; /* Zadrži boju teksta */
    cursor: pointer; /* Ostaje klikabilno */
}

    .news-link:hover {
        /*text-decoration: underline;*/ /* Ako želiš */
        opacity: 0.8; /* ili neki efekat */
    }

/* DATUM */
.news-date {
    font-size: 14px;
    margin-top: 12px;
    color: #5e4b3a;
}
