/* Hero i ticker stilovi — dijeljeno između vijest.php i prijava.php (bajt-identičan blok) */
.local-hero {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 20px;
    font-family: 'Cuprum', sans-serif;
    color: #002B5C;
}
.local-hero-content {
    max-width: 80%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.local-hero h1, .local-hero h2, .local-hero p {
    text-shadow: 1px 1px 2px rgba(255,255,255,0.6);
    max-width: 100%;
    margin: 0;
    text-align: right;
}
.local-hero h1 { font-size: 28px; font-weight: 700; line-height: 1.3; }
.local-hero h2 { font-size: 24px; font-weight: 400; margin-top: 10px; line-height: 1.2; }
.local-hero p  { font-size: 15px; margin-top: 15px; font-weight: 400; }
.local-hero a {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 25px;
    background: #FFD700;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    font-size: 14px;
    align-self: center;
    text-align: center;
}
.local-hero a:hover { background: #FFC107; }

.scrolling-news {
    background: #002B5C;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    position: relative;
    width: 100%;
    margin: 10px 0;
    border-top: 2px solid #ffd700;
    border-bottom: 2px solid #ffd700;
}
.scrolling-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: scrollNews 50s linear infinite;
}
.scrolling-wrapper a {
    display: inline-block;
    padding: 0 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.scrolling-wrapper a:hover { color: #ffd700; }
@keyframes scrollNews {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}
