﻿/* --- FULL NEWS PAGE LAYOUT --- */

.full-news-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    font-family: "Times New Roman", serif;
    line-height: 1.7;
}

.full-news-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.full-news-date {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
}

/* FLOAT SLIKA (tekst ide oko nje pa ispod) */
.full-news-image {
    float: left;
    max-width: 350px;
    margin: 0 25px 20px 0;
    border-radius: 10px;
    display: block;
}

/* TEKST */
.full-news-content {
    font-size: 18px;
    margin-top: 10px;
    text-align: justify; /* ✔ Ravnomerno poravnanje teksta */
    text-justify: inter-word; /* ✔ Još lepše poravnanje reči */
}

/* VIDEO ISPOD TEKSTA, CENTRIRAN I SMANJEN */
.full-news-video-section {
    clear: both;
    margin-top: 40px;
    text-align: center;
}

.full-news-video {
    width: 70%;
    height: 340px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* NASLOV VIDEA */
.video-header {
    font-size: 24px;
    margin-bottom: 15px;
}

/* LINK NAZAD */
.back-link {
    font-size: 16px;
    color: #4a148c;
    text-decoration: none;
}

    .back-link:hover {
        text-decoration: underline;
    }

/* MOBILNI - VIDEO 100% ŠIRINE */
@media (max-width: 768px) {
    .full-news-image {
        float: none;
        max-width: 100%;
        display: block;
        margin: 0 auto 20px auto;
    }

    .full-news-video {
        width: 100%;
        height: auto;
    }
}
