.tvz-hero{
height:420px;
background-size:cover;
background-position:center;
position:relative;
display:flex;
align-items:center;
}

.tvz-hero-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,.5);
}

.tvz-hero-content{
position:relative;
color:#fff;
padding:40px;
max-width:900px;
}

.tvz-accordion{
border:1px solid #ddd;
margin-bottom:10px;
}

.tvz-accordion-body{
display:none;
padding:20px;
}

.tvz-accordion.active > .tvz-accordion-body{
display:block;
}

.tvz-course-card{
display:block;
padding:12px;
border:1px solid #eee;
margin-bottom:8px;
}
.tvz-tabs-nav{
display:flex;
gap:10px;
margin-bottom:30px;
}

.tvz-tab-btn{
padding:10px 16px;
background:#eee;
border:0;
cursor:pointer;
}

.tvz-tab-btn.active{
background:#004b87;
color:#fff;
}

.tvz-tab-content{
display:none;
}

.tvz-tab-content.active{
display:block;
}

.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
gap:20px;
}

.tvz-staff-card{
border:1px solid #eee;
padding:12px;
text-align:center;
}
.tvz-tabs{
display:flex;
gap:10px;
flex-wrap:wrap;
margin-top:20px;
}

.tvz-tab{
padding:10px 16px;
background:#f2f4f8;
border-radius:6px;
text-decoration:none;
}

.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

.tvz-staff-card{
padding:16px;
border:1px solid #ddd;
border-radius:6px;
background:#fff;
}
.tvz-section-title{
font-size:28px;
margin-bottom:20px;
font-weight:600;
}

.tvz-accordion{
border:1px solid #e5e7eb;
border-radius:8px;
margin-bottom:12px;
overflow:hidden;
}

.tvz-accordion-toggle{
width:100%;
background:#f8fafc;
border:0;
padding:16px 20px;
text-align:left;
font-size:18px;
display:flex;
justify-content:space-between;
cursor:pointer;
}

.tvz-accordion-body{
display:none;
padding:20px;
background:#fff;
}

.tvz-accordion.active > .tvz-accordion-body{
display:block;
}

.tvz-group-title{
margin-top:10px;
font-size:18px;
}

.tvz-course-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
gap:12px;
margin-top:10px;
}

.tvz-course-card{
background:#fff;
border:1px solid #e5e7eb;
padding:14px;
border-radius:6px;
text-decoration:none;
display:flex;
justify-content:space-between;
align-items:center;
}

.tvz-course-title{
font-weight:500;
}

.tvz-ects{
font-size:14px;
color:#6b7280;
}

.tvz-smjer{
margin-top:40px;
}

.tvz-smjer-title{
font-size:22px;
margin-bottom:15px;
}
.tvz-layout{
display:grid;
grid-template-columns: 1fr 320px;
gap:40px;
max-width:1400px;
margin:auto;
padding:40px 20px;
}

.tvz-main{
min-width:0;
}

.tvz-sidebar{
position:relative;
}

.tvz-info-panel{
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:20px;
position:sticky;
top:120px;
}
.tvz-study-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-bottom:50px;

}

.tvz-study-card{

display:block;
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
transition:all .2s;

}

.tvz-study-card:hover{

transform:translateY(-4px);
box-shadow:0 6px 18px rgba(0,0,0,0.15);

}

.tvz-study-image img{

width:100%;
height:180px;
object-fit:cover;

}

.tvz-study-content{

padding:18px;

}

.tvz-study-content h3{

font-size:18px;
margin-bottom:10px;

}

.tvz-study-content p{

font-size:14px;
color:#555;

}
.tvz-staff-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;

}

.tvz-staff-card{

text-align:center;
background:#fff;
padding:20px;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
transition:.2s;

}

.tvz-staff-card:hover{

transform:translateY(-4px);
box-shadow:0 8px 22px rgba(0,0,0,0.15);

}

.tvz-staff-photo img{

width:140px;
height:140px;
object-fit:cover;
border-radius:50%;
margin-bottom:12px;

}

.tvz-staff-name{

font-size:16px;
margin-bottom:6px;

}

.tvz-staff-title{

font-size:14px;
color:#666;

}
@media(max-width:1200px){

.tvz-study-grid,
.tvz-staff-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:800px){

.tvz-study-grid,
.tvz-staff-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:500px){

.tvz-study-grid,
.tvz-staff-grid{

grid-template-columns:1fr;

}

}
.tvz-hero{

position:relative;
height:420px;
display:flex;
align-items:center;
color:white;
overflow:hidden;

}

.tvz-hero img{

position:absolute;
width:100%;
height:100%;
object-fit:cover;

}

.tvz-hero::after{

content:"";
position:absolute;
inset:0;
background:solid(
90deg,
rgba(0,44,95,.85) 0%,
rgba(0,44,95,.65) 35%,
rgba(0,44,95,.25) 70%,
rgba(0,44,95,.1) 100%
);

}

.tvz-hero-content{

position:relative;
max-width:1200px;
margin:auto;
padding:60px 20px;

}

.tvz-hero-title{

font-size:46px;
font-weight:700;
margin-bottom:14px;

}

.tvz-hero-lead{

font-size:18px;
max-width:700px;
}
.tvz-study-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
margin-bottom:50px;

}

.tvz-study-card{

display:block;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,.08);
transition:.25s;

}

.tvz-study-card:hover{

transform:translateY(-6px);
box-shadow:0 12px 28px rgba(0,0,0,.15);

}

.tvz-study-image img{

width:100%;
height:200px;
object-fit:cover;

}

.tvz-study-content{

padding:22px;

}

.tvz-study-content h3{

font-size:20px;
margin-bottom:10px;
color:#003366;

}

.tvz-study-meta{

font-size:14px;
color:#666;

}
.tvz-staff-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

.tvz-staff-card{

background:white;
border-radius:10px;
padding:24px;
text-align:center;
box-shadow:0 6px 18px rgba(0,0,0,.08);
transition:.2s;

}

.tvz-staff-card:hover{

transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,.15);

}

.tvz-staff-photo img{

width:140px;
height:140px;
border-radius:50%;
object-fit:cover;
margin-bottom:14px;

}

.tvz-staff-name{

font-size:18px;
font-weight:600;
margin-bottom:6px;

}

.tvz-staff-title{

font-size:14px;
color:#777;

}
.tvz-course-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}

.tvz-course-card{

display:block;
background:white;
padding:18px;
border-radius:8px;
box-shadow:0 3px 12px rgba(0,0,0,.08);
transition:.2s;

}

.tvz-course-card:hover{

box-shadow:0 10px 24px rgba(0,0,0,.14);
transform:translateY(-4px);

}

.tvz-course-title{

font-size:16px;
font-weight:600;
margin-bottom:8px;

}

.tvz-ects{

font-size:13px;
color:#666;

}
@media(max-width:1200px){

.tvz-study-grid,
.tvz-staff-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:900px){

.tvz-study-grid,
.tvz-staff-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.tvz-study-grid,
.tvz-staff-grid{

grid-template-columns:1fr;

}

}
.tvz-hours-list{
list-style:none;
padding:0;
margin:0;
}

.tvz-hours-list li{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
font-size:15px;
}

.tvz-hours-total{
font-weight:700;
font-size:16px;
color:#003a8f;
}
.tvz-study-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
}
.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}
@media (max-width:1000px){

.tvz-staff-grid{
grid-template-columns:repeat(2,1fr);
}

.tvz-study-grid{
grid-template-columns:1fr;
}

}
.tvz-hero-title{
background:rgba(0,40,90,0.65);
}
.tvz-map iframe{
width:100%;
height:250px;
border:0;
border-radius:8px;
}

.tvz-map{
overflow:hidden;
border-radius:8px;
}
.tvz-person-mini{
display:flex;
align-items:center;
gap:12px;
margin-bottom:14px;
}

.tvz-avatar{
width:36px;
height:36px;
border-radius:50%;
background:#1e3a8a;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
font-size:14px;
}

.tvz-person-mini-meta a{
font-weight:600;
color:#1f2937;
text-decoration:none;
}

.tvz-role{
font-size:12px;
color:#6b7280;
margin-bottom:2px;
}
.tvz-study-card img{
height:250px;
width:100%;
object-fit:cover;
}
.tvz-study-card{
max-width:420px;
}
.tvz-map{
overflow:hidden;
border-radius:8px;
margin-top:15px;
}

.tvz-map iframe{
display:block;
width:100%;
max-width:100%;
height:250px;
border:0;
}

.tvz-person-mini{
display:flex;
align-items:flex-start;
gap:12px;
margin-bottom:14px;
}

.tvz-person-mini-meta{
flex:1;
}

.tvz-person-mini-meta a{
text-decoration:none;
font-weight:600;
color:#1f2937;
}

.tvz-role{
font-size:12px;
color:#6b7280;
margin-bottom:3px;
}
.tvz-study-card{
display:block;
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
overflow:hidden;
text-decoration:none;
transition:.2s;
}

.tvz-study-card img{
display:block;
width:100%;
height:150px;
object-fit:cover;
}

.tvz-study-body{
padding:14px 16px;
}

.tvz-study-body h3{
margin:0 0 6px;
font-size:17px;
line-height:1.35;
}

.tvz-study-meta{
font-size:14px;
color:#6b7280;
}
.tvz-hero{
position:relative;
height:420px;
display:flex;
align-items:flex-end;
background-size:cover;
background-position:center;
}

.tvz-hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
180deg,
rgba(0,0,0,0.3),
rgba(0,0,0,0.6)
);
}

.tvz-hero-inner{
position:relative;
z-index:2;
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.tvz-hero-title{
font-size:44px;
font-weight:700;
color:#fff;
text-shadow:0 3px 12px rgba(0,0,0,.6);
background:none;
padding:0;
}

.tvz-hero-lead{
margin-top:8px;
font-size:18px;
color:#fff;
text-shadow:0 2px 8px rgba(0,0,0,.6);
background:none;
}
.tvz-section{
margin-bottom:45px;
}

.tvz-section-title{
font-size:26px;
font-weight:600;
margin-bottom:18px;
color:#1f2937;
}

.tvz-content{
line-height:1.7;
color:#374151;
max-width:820px;
}

.tvz-course-toolbar{
display:flex;
gap:12px;
margin:30px 0;
}

.tvz-search{
flex:1;
padding:10px 12px;
border:1px solid #d1d5db;
border-radius:6px;
}

#tvz-course-filter{
padding:10px;
border-radius:6px;
border:1px solid #d1d5db;
}
.tvz-person-mini img{
width:36px;
height:36px;
object-fit:cover;
border-radius:50%;
}

.tvz-avatar{
width:36px;
height:36px;
font-size:13px;
}

.tvz-person-mini{
display:flex;
align-items:center;
gap:10px;
margin-bottom:12px;
}
.tvz-study-card img{
height:140px;
object-fit:cover;
}

.tvz-study-body{
padding:14px 16px;
}

.tvz-study-body h3{
font-size:17px;
margin-bottom:4px;
}
/* STAFF GROUPS */

.tvz-staff-group-title{
margin-top:50px;
margin-bottom:20px;
font-size:22px;
font-weight:600;
color:#1f2937;
border-bottom:2px solid #e5e7eb;
padding-bottom:8px;
}

.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(170px,1fr));
gap:18px;
margin-bottom:30px;
}

.tvz-staff-card{
display:block;
text-align:center;
text-decoration:none;
background:#fff;
border:1px solid #e5e7eb;
border-radius:10px;
padding:16px;
transition:.2s;
}

.tvz-staff-card:hover{
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,.06);
border-color:#1e40af;
}

.tvz-staff-photo img{
width:80px;
height:80px;
object-fit:cover;
border-radius:50%;
margin-bottom:10px;
}

.tvz-staff-card h3{
font-size:15px;
font-weight:600;
color:#111827;
line-height:1.35;
}
/* STUDIJ COMPACT */

.tvz-section{
margin-bottom:36px;
}

.tvz-section-title{
font-size:24px;
margin-bottom:14px;
}

.tvz-content{
max-width:820px;
line-height:1.65;
font-size:16px;
}

.tvz-course-toolbar{
margin:20px 0;
display:flex;
gap:10px;
}

.tvz-search{
flex:1;
padding:8px 12px;
border:1px solid #d1d5db;
border-radius:6px;
}

#tvz-course-filter{
padding:8px 10px;
border:1px solid #d1d5db;
border-radius:6px;
}

.tvz-course-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:14px;
}

.tvz-course-card{
padding:12px 14px;
}

.tvz-course-title{
font-size:15px;
}
/* HERO */

.tvz-hero{
position:relative;
height:460px;
display:flex;
align-items:flex-end;
background-size:cover;
background-position:center;
}

.tvz-hero-overlay{
position:absolute;
inset:0;
background:linear-gradient(
180deg,
rgba(0,0,0,.2),
rgba(0,0,0,.6)
);
}

.tvz-hero-inner{
position:relative;
z-index:2;
max-width:1200px;
margin:auto;
padding:60px 20px;
color:#fff;
}

.tvz-hero-title{
font-size:48px;
font-weight:700;
line-height:1.1;
margin-bottom:8px;
text-shadow:0 4px 16px rgba(0,0,0,.5);
}

.tvz-hero-lead{
font-size:20px;
opacity:.95;
max-width:700px;
text-shadow:0 2px 10px rgba(0,0,0,.5);
}
/* STUDIJ */

.tvz-section{
margin-bottom:42px;
}

.tvz-section-title{
font-size:26px;
font-weight:600;
margin-bottom:18px;
color:#111827;
}

.tvz-content{
max-width:820px;
line-height:1.7;
color:#374151;
}

.tvz-course-toolbar{
display:flex;
gap:12px;
margin:28px 0;
}

.tvz-search{
flex:1;
padding:10px 12px;
border:1px solid #d1d5db;
border-radius:6px;
}

#tvz-course-filter{
padding:10px;
border:1px solid #d1d5db;
border-radius:6px;
}

.tvz-course-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
gap:16px;
}

.tvz-course-card{
padding:14px;
}

.tvz-course-title{
font-size:15px;
}
.tvz-study-card img{
height:150px;
object-fit:cover;
}

.tvz-study-body{
padding:14px;
}

.tvz-study-body h3{
font-size:17px;
margin-bottom:4px;
}
.tvz-staff-group-title{
font-size:22px;
font-weight:600;
margin:40px 0 16px;
border-bottom:2px solid #e5e7eb;
padding-bottom:8px;
}

.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(170px,1fr));
gap:18px;
}

.tvz-staff-card{
display:block;
text-align:center;
text-decoration:none;
border:1px solid #e5e7eb;
border-radius:10px;
padding:16px;
background:#fff;
transition:.2s;
}

.tvz-staff-card:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.tvz-staff-photo img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin-bottom:10px;
}
.tvz-staff-name{
font-size:15px;
font-weight:600;
line-height:1.35;
color:#111827;
}

.tvz-title-prefix{
font-weight:500;
color:#374151;
margin-right:4px;
}
/* STAFF CARD */

.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
gap:20px;
}

.tvz-staff-card{
display:block;
text-align:center;
text-decoration:none;
background:#fff;
border:1px solid #e5e7eb;
border-radius:12px;
padding:18px 16px;
transition:.2s;
}

.tvz-staff-card:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
border-color:#1e40af;
}

/* PHOTO */

.tvz-staff-photo{
margin-bottom:12px;
}

.tvz-staff-photo img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
margin:auto;
display:block;
}

/* NAME */

.tvz-staff-name{
font-size:15px;
font-weight:600;
line-height:1.35;
color:#111827;
}

/* TITLE PREFIX */

.tvz-title-prefix{
font-weight:500;
color:#374151;
margin-right:4px;
}
.tvz-staff-card:hover img{
transform:scale(1.05);
transition:.2s;
}
/* STAFF GROUP HEADER */

.tvz-staff-group-title{
font-size:22px;
font-weight:600;
margin:48px 0 20px;
padding-bottom:8px;
border-bottom:2px solid #e5e7eb;
color:#111827;
}
/* STAFF GRID */

.tvz-staff-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
gap:22px;
margin-bottom:30px;
}
/* STAFF CARD */

.tvz-staff-card{
display:block;
text-align:center;
text-decoration:none;
background:#fff;
border:1px solid #e5e7eb;
border-radius:12px;
padding:18px 16px;
transition:.2s;
position:relative;
}

.tvz-staff-card:hover{
transform:translateY(-4px);
box-shadow:0 10px 24px rgba(0,0,0,.08);
border-color:#1e40af;
}
/* STAFF PHOTO */

.tvz-staff-photo{
margin-bottom:12px;
}

.tvz-staff-photo img{
width:92px;
height:92px;
border-radius:50%;
object-fit:cover;
margin:auto;
display:block;
transition:.2s;
}

.tvz-staff-card:hover img{
transform:scale(1.06);
}
/* STAFF NAME */

.tvz-staff-name{
font-size:15px;
font-weight:600;
line-height:1.35;
color:#111827;
}

/* TITLE PREFIX */

.tvz-title-prefix{
font-weight:500;
color:#374151;
margin-right:4px;
}
.tvz-staff-group-title:first-child{
margin-top:0;
}
.tvz-hero-overlay{
background:linear-gradient(
180deg,
rgba(0,30,70,.35),
rgba(0,30,70,.75)
);
}
/* SEMESTAR HEADER */

.tvz-sem-header{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
font-weight:600;
}

.tvz-sem-left{
font-size:18px;
}

.tvz-sem-right{
display:flex;
gap:8px;
font-size:13px;
}

/* BADGE */

.tvz-sem-count{
padding:4px 10px;
border-radius:6px;
font-weight:500;
}

.tvz-sem-count.obavezni{
background:#e0ecff;
color:#1e40af;
}

.tvz-sem-count.izborni{
background:#eef2ff;
color:#4c1d95;
}
/* COURSE CARD */

.tvz-course-card{
background:#fff;
border:1px solid #e5e7eb;
border-radius:8px;
padding:12px 14px;
display:flex;
justify-content:space-between;
align-items:center;
transition:.2s;
}

.tvz-course-card.obavezni{
border-left:4px solid #2563eb;
}

.tvz-course-card.izborni{
border-left:4px solid #9333ea;
background:#faf5ff;
}

.tvz-course-card:hover{
box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.tvz-group-title{
font-size:17px;
font-weight:600;
margin:22px 0 12px;
padding-bottom:6px;
border-bottom:2px solid #e5e7eb;
}

.tvz-group-title.obavezni{
color:#1e40af;
}

.tvz-group-title.izborni{
color:#6b21a8;
}
.tvz-accordion-toggle{
padding:12px 16px;
}
/* ============================= */
/* TVZ LLL EDUKACIJA LAYOUT */
/* ============================= */

.tvz-lll{
font-family: Arial, Helvetica, sans-serif;
color:#222;
background:#fff;
}

/* ============================= */
/* CONTAINER */
/* ============================= */

.lll-container{
max-width:1200px;
margin:0 auto;
padding:0 20px;
}

/* ============================= */
/* HERO */
/* ============================= */

.lll-hero{
position:relative;
padding:120px 0 80px;
background-size:cover;
background-position:center;
color:#fff;
}

.lll-overlay{
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.55);
}

.lll-hero-inner{
position:relative;
z-index:2;
max-width:800px;
}

.lll-badge{
display:inline-block;
background:#c8102e;
color:#fff;
padding:6px 12px;
font-size:13px;
text-transform:uppercase;
letter-spacing:.08em;
margin-bottom:20px;
}

.lll-hero h1{
font-size:42px;
margin-bottom:20px;
font-weight:700;
}

.lll-intro{
font-size:18px;
line-height:1.6;
margin-bottom:30px;
}

.lll-hero-cta{
display:inline-block;
background:#c8102e;
color:#fff;
padding:14px 28px;
font-size:16px;
text-decoration:none;
font-weight:600;
transition:all .2s ease;
}

.lll-hero-cta:hover{
background:#9d0f24;
}

/* ============================= */
/* LAYOUT */
/* ============================= */

.lll-layout{
display:grid;
grid-template-columns: 2fr 1fr;
gap:50px;
margin-top:50px;
}

/* ============================= */
/* MAIN CONTENT */
/* ============================= */

.lll-main{
font-size:16px;
line-height:1.7;
}

.lll-content{
margin-bottom:40px;
}

.lll-main h2,
.lll-main h3{
margin-top:30px;
margin-bottom:10px;
font-weight:700;
}

.lll-main p{
margin-bottom:15px;
}

.lll-main ul{
margin-bottom:20px;
padding-left:20px;
}

.lll-main li{
margin-bottom:6px;
}

/* ============================= */
/* SIDEBAR */
/* ============================= */

.lll-sidebar{
position:relative;
}

.lll-card{
background:#f5f5f5;
padding:25px;
border-radius:4px;
}

.lll-card h3{
font-size:20px;
margin-bottom:20px;
}

/* ============================= */
/* TERMINI */
/* ============================= */

.lll-termin{
border-bottom:1px solid #ddd;
padding-bottom:15px;
margin-bottom:20px;
}

.lll-meta-row{
margin-bottom:8px;
font-size:15px;
}

/* ============================= */
/* CTA BUTTON */
/* ============================= */

.lll-cta-btn{
display:inline-block;
margin-top:10px;
background:#c8102e;
color:#fff;
padding:10px 18px;
text-decoration:none;
font-size:14px;
font-weight:600;
transition:all .2s ease;
}

.lll-cta-btn:hover{
background:#9d0f24;
}

/* ============================= */
/* PRIJAVE SECTION */
/* ============================= */

.lll-application{
background:#fafafa;
padding:60px 0;
margin-top:60px;
}

.lll-form-block{
max-width:800px;
margin:auto;
}

.lll-form-block h3{
margin-bottom:25px;
font-size:24px;
}

/* ============================= */
/* NINJA FORMS */
/* ============================= */

.nf-form-cont{
margin-top:20px;
}

.nf-field-container{
margin-bottom:20px;
}

.nf-field-element input,
.nf-field-element textarea,
.nf-field-element select{
width:100%;
padding:10px;
border:1px solid #ccc;
font-size:14px;
}

.nf-field-element input:focus,
.nf-field-element textarea:focus{
border-color:#c8102e;
outline:none;
}

.nf-form-cont button{
background:#c8102e;
color:#fff;
padding:12px 24px;
border:none;
font-weight:600;
cursor:pointer;
}

.nf-form-cont button:hover{
background:#9d0f24;
}

/* ============================= */
/* SIDEBAR STICKY */
/* ============================= */

@media(min-width:1024px){

.lll-sidebar{
position:sticky;
top:120px;
height:fit-content;
}

}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:1024px){

.lll-layout{
grid-template-columns:1fr;
}

.lll-sidebar{
margin-top:40px;
}

}

@media(max-width:768px){

.lll-hero{
padding:80px 0 60px;
}

.lll-hero h1{
font-size:32px;
}

.lll-intro{
font-size:16px;
}

}
.lll-form-row{
margin-bottom:15px;
}

.lll-form-row label{
display:block;
margin-bottom:6px;
font-weight:600;
}

.lll-form-row input,
.lll-form-row select{
width:100%;
padding:10px;
border:1px solid #ccc;
}

.lll-submit{
background:#c8102e;
color:#fff;
padding:12px 22px;
border:none;
cursor:pointer;
font-weight:600;
}

.lll-form-status{
margin-top:15px;
font-weight:600;
}
/* ============================= */
/* LLL FORM */
/* ============================= */

.lll-form-row{
margin-bottom:16px;
}

.lll-form-row label{
display:block;
font-weight:600;
margin-bottom:5px;
font-size:14px;
}

.lll-form-row input,
.lll-form-row select{
width:100%;
padding:10px;
border:1px solid #d1d5db;
border-radius:4px;
font-size:14px;
}

.lll-form-row input:focus,
.lll-form-row select:focus{
border-color:#c8102e;
outline:none;
}

.lll-submit{
background:#c8102e;
color:#fff;
padding:12px 26px;
border:none;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.2s;
}

.lll-submit:hover{
background:#9d0f24;
}

.lll-form-status{
margin-top:15px;
font-size:14px;
font-weight:600;
}
.lll-price-box{
margin:15px 0 25px 0;
font-size:18px;
font-weight:600;
color:#1f2937;
}

.lll-company-fields{
margin-top:15px;
padding-top:15px;
border-top:1px solid #ddd;
}

.lll-gdpr{
margin-top:20px;
font-size:14px;
line-height:1.5;
}

.lll-gdpr-label{
display:flex;
gap:8px;
align-items:flex-start;
}

.lll-gdpr input{
margin-top:4px;
}¸
.tvz-leadership-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:24px;
margin-bottom:40px;
}

.tvz-leader-block h3{
margin-bottom:12px;
}
.tvz-org-highlights{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:24px;
margin:30px 0 40px;
}

.tvz-highlight{
text-align:center;
padding:16px;
background:#f7f7f7;
border-radius:6px;
}

.tvz-highlight-value{
font-size:18px;
font-weight:500;
color:#003a8f;
}

.tvz-highlight-title{
font-size:14px;
text-transform:uppercase;
letter-spacing:0.05em;
margin-top:6px;
color:#555;
}
.tvz-card-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:24px;
margin:30px 0;
}

.tvz-card{
background:#fff;
border-radius:12px;
padding:24px;
box-shadow:0 4px 14px rgba(0,0,0,0.06);
border-left:5px solid var(--tvz-blue);
}

.tvz-card h3{
margin-top:0;
font-size:18px;
}
:root{

--tvz-blue:#1E3A8A;
--tvz-blue-light:#3B82F6;

--tvz-green:#16A34A;
--tvz-orange:#F97316;

--tvz-gray:#f4f4f4;

}
.tvz-card.blue{
border-left-color:var(--tvz-blue);
}

.tvz-card.green{
border-left-color:var(--tvz-green);
}

.tvz-card.orange{
border-left-color:var(--tvz-orange);
}
.tvz-tab-content {
  display: none;
}

.tvz-tab-content.active {
  display: block;
}
/* =====================================================
   TVZ 2026 - ORGANIZACIJSKE JEDINICE I STUDIJI
===================================================== */

:root{
  --tvz-blue:#1E3A8A;
  --tvz-blue-light:#3B82F6;
  --tvz-green:#16A34A;
  --tvz-orange:#F97316;
  --tvz-gray:#f4f4f4;
  --tvz-text:#0f172a;
  --tvz-muted:#475569;
  --tvz-border:#dbe3ef;
  --tvz-shadow:0 16px 40px rgba(15,23,42,.08);
  --tvz-radius:18px;
}

.tvz-hero-overlay{
  background:linear-gradient(180deg, rgba(15,23,42,.22), rgba(30,58,138,.82));
}

.tvz-layout--content{
  grid-template-columns:minmax(0,1fr) 340px;
  gap:32px;
  align-items:start;
}

.tvz-main,
.tvz-sidebar{
  min-width:0;
}

.tvz-surface,
.tvz-sidebar-card,
.tvz-content-card,
.tvz-study-general-card,
.tvz-highlight-card,
.tvz-doc-card,
.tvz-news-card,
.tvz-empty-state,
.tvz-study-tile,
.tvz-staff-card{
  background:#fff;
  border:1px solid var(--tvz-border);
  border-radius:var(--tvz-radius);
  box-shadow:var(--tvz-shadow);
}

.tvz-tabs-shell{
  padding:28px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.tvz-tabs-nav,
.tvz-tab-nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:0 0 24px;
  padding:0;
}

.tvz-tab-btn{
  appearance:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(30,58,138,.12);
  border-radius:999px;
  background:#fff;
  color:var(--tvz-blue);
  font-weight:600;
  padding:12px 18px;
  line-height:1.1;
  transition:all .2s ease;
  box-shadow:none;
}

.tvz-tab-btn:hover{
  border-color:var(--tvz-blue-light);
  color:var(--tvz-blue);
  transform:translateY(-1px);
}

.tvz-tab-btn.active{
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  border-color:transparent;
  color:#fff;
  box-shadow:0 12px 24px rgba(30,58,138,.22);
}

.tvz-tab-content,
.tvz-tab-panel,
.tvz-tab-content[hidden],
.tvz-tab-panel[hidden]{
  display:none;
}

.tvz-tab-content.active,
.tvz-tab-panel.active{
  display:block;
}

.tvz-section-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:0 0 14px;
}

.tvz-section-title{
  margin:0;
  color:var(--tvz-text);
}

.tvz-main a,
.tvz-sidebar a,
.tvz-inline-link{
  color:var(--tvz-blue);
}

.tvz-inline-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  text-decoration:none;
}

.tvz-inline-link:hover{
  color:var(--tvz-blue-light);
}

.tvz-richtext,
.tvz-richtext p,
.tvz-richtext li{
  color:var(--tvz-muted);
  line-height:1.7;
}

.tvz-richtext--small,
.tvz-richtext--small p,
.tvz-richtext--small li{
  font-size:15px;
}

.tvz-richtext > :last-child,
.tvz-richtext p:last-child,
.tvz-richtext ul:last-child,
.tvz-richtext ol:last-child{
  margin-bottom:0;
}

.tvz-inline-list,
.tvz-location-list{
  list-style:none;
  margin:0;
  padding:0;
}

.tvz-inline-list li,
.tvz-location-list li{
  margin:0;
  padding:0;
}

.tvz-empty-state{
  padding:24px;
  color:var(--tvz-muted);
  text-align:center;
}

.tvz-highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin:0 0 24px;
}

.tvz-highlight-card{
  padding:24px;
  position:relative;
  overflow:hidden;
}

.tvz-highlight-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:6px;
  background:linear-gradient(180deg, var(--tvz-orange) 0%, var(--tvz-green) 100%);
}

.tvz-highlight-card--metric{
  background:linear-gradient(135deg, rgba(30,58,138,.05) 0%, rgba(59,130,246,.04) 100%);
}

.tvz-highlight-card__value{
  font-size:clamp(20px, 3vw, 28px);
  font-weight:700;
  line-height:1;
  color:var(--tvz-blue);
  margin-bottom:10px;
}

.tvz-highlight-card__title{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--tvz-muted);
}

.tvz-study-general-grid,
.tvz-stack-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.tvz-study-general-card,
.tvz-content-card{
  padding:24px;
}

.tvz-study-general-card--full,
.tvz-content-card--wide{
  grid-column:1 / -1;
}

.tvz-study-general-card{
  background:linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.tvz-study-general-card__eyebrow,
.tvz-sidebar-card__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
  color:var(--tvz-blue);
  margin-bottom:10px;
}

.tvz-study-general-card__title,
.tvz-content-card h3,
.tvz-sidebar-card h3,
.tvz-doc-card h3,
.tvz-news-card h3{
  margin:0 0 12px;
  color:var(--tvz-text);
}

.tvz-curriculum-block + .tvz-curriculum-block{
  margin-top:28px;
}

.tvz-accordion{
  border:1px solid var(--tvz-border);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.tvz-accordion + .tvz-accordion{
  margin-top:14px;
}

.tvz-accordion-toggle{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:18px 20px;
  background:linear-gradient(135deg, rgba(30,58,138,.06) 0%, rgba(59,130,246,.03) 100%);
  border:0;
  cursor:pointer;
}

.tvz-accordion-body{
  padding:20px;
  background:#fff;
}

.tvz-acc-icon{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
  font-size:22px;
  line-height:1;
}

.tvz-sem-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:14px;
}

.tvz-sem-left{
  font-size:18px;
  font-weight:700;
  color:var(--tvz-text);
}

.tvz-sem-right{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.tvz-sem-count{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.tvz-sem-count.obavezni{
  background:rgba(30,58,138,.10);
  color:var(--tvz-blue);
}

.tvz-sem-count.izborni{
  background:rgba(249,115,22,.12);
  color:#c2410c;
}

.tvz-group-title{
  margin:6px 0 14px;
  padding-bottom:8px;
  border-bottom:1px solid var(--tvz-border);
}

.tvz-group-title.obavezni{
  color:var(--tvz-blue);
}

.tvz-group-title.izborni{
  color:#c2410c;
}

.tvz-course-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.tvz-course-card{
  text-decoration:none;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--tvz-border);
  background:#fff;
  box-shadow:0 10px 20px rgba(15,23,42,.04);
}

.tvz-course-card.obavezni{
  border-left:4px solid var(--tvz-blue);
}

.tvz-course-card.izborni{
  border-left:4px solid var(--tvz-orange);
  background:linear-gradient(180deg, #fffaf5 0%, #fff 100%);
}

.tvz-course-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 26px rgba(15,23,42,.08);
}

.tvz-course-title{
  color:var(--tvz-text);
}

.tvz-ects{
  color:var(--tvz-muted);
  font-weight:600;
}

.tvz-study-grid--tiles,
.tvz-news-grid,
.tvz-doc-grid,
.tvz-staff-grid--wide{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.tvz-study-stack + .tvz-study-stack{
  margin-top:28px;
}

.tvz-study-tile{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tvz-study-tile:hover,
.tvz-staff-card:hover,
.tvz-doc-card:hover,
.tvz-news-card:hover{
  transform:translateY(-4px);
  border-color:rgba(59,130,246,.35);
  box-shadow:0 18px 34px rgba(15,23,42,.12);
}

.tvz-study-tile__visual{
  position:relative;
  min-height:220px;
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
}

.tvz-study-tile__image{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}

.tvz-study-tile__image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.65) 100%);
}

.tvz-study-tile__image--placeholder::after{
  background:linear-gradient(135deg, rgba(30,58,138,.45) 0%, rgba(22,163,74,.18) 100%);
}

.tvz-study-tile__badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.9);
  color:var(--tvz-blue);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}

.tvz-study-tile__body{
  padding:22px;
}

.tvz-study-tile__body h3{
  margin:0 0 12px;
  color:var(--tvz-text);
  font-size:22px;
  line-height:1.25;
}

.tvz-study-tile__body p{
  margin:0 0 16px;
  color:var(--tvz-muted);
}

.tvz-study-tile__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tvz-study-tile__meta span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:var(--tvz-gray);
  color:var(--tvz-text);
  font-size:13px;
  font-weight:700;
}

.tvz-staff-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  padding:22px;
  text-align:left;
  text-decoration:none;
}

.tvz-staff-photo{
  width:96px;
  height:96px;
  border-radius:50%;
  overflow:hidden;
  flex:0 0 auto;
}

.tvz-staff-photo img,
.tvz-avatar{
  width:100%;
  height:100%;
  object-fit:cover;
  display:flex;
  align-items:center;
  justify-content:center;
}

.tvz-avatar{
  border-radius:50%;
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  color:#fff;
  font-size:26px;
  font-weight:800;
}

.tvz-avatar--lg{
  width:96px;
  height:96px;
}

.tvz-staff-name{
  font-size:18px;
  font-weight:700;
  color:var(--tvz-text);
}

.tvz-title-prefix{
  color:var(--tvz-blue);
}

.tvz-staff-role{
  margin-top:-6px;
  color:var(--tvz-muted);
  font-size:15px;
}

.tvz-doc-card,
.tvz-news-card{
  padding:22px;
}

.tvz-doc-card{
  display:grid;
  grid-template-columns:68px minmax(0,1fr);
  gap:18px;
  align-items:start;
}

.tvz-doc-card__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:68px;
  height:68px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(30,58,138,.12) 0%, rgba(59,130,246,.12) 100%);
  color:var(--tvz-blue);
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
}

.tvz-doc-card__body h3,
.tvz-news-card h3{
  font-size:20px;
  line-height:1.35;
}

.tvz-news-card__meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.tvz-news-card__meta span{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background:var(--tvz-gray);
  color:var(--tvz-muted);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.tvz-news-card p{
  margin:0 0 14px;
  color:var(--tvz-muted);
}

.tvz-info-panel{
  display:flex;
  flex-direction:column;
  gap:18px;
  position:sticky;
  top:120px;
  background:transparent;
  border:0;
  padding:0;
  box-shadow:none;
}

.tvz-sidebar-card{
  padding:22px;
}

.tvz-info-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.tvz-info-list li{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding-bottom:14px;
  border-bottom:1px solid var(--tvz-border);
}

.tvz-info-list li:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.tvz-info-list strong,
.tvz-role{
  color:var(--tvz-text);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.tvz-info-list span,
.tvz-location-copy,
.tvz-person-mini-meta{
  color:var(--tvz-muted);
}

.tvz-sidebar-actions{
  display:grid;
  gap:10px;
}

.tvz-quick-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:13px 16px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--tvz-border);
  color:var(--tvz-blue);
  font-weight:700;
  text-decoration:none;
  transition:all .2s ease;
}

.tvz-quick-link:hover{
  border-color:var(--tvz-blue-light);
  color:var(--tvz-blue);
}

.tvz-quick-link--primary{
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  color:#fff;
  border-color:transparent;
}

.tvz-quick-link--primary:hover{
  color:#fff;
  transform:translateY(-1px);
}

.tvz-person-mini{
  display:flex;
  gap:12px;
  align-items:center;
}

.tvz-person-mini + .tvz-person-mini{
  margin-top:12px;
}

.tvz-person-mini img,
.tvz-person-mini .tvz-avatar{
  width:54px;
  height:54px;
}

.tvz-person-group{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--tvz-border);
}

.tvz-location-block + .tvz-location-block{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid var(--tvz-border);
}

.tvz-location-copy{
  margin-top:8px;
}

.tvz-map{
  margin-top:14px;
  overflow:hidden;
  border-radius:16px;
}

.tvz-map iframe{
  width:100%;
  min-height:220px;
  border:0;
}

@media (max-width: 1100px){
  .tvz-layout--content{
    grid-template-columns:1fr;
  }

  .tvz-info-panel{
    position:relative;
    top:auto;
  }
}

@media (max-width: 900px){
  .tvz-tabs-shell{
    padding:20px;
  }

  .tvz-highlight-grid,
  .tvz-study-general-grid,
  .tvz-stack-grid,
  .tvz-course-grid,
  .tvz-study-grid--tiles,
  .tvz-news-grid,
  .tvz-doc-grid,
  .tvz-staff-grid--wide{
    grid-template-columns:1fr;
  }

  .tvz-sem-header{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  .tvz-tabs-nav,
  .tvz-tab-nav{
    gap:10px;
  }

  .tvz-tab-btn{
    width:100%;
    justify-content:center;
  }

  .tvz-study-tile__body,
  .tvz-doc-card,
  .tvz-news-card,
  .tvz-study-general-card,
  .tvz-content-card,
  .tvz-sidebar-card,
  .tvz-highlight-card{
    padding:18px;
  }

  .tvz-doc-card{
    grid-template-columns:56px minmax(0,1fr);
    gap:14px;
  }

  .tvz-doc-card__icon{
    width:56px;
    height:56px;
    border-radius:14px;
  }
}

/* Legacy study tile markup support */
.tvz-study-tile > img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.tvz-study-tile .tvz-study-overlay{
  display:none;
}

.tvz-study-tile .tvz-study-content{
  position:relative;
  padding:22px;
  color:var(--tvz-text);
}

.tvz-study-tile .tvz-study-content h3{
  margin:0 0 12px;
  color:var(--tvz-text);
}

.tvz-study-tile .tvz-study-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tvz-study-tile .tvz-study-meta span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:var(--tvz-gray);
  color:var(--tvz-text);
  font-size:13px;
  font-weight:700;
}

/* =====================================================
   TVZ 2026 - DODATNE DORADE
===================================================== */

.tvz-hero--centered .tvz-hero-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:460px;
  text-align:center;
}

.tvz-hero--centered .tvz-hero-title,
.tvz-hero--centered .tvz-hero-lead{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.tvz-hero-breadcrumb--center,
.tvz-hero-breadcrumb--center *{
  color:rgba(255,255,255,.9);
}

.tvz-hero-breadcrumb--center{
  margin:0 0 18px;
  font-size:14px;
}

.tvz-hero-heading--center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.tvz-hero-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:16px;
  width:min(100%, 760px);
  margin-top:28px;
}

.tvz-hero-stats--center{
  justify-content:center;
}

.tvz-stat{
  padding:18px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(8px);
  box-shadow:0 16px 30px rgba(15,23,42,.12);
}

.tvz-stat-number{
  display:block;
  font-size:clamp(30px, 4vw, 42px);
  font-weight:800;
  line-height:1;
  color:#fff;
}

.tvz-stat-label{
  display:block;
  margin-top:8px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.86);
}

.tvz-hero-motif{
  position:absolute;
  inset:auto 30px 24px auto;
  pointer-events:none;
  opacity:.18;
}

.tvz-hero-motif .hero-motif{
  width:200px;
  height:200px;
  background-position:center;
  background-repeat:no-repeat;
  background-size:contain;
}

.tvz-section-title--curriculum{
  font-size:24px;
}

.tvz-section-title--docs{
  font-size:22px;
}

.tvz-sidebar-card--accent{
  background:linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border-color:rgba(30,58,138,.16);
}

.tvz-sidebar-actions{
  grid-template-columns:1fr;
}

.tvz-quick-link{
  min-width:0;
  white-space:normal;
  text-align:center;
  line-height:1.35;
  overflow-wrap:anywhere;
}

.tvz-study-general-grid,
.tvz-stack-grid{
  align-items:start;
}

.tvz-staff-groups{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.tvz-staff-group{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.tvz-staff-group-title{
  margin:0;
  padding:0 0 10px;
  border-bottom:1px solid var(--tvz-border);
  color:var(--tvz-blue);
  font-size:22px;
  font-weight:700;
}

.tvz-staff-grid--grouped{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.tvz-staff-grid--compact{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.tvz-staff-contact{
  margin-top:4px;
  color:var(--tvz-blue);
  font-size:13px;
  word-break:break-word;
}

.tvz-course-shell,
.tvz-program-content{
  display:flex;
  flex-direction:column;
  gap:20px;
  padding:28px;
}

.tvz-stack-grid--course{
  grid-template-columns:1.2fr .8fr;
}

.tvz-hours-list--enterprise{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.tvz-hours-list--enterprise li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 16px;
  border-radius:14px;
  background:var(--tvz-gray);
  color:var(--tvz-text);
}

.tvz-hours-list--enterprise .tvz-hours-total{
  background:linear-gradient(135deg, rgba(30,58,138,.08) 0%, rgba(59,130,246,.08) 100%);
}

.tvz-person-profile{
  padding:28px;
  margin-bottom:24px;
}

.tvz-person-profile__grid{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:28px;
  align-items:center;
}

.tvz-person-profile__photo{
  display:flex;
  justify-content:center;
}

.tvz-person-photo,
.tvz-person-profile__photo img{
  width:180px;
  height:180px;
  border-radius:32px;
  object-fit:cover;
  box-shadow:0 18px 36px rgba(15,23,42,.12);
}

.tvz-person-photo--ph{
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  color:#fff;
  font-size:46px;
  font-weight:800;
}

.tvz-person-profile__meta h1{
  margin:0;
  color:var(--tvz-text);
}

.tvz-person-role{
  margin-top:8px;
  color:var(--tvz-blue);
  font-size:20px;
  font-weight:700;
}

.tvz-person-discipline{
  margin-top:6px;
  color:var(--tvz-muted);
}

.tvz-person-contact-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.tvz-contact-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--tvz-border);
  background:#fff;
  color:var(--tvz-blue);
  font-weight:700;
  text-decoration:none;
}

.tvz-link-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.tvz-link-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--tvz-border);
}

.tvz-link-list li:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.tvz-link-list--research li{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:start;
}

.tvz-metrics-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.tvz-metric-card{
  padding:18px 14px;
  border-radius:16px;
  background:var(--tvz-gray);
  text-align:center;
}

.tvz-metric-card strong{
  display:block;
  font-size:28px;
  color:var(--tvz-blue);
}

.tvz-metric-card span{
  display:block;
  margin-top:6px;
  color:var(--tvz-muted);
  font-weight:600;
}

.tvz-radovi-toolbar{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 18px;
}

.tvz-radovi-toolbar select{
  min-width:180px;
  padding:10px 12px;
  border:1px solid var(--tvz-border);
  border-radius:12px;
}

.tvz-doc-groups{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.tvz-doc-group{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.tvz-doc-card--stacked{
  grid-template-columns:62px minmax(0,1fr);
}

.tvz-doc-card__meta{
  margin:-4px 0 10px;
  color:var(--tvz-muted);
  font-size:13px;
  font-weight:700;
}

.tvz-doc-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}

.tvz-doc-archive-link{
  margin-top:12px;
}

.tvz-documents-archive{
  padding:28px;
}

.tvz-program-page{
  padding-bottom:48px;
}

.tvz-program-summary{
  margin-top:-48px;
  position:relative;
  z-index:3;
}

.tvz-program-summary__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.tvz-program-summary__text{
  font-size:22px;
  font-weight:700;
  color:var(--tvz-blue);
}

.tvz-stack-grid--program{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.tvz-program-application{
  padding:32px 0 0;
}

.tvz-program-application__stack{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.lll-termin--card{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid var(--tvz-border);
}

.lll-termin--card:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.lll-termin-date{
  font-weight:700;
  color:var(--tvz-text);
}

.lll-badge-capacity,
.lll-termin-full{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.lll-badge-capacity{
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
}

.lll-termin-full{
  background:rgba(249,115,22,.12);
  color:#c2410c;
}

.lll-cta-btn,
.lll-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  border-radius:14px;
  border:0;
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  color:#fff;
  font-weight:700;
  text-decoration:none;
}

.lll-cta-btn:hover,
.lll-submit:hover{
  color:#fff;
  transform:translateY(-1px);
}

.lll-form-block{
  padding:28px;
}

.lll-form-block h3{
  margin-top:0;
}

.lll-prijava-form{
  display:grid;
  gap:14px;
}

.lll-form-row label{
  display:block;
  margin-bottom:8px;
  font-weight:700;
  color:var(--tvz-text);
}

.lll-form-row input,
.lll-form-row select{
  width:100%;
  border:1px solid var(--tvz-border);
  border-radius:12px;
  padding:12px 14px;
}

.lll-company-fields{
  display:grid;
  gap:14px;
}

.lll-price-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(30,58,138,.06) 0%, rgba(59,130,246,.06) 100%);
}

.lll-price-label{
  color:var(--tvz-muted);
  font-weight:700;
}

.lll-price-value{
  color:var(--tvz-blue);
  font-size:24px;
  font-weight:800;
}

.lll-gdpr-label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.6;
}

.lll-gdpr-label input{
  margin-top:5px;
}

.lll-form-status{
  color:var(--tvz-blue);
  font-weight:700;
}

.tvz-landing-page{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.tvz-landing-intro{
  margin-bottom:0;
}

.tvz-landing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.tvz-landing-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  text-decoration:none;
  background:#fff;
  border:1px solid var(--tvz-border);
  border-radius:var(--tvz-radius);
  box-shadow:var(--tvz-shadow);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tvz-landing-card:hover{
  transform:translateY(-4px);
  border-color:rgba(59,130,246,.35);
  box-shadow:0 18px 34px rgba(15,23,42,.12);
}

.tvz-landing-card__visual{
  position:relative;
  min-height:220px;
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  background-size:cover;
  background-position:center;
}

.tvz-landing-card__visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.65) 100%);
}

.tvz-landing-card__badge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:2;
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:var(--tvz-blue);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:700;
}

.tvz-landing-card__body{
  padding:22px;
}

.tvz-landing-card__body h3{
  margin:0 0 12px;
  color:var(--tvz-text);
}

.tvz-landing-card__body p{
  margin:0 0 16px;
  color:var(--tvz-muted);
}

.tvz-landing-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tvz-landing-card__meta span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--tvz-gray);
  color:var(--tvz-text);
  font-size:13px;
  font-weight:700;
}

@media (max-width: 1100px){
  .tvz-staff-grid--grouped,
  .tvz-landing-grid,
  .tvz-program-summary__grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .tvz-person-profile__grid{
    grid-template-columns:140px minmax(0,1fr);
  }

  .tvz-person-photo,
  .tvz-person-profile__photo img{
    width:140px;
    height:140px;
  }
}

@media (max-width: 900px){
  .tvz-stack-grid--course,
  .tvz-stack-grid--program,
  .tvz-staff-grid--grouped,
  .tvz-staff-grid--compact,
  .tvz-landing-grid,
  .tvz-program-summary__grid,
  .tvz-metrics-grid{
    grid-template-columns:1fr;
  }

  .tvz-person-profile,
  .tvz-course-shell,
  .tvz-program-content,
  .tvz-documents-archive,
  .lll-form-block{
    padding:20px;
  }

  .tvz-person-profile__grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .tvz-person-profile__photo{
    justify-content:center;
  }

  .tvz-person-contact-row{
    justify-content:center;
  }

  .tvz-hero-motif{
    display:none;
  }
}

@media (max-width: 640px){
  .tvz-hero-stats{
    grid-template-columns:1fr 1fr;
  }

  .tvz-stat{
    padding:14px 12px;
  }

  .lll-price-box,
  .lll-termin--card{
    grid-template-columns:1fr;
  }

  .tvz-link-list--research li{
    grid-template-columns:1fr;
  }
}
.tvz-study-tile__badge,
.tvz-landing-card__badge{
  max-width:calc(100% - 36px);
  white-space:normal;
  line-height:1.3;
}

/* =====================================================
   TVZ 2026 - V3 DORADE
===================================================== */

:root{
  --tvz-font-family:"Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tvz-blue-dark:#172554;
  --tvz-orange-dark:#c2410c;
  --tvz-green-dark:#166534;
}

html,
body,
button,
input,
select,
textarea,
.wp-block-button__link,
[class*="tvz-"]{
  font-family:var(--tvz-font-family);
}

body{
  color:var(--tvz-text);
}

.tvz-tab-btn{
  border-color:rgba(30,58,138,.18);
  color:var(--tvz-blue-dark);
}

.tvz-quick-link,
.tvz-contact-chip{
  background:linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  border:1px solid rgba(249,115,22,.28);
  color:var(--tvz-orange-dark);
  box-shadow:0 10px 22px rgba(249,115,22,.08);
}

.tvz-quick-link:hover,
.tvz-contact-chip:hover{
  border-color:rgba(249,115,22,.42);
  color:var(--tvz-orange-dark);
}

.tvz-quick-link--primary,
.tvz-contact-chip--primary{
  background:linear-gradient(135deg, var(--tvz-blue-dark) 0%, var(--tvz-blue-light) 100%);
  border-color:transparent;
  color:#fff;
  box-shadow:0 16px 28px rgba(30,58,138,.22);
}

.tvz-quick-link--primary:hover,
.tvz-contact-chip--primary:hover{
  color:#fff;
}

.tvz-study-general-card,
.tvz-content-card{
  position:relative;
  overflow:hidden;
}

.tvz-study-general-card::before,
.tvz-content-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:linear-gradient(180deg, var(--tvz-blue-light) 0%, var(--tvz-green) 100%);
}

.tvz-study-general-card{
  border-color:rgba(30,58,138,.18);
}

.tvz-study-general-card__title,
.tvz-content-card h3{
  font-size:1.08rem;
}

.tvz-section-title--curriculum{
  font-size:20px;
}

.tvz-accordion-toggle{
  padding:16px 18px;
}

.tvz-sem-left{
  font-size:16px;
}

.tvz-sem-count{
  font-size:12px;
}

.tvz-group-title{
  font-size:15px;
  font-weight:700;
}

.tvz-course-title{
  font-size:15px;
  font-weight:600;
}

.tvz-course-card{
  min-height:74px;
}

.tvz-doc-tools{
  margin-bottom:22px;
}

.tvz-doc-search-label{
  display:grid;
  gap:8px;
  color:var(--tvz-blue-dark);
  font-weight:700;
}

.tvz-doc-search-input{
  width:100%;
  min-height:50px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid var(--tvz-border);
  background:#fff;
  color:var(--tvz-text);
}

.tvz-doc-group__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.tvz-doc-group__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  min-height:40px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
  font-weight:800;
}

.tvz-doc-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.tvz-doc-card{
  grid-template-columns:56px minmax(0,1fr);
  gap:16px;
  padding:18px 20px;
  align-items:flex-start;
}

.tvz-doc-card__icon{
  width:56px;
  height:56px;
  border-radius:16px;
}

.tvz-doc-card__body h3{
  margin-bottom:8px;
  font-size:16px;
  line-height:1.35;
}

.tvz-doc-card p{
  margin:0;
  color:var(--tvz-muted);
  font-size:14px;
}

.tvz-doc-card__meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:-2px 0 10px;
}

.tvz-doc-card__meta{
  margin:0;
}

.tvz-doc-card__meta--tag{
  display:inline-flex;
  align-items:center;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(22,163,74,.10);
  color:var(--tvz-green-dark);
}

.tvz-updates-layout{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.tvz-updates-section{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.tvz-updates-section--news .tvz-section-title{
  color:var(--tvz-blue);
}

.tvz-updates-section--events .tvz-section-title{
  color:var(--tvz-orange-dark);
}

.tvz-events-grid,
.tvz-news-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}

.tvz-news-card,
.tvz-event-card{
  display:grid;
  grid-template-columns:140px minmax(0,1fr);
  gap:16px;
  overflow:hidden;
  border:1px solid var(--tvz-border);
  border-radius:var(--tvz-radius);
  background:#fff;
  box-shadow:var(--tvz-shadow);
}

.tvz-news-card__thumb,
.tvz-event-card__thumb{
  min-height:100%;
  background:linear-gradient(135deg, rgba(30,58,138,.10) 0%, rgba(59,130,246,.08) 100%);
}

.tvz-news-card__thumb img,
.tvz-event-card__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tvz-news-card__body,
.tvz-event-card__body{
  padding:18px 18px 18px 0;
}

.tvz-event-card{
  border-color:rgba(249,115,22,.24);
}

.tvz-event-card__date,
.tvz-sidebar-event-date{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(249,115,22,.12);
  color:var(--tvz-orange-dark);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.tvz-sidebar-card--event{
  border-color:rgba(249,115,22,.24);
  background:linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.tvz-sidebar-card--event p{
  color:var(--tvz-muted);
}

.tvz-study-stack--undergraduate .tvz-section-title,
.tvz-study-stack--undergraduate .tvz-study-stack__eyebrow{
  color:var(--tvz-blue);
}

.tvz-study-stack--graduate .tvz-section-title,
.tvz-study-stack--graduate .tvz-study-stack__eyebrow{
  color:var(--tvz-orange-dark);
}

.tvz-study-stack__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}

.tvz-study-stack__eyebrow{
  display:block;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
}

.tvz-study-stack__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:48px;
  min-height:48px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(15,23,42,.05);
  color:var(--tvz-text);
  font-size:18px;
  font-weight:800;
}

.tvz-study-stack--graduate .tvz-study-tile{
  border-color:rgba(249,115,22,.22);
}

.tvz-study-stack--graduate .tvz-study-tile__badge{
  background:rgba(255,247,237,.96);
  color:var(--tvz-orange-dark);
}

.tvz-study-stack--undergraduate .tvz-study-tile__badge{
  background:rgba(239,246,255,.96);
}

.tvz-study-tile__body h3{
  font-size:20px;
}

.tvz-richtext img.alignleft,
.tvz-richtext .alignleft,
.entry-content img.alignleft,
.entry-content .alignleft{
  float:left;
  margin:6px 24px 16px 0;
  max-width:min(42%, 360px);
  border-radius:20px;
}

.tvz-richtext img.alignright,
.tvz-richtext .alignright,
.entry-content img.alignright,
.entry-content .alignright{
  float:right;
  margin:6px 0 16px 24px;
  max-width:min(42%, 360px);
  border-radius:20px;
}

.tvz-richtext::after,
.entry-content::after{
  content:"";
  display:block;
  clear:both;
}

.tvz-richtext .wp-block-gallery,
.entry-content .wp-block-gallery{
  margin:22px 0;
}

.tvz-post-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:32px;
  padding:40px 0 60px;
}

.tvz-post-article{
  padding:30px;
}

.tvz-post-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.tvz-post-meta__item{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:7px 12px;
  border-radius:999px;
  background:var(--tvz-gray);
  color:var(--tvz-text);
  font-size:13px;
  font-weight:700;
}

.tvz-post-featured{
  margin:0 0 24px;
  overflow:hidden;
  border-radius:24px;
}

.tvz-post-featured img{
  width:100%;
  height:auto;
  display:block;
}

.tvz-post-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tvz-post-related-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.tvz-post-related-item{
  padding-bottom:14px;
  border-bottom:1px solid var(--tvz-border);
}

.tvz-post-related-item:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.tvz-post-related-item span{
  display:block;
  margin-bottom:4px;
  font-size:12px;
  font-weight:700;
  color:var(--tvz-muted);
  text-transform:uppercase;
}

.tvz-home-shell{
  display:flex;
  flex-direction:column;
  gap:28px;
  padding:38px 0 60px;
}

.tvz-home-intro{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:24px;
}

.tvz-home-hero-card,
.tvz-home-metrics{
  padding:28px;
}

.tvz-home-metrics{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.tvz-home-metric{
  padding:18px 16px;
  border-radius:18px;
  background:linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border:1px solid var(--tvz-border);
}

.tvz-home-metric strong{
  display:block;
  font-size:30px;
  color:var(--tvz-blue);
}

.tvz-home-section{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tvz-home-section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.tvz-home-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.tvz-home-grid--four{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.tvz-home-card{
  padding:22px;
  border:1px solid var(--tvz-border);
  border-radius:var(--tvz-radius);
  background:#fff;
  box-shadow:var(--tvz-shadow);
}

.tvz-home-card h3{
  margin:0 0 10px;
}

.tvz-home-card p{
  margin:0;
  color:var(--tvz-muted);
}

@media (max-width:1100px){
  .tvz-updates-layout,
  .tvz-post-layout,
  .tvz-home-intro,
  .tvz-home-grid,
  .tvz-home-grid--four{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .tvz-news-card,
  .tvz-event-card{
    grid-template-columns:1fr;
  }

  .tvz-news-card__body,
  .tvz-event-card__body{
    padding:0 18px 18px;
  }

  .tvz-doc-group__head,
  .tvz-study-stack__head,
  .tvz-home-section__head{
    flex-direction:column;
    align-items:flex-start;
  }

  .tvz-home-metrics{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .tvz-home-metrics{
    grid-template-columns:1fr;
  }

  .tvz-richtext img.alignleft,
  .tvz-richtext img.alignright,
  .tvz-richtext .alignleft,
  .tvz-richtext .alignright,
  .entry-content img.alignleft,
  .entry-content img.alignright,
  .entry-content .alignleft,
  .entry-content .alignright{
    float:none;
    display:block;
    margin:0 0 16px;
    max-width:100%;
  }
}

.tvz-news-card > .tvz-news-card__body:first-child,
.tvz-event-card > .tvz-event-card__body:first-child{
  grid-column:1 / -1;
  padding:18px;
}


/* TVZ 2026 - V3.1 fine tune */
.tvz-tab-btn,
.tvz-inline-link,
.wp-block-button__link,
button,
input[type=submit],
input[type=button]{
  font-family:var(--tvz-font-family);
}

.tvz-tab-btn.is-active,
.tvz-tab-btn[aria-selected="true"]{
  background:linear-gradient(135deg, var(--tvz-blue-dark) 0%, var(--tvz-blue-light) 100%);
  border-color:transparent;
  color:#fff;
  box-shadow:0 14px 24px rgba(30,58,138,.18);
}

.tvz-tab-btn:hover{
  border-color:rgba(30,58,138,.34);
}

.tvz-quick-link,
.tvz-contact-chip,
.wp-block-button__link{
  font-weight:700;
}

.tvz-doc-card__body h3{
  font-size:15px;
}

.tvz-section-title--curriculum{
  font-size:18px;
}

.tvz-sem-left,
.tvz-group-title,
.tvz-course-title{
  line-height:1.35;
}

.tvz-sem-left{
  font-size:15px;
}

.tvz-group-title,
.tvz-course-title{
  font-size:14px;
}

.tvz-doc-group__head{
  position:sticky;
  top:0;
  z-index:2;
  padding:8px 0;
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 100%);
  backdrop-filter:blur(6px);
}

.tvz-post-featured--inline,
.entry-content .tvz-post-featured--inline{
  float:left;
  width:min(40%, 360px);
  margin:4px 24px 16px 0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 34px rgba(15,23,42,.10);
}

.tvz-post-featured--inline img,
.entry-content .tvz-post-featured--inline img{
  width:100%;
  display:block;
}

@media (max-width: 900px){
  .tvz-post-featured--inline,
  .entry-content .tvz-post-featured--inline{
    float:none;
    width:100%;
    margin:0 0 18px;
  }
}
.tvz-study-general-grid{
  column-count: 2;
  column-gap: 20px;
}

.tvz-study-general-grid .tvz-study-general-card{
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
}
@media (max-width: 900px){
  .tvz-study-general-grid{
    column-count: 1;
  }
}
.tvz-study-general-grid{
  column-count: 2;
  column-gap: 20px;
  align-items: flex-start;
}

.tvz-study-general-card{
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  border: 1px solid rgba(30,58,138,.14);
  border-left: 4px solid var(--tvz-green);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  background: #fff;
}

.tvz-study-general-card--full{
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.tvz-study-general-card__eyebrow{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tvz-blue);
  margin-bottom: 8px;
}

.tvz-study-general-card__title{
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--tvz-blue);
}

@media (max-width: 991px){
  .tvz-study-general-grid{
    column-count: 1;
  }
}
.tvz-accordion--curriculum-root{
  margin-bottom: 18px;
  border: 1px solid rgba(30,58,138,.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.tvz-accordion--curriculum-root > .tvz-accordion-toggle{
  background: #f8fafc;
  font-size: 16px;
  font-weight: 700;
}

.tvz-accordion--curriculum-semester{
  margin-top: 12px;
  border: 1px solid rgba(30,58,138,.10);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.tvz-accordion--curriculum-semester > .tvz-accordion-toggle{
  background: #fff;
  font-size: 15px;
}

.tvz-curriculum-block + .tvz-curriculum-block{
  margin-top: 16px;
}
/* === TVZ V3 refinements === */
.tvz-study-general-grid{
  column-count:2;
  column-gap:20px;
  align-items:flex-start;
}

.tvz-study-general-grid .tvz-study-general-card,
.tvz-study-general-grid .tvz-study-general-card--full{
  display:inline-block;
  width:100%;
  margin:0 0 20px;
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  page-break-inside:avoid;
}

.tvz-study-general-card{
  border:1px solid rgba(30,58,138,.14);
  border-left:4px solid var(--tvz-green);
  border-radius:18px;
  box-shadow:0 10px 24px rgba(15,23,42,.06);
  background:#fff;
}

.tvz-study-general-card--full{
  border-left-color:var(--tvz-orange);
}

.tvz-study-general-card__eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--tvz-blue);
  margin-bottom:8px;
}

.tvz-study-general-card__title{
  color:var(--tvz-blue);
}

.tvz-accordion--curriculum-root,
.tvz-accordion--docs-root{
  margin-bottom:18px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
}

.tvz-accordion--curriculum-root > .tvz-accordion-toggle,
.tvz-accordion--docs-root > .tvz-accordion-toggle{
  background:#f8fafc;
  font-size:16px;
  font-weight:700;
}

.tvz-accordion--curriculum-semester{
  margin-top:12px;
  border:1px solid rgba(30,58,138,.10);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
}

.tvz-accordion--curriculum-semester > .tvz-accordion-toggle{
  background:#fff;
  font-size:15px;
}

.tvz-curriculum-block + .tvz-curriculum-block{
  margin-top:16px;
}

.tvz-news-filters{
  border:1px solid rgba(30,58,138,.12);
  border-radius:20px;
  padding:20px;
  margin-bottom:24px;
}

.tvz-news-filters__grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr auto;
  gap:16px;
  align-items:end;
}

.tvz-news-filters__field{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:14px;
  color:#334155;
}

.tvz-news-filters__field span{
  font-weight:600;
}

.tvz-news-filters__field input,
.tvz-news-filters__field select{
  width:100%;
  min-height:48px;
  border:1px solid rgba(30,58,138,.16);
  border-radius:12px;
  padding:0 14px;
  background:#fff;
  font:inherit;
}

.tvz-news-filters__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.tvz-news-archive{
  display:grid;
  gap:18px;
}

.tvz-news-featured{
  display:grid;
  grid-template-columns:minmax(260px, 420px) 1fr;
  gap:24px;
  border:1px solid rgba(30,58,138,.12);
  border-left:4px solid var(--tvz-orange);
  border-radius:22px;
  overflow:hidden;
}

.tvz-news-featured__thumb,
.tvz-news-featured__thumb a,
.tvz-news-featured__thumb img{
  display:block;
  width:100%;
  height:100%;
}

.tvz-news-featured__thumb img{
  object-fit:cover;
  min-height:260px;
}

.tvz-news-featured__body{
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}

.tvz-news-featured__body h2{
  margin:0;
  font-size:clamp(1.5rem, 2vw, 2rem);
  line-height:1.18;
}

.tvz-news-featured__body p{
  margin:0;
  color:#475569;
}

.tvz-news-compact-list{
  display:grid;
  gap:12px;
}

.tvz-news-compact-item{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:16px;
  align-items:start;
  padding:14px 16px;
  border:1px solid rgba(30,58,138,.1);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
}

.tvz-news-compact-item__thumb,
.tvz-news-compact-item__thumb a,
.tvz-news-compact-item__thumb img{
  display:block;
  width:100%;
}

.tvz-news-compact-item__thumb img{
  height:88px;
  object-fit:cover;
  border-radius:12px;
}

.tvz-news-compact-item__body h3{
  margin:4px 0 8px;
  font-size:1.05rem;
  line-height:1.25;
}

.tvz-news-compact-item__body p{
  margin:0;
  color:#475569;
  font-size:.95rem;
}

.tvz-news-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  font-size:.82rem;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.tvz-pagination ul{
  list-style:none;
  margin:6px 0 0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tvz-pagination a,
.tvz-pagination span{
  min-width:42px;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(30,58,138,.14);
  background:#fff;
  color:var(--tvz-blue);
  text-decoration:none;
  font-weight:600;
}

.tvz-pagination .current{
  background:var(--tvz-blue);
  color:#fff;
  border-color:var(--tvz-blue);
}

.tvz-updates-layout{
  display:grid;
  gap:24px;
}

.tvz-updates-section .tvz-news-grid,
.tvz-updates-section .tvz-events-grid{
  display:grid;
  gap:12px;
}

.tvz-updates-section .tvz-news-card,
.tvz-updates-section .tvz-event-card{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:16px;
  align-items:start;
  border:1px solid rgba(30,58,138,.1);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.tvz-updates-section .tvz-news-card__thumb,
.tvz-updates-section .tvz-event-card__thumb{
  min-height:100%;
}

.tvz-updates-section .tvz-news-card__thumb img,
.tvz-updates-section .tvz-event-card__thumb img{
  width:100%;
  height:100%;
  min-height:112px;
  object-fit:cover;
}

.tvz-updates-section .tvz-news-card__body,
.tvz-updates-section .tvz-event-card__body{
  padding:14px 16px 14px 0;
}

.tvz-updates-section .tvz-news-card h3,
.tvz-updates-section .tvz-event-card h3{
  margin:6px 0 8px;
  font-size:1.05rem;
}

.tvz-updates-section .tvz-news-card p,
.tvz-updates-section .tvz-event-card p{
  margin:0 0 10px;
  color:#475569;
  font-size:.95rem;
}

.tvz-updates-section .tvz-event-card__date{
  font-size:.82rem;
  letter-spacing:.03em;
  text-transform:uppercase;
  color:#64748b;
}

.tvz-quick-link,
.tvz-quick-link--primary,
button.tvz-quick-link,
input[type="submit"].tvz-quick-link{
  color:#fff !important;
}

.tvz-quick-link:hover,
.tvz-quick-link--primary:hover,
button.tvz-quick-link:hover,
input[type="submit"].tvz-quick-link:hover{
  color:#fff !important;
}

@media (max-width: 991px){
  .tvz-study-general-grid{
    column-count:1;
  }

  .tvz-news-filters__grid{
    grid-template-columns:1fr 1fr;
  }

  .tvz-news-filters__actions{
    grid-column:1 / -1;
  }

  .tvz-news-featured{
    grid-template-columns:1fr;
  }

  .tvz-news-compact-item,
  .tvz-updates-section .tvz-news-card,
  .tvz-updates-section .tvz-event-card{
    grid-template-columns:1fr;
  }

  .tvz-updates-section .tvz-news-card__body,
  .tvz-updates-section .tvz-event-card__body{
    padding:0 16px 16px;
  }
}

@media (max-width: 640px){
  .tvz-news-filters__grid{
    grid-template-columns:1fr;
  }
}


.tvz-news-term-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 0;
}

.tvz-news-term-button{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(30,58,138,.14);
  background:#fff;
  color:var(--tvz-blue);
  text-decoration:none;
  font-size:.78rem;
  font-weight:700;
  line-height:1;
}

.tvz-news-term-button:hover{
  background:rgba(30,58,138,.06);
}

.tvz-updates-layout--compact{
  gap:18px;
}

.tvz-news-mini-stack,
.tvz-news-mini-list,
.tvz-events-mini-list{
  display:grid;
  gap:12px;
}

.tvz-news-mini-featured,
.tvz-news-mini-item,
.tvz-event-mini-item{
  border:1px solid rgba(30,58,138,.1);
  border-radius:16px;
  background:#fff;
  padding:16px 18px;
}

.tvz-news-mini-featured{
  border-left:4px solid var(--tvz-orange);
  box-shadow:0 10px 26px rgba(15,23,42,.05);
}

.tvz-news-mini-featured__meta,
.tvz-news-mini-item__meta,
.tvz-event-mini-item__date{
  font-size:.8rem;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.04em;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.tvz-news-mini-featured h3,
.tvz-news-mini-item h4,
.tvz-event-mini-item h4{
  margin:8px 0 8px;
  color:var(--tvz-blue);
  line-height:1.28;
}

.tvz-news-mini-featured p,
.tvz-event-mini-item p{
  margin:0;
  color:#475569;
}

/* === TVZ V3 compact news + masonry refinements === */
.tvz-masonry-grid{
  column-count:2;
  column-gap:20px;
}

.tvz-masonry-grid > *{
  display:inline-block;
  width:100%;
  margin:0 0 20px;
  break-inside:avoid;
  -webkit-column-break-inside:avoid;
  page-break-inside:avoid;
}

.tvz-content-card--upisi-news{
  border-left:4px solid var(--tvz-orange);
}

.tvz-news-channel-nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 16px;
}

.tvz-news-channel-badge,
.tvz-news-term-button{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(30,58,138,.14);
  text-decoration:none;
  font-size:.78rem;
  font-weight:700;
  line-height:1;
}

.tvz-news-channel-badge.is-current{
  box-shadow:0 8px 20px rgba(15,23,42,.1);
}

.tvz-term--blue{background:rgba(30,58,138,.09); color:var(--tvz-blue); border-color:rgba(30,58,138,.2)}
.tvz-term--orange{background:rgba(249,115,22,.12); color:#9a3412; border-color:rgba(249,115,22,.28)}
.tvz-term--green{background:rgba(22,163,74,.12); color:#166534; border-color:rgba(22,163,74,.28)}
.tvz-term--slate{background:rgba(71,85,105,.10); color:#334155; border-color:rgba(71,85,105,.2)}
.tvz-term--blue-light{background:rgba(59,130,246,.12); color:#1d4ed8; border-color:rgba(59,130,246,.24)}
.tvz-term--green-dark{background:rgba(5,150,105,.12); color:#065f46; border-color:rgba(5,150,105,.24)}
.tvz-term--default{background:#fff; color:var(--tvz-blue)}

.tvz-news-featured__body .tvz-news-channel-badge,
.tvz-news-compact-item__body .tvz-news-channel-badge{
  margin-left:auto;
}

.tvz-news-card__meta{
  align-items:center;
}

.tvz-updates-layout--compact .tvz-news-channel-nav{
  margin-bottom:10px;
}

.tvz-news-channel-groups{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.tvz-news-channel-group{
  border:1px solid rgba(30,58,138,.12);
  border-left:4px solid var(--tvz-blue-light);
  border-radius:18px;
  padding:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.tvz-news-channel-group.tvz-term--orange{border-left-color:var(--tvz-orange)}
.tvz-news-channel-group.tvz-term--green,
.tvz-news-channel-group.tvz-term--green-dark{border-left-color:var(--tvz-green)}
.tvz-news-channel-group.tvz-term--slate{border-left-color:#64748b}

.tvz-home-card{
  overflow:hidden;
  padding:0;
}

.tvz-home-card__thumb,
.tvz-home-card__thumb img{
  display:block;
  width:100%;
}

.tvz-home-card__thumb img{
  height:170px;
  object-fit:cover;
}

.tvz-home-card__body{
  padding:20px 22px 22px;
}

.tvz-home-card--department{border-top:4px solid var(--tvz-blue)}
.tvz-home-card--study{border-top:4px solid var(--tvz-green)}
.tvz-home-card--program{border-top:4px solid var(--tvz-orange)}

.tvz-home-section--departments .tvz-study-stack__eyebrow{color:var(--tvz-blue)}
.tvz-home-section--studies .tvz-study-stack__eyebrow{color:var(--tvz-green)}
.tvz-home-section--programs .tvz-study-stack__eyebrow{color:var(--tvz-orange)}
.tvz-home-section--updates .tvz-study-stack__eyebrow{color:var(--tvz-blue-light)}

.tvz-quick-link:not(.tvz-quick-link--primary),
.tvz-sidebar .tvz-quick-link:not(.tvz-quick-link--primary),
.tvz-news-filters .tvz-quick-link:not(.tvz-quick-link--primary){
  color:var(--tvz-blue) !important;
  background:#fff;
  border-color:rgba(249,115,22,.35);
}

.tvz-quick-link:not(.tvz-quick-link--primary):hover,
.tvz-sidebar .tvz-quick-link:not(.tvz-quick-link--primary):hover,
.tvz-news-filters .tvz-quick-link:not(.tvz-quick-link--primary):hover{
  color:var(--tvz-blue) !important;
  background:rgba(30,58,138,.06);
}

.tvz-sidebar .tvz-sidebar-actions .tvz-quick-link{
  justify-content:flex-start;
  text-align:left;
  white-space:normal;
}

.tvz-sidebar .tvz-sidebar-actions .tvz-tab-link.active,
.tvz-sidebar .tvz-sidebar-actions .tvz-quick-link--primary{
  color:#fff !important;
}

.tvz-news-mini-item h4,
.tvz-news-mini-featured h3{
  max-width:46ch;
}

.tvz-section-title--small{
  font-size:1.2rem;
}

@media (max-width: 991px){
  .tvz-news-channel-groups,
  .tvz-masonry-grid{
    grid-template-columns:1fr;
    column-count:1;
  }
}

/* =====================================================
HEADER / FOOTER / INTERNATIONAL HUB
===================================================== */
.screen-reader-text.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
}
.screen-reader-text.skip-link:focus{
  left:16px;
  top:16px;
  z-index:9999;
  background:#fff;
  color:var(--tvz-blue);
  padding:10px 14px;
  border-radius:8px;
}

.tvz-site-header{
  position:sticky;
  top:0;
  z-index:90;
  background:#fff;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
}

.tvz-topbar{
  background:var(--tvz-blue);
  color:#fff;
  font-size:.86rem;
}

.tvz-topbar__inner,
.tvz-header-main__inner,
.tvz-site-footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.tvz-topbar__inner{min-height:44px;}
.tvz-topbar__brandline{font-weight:600; opacity:.95;}

.tvz-menu,
.tvz-menu ul{
  list-style:none;
  margin:0;
  padding:0;
}

.tvz-menu--utility,
.tvz-menu--primary,
.tvz-menu--footer{
  display:flex;
  align-items:center;
  gap:12px;
}

.tvz-menu--utility a,
.tvz-menu--primary > li > a,
.tvz-menu--footer a{
  text-decoration:none;
}

.tvz-menu--utility a{
  color:#fff;
  font-weight:600;
  opacity:.92;
}

.tvz-header-main{
  background:#fff;
}

.tvz-header-main__inner{
  min-height:84px;
}

.tvz-site-branding{flex:1 1 auto; min-width:0;}
.tvz-site-branding__link{display:flex; align-items:center; gap:14px; text-decoration:none; color:inherit;}
.tvz-site-branding__logo{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);
  color:#fff;
  font-weight:800;
  font-size:1.1rem;
  box-shadow:0 10px 24px rgba(30,58,138,.22);
}
.tvz-site-branding__text{display:flex; flex-direction:column; gap:4px;}
.tvz-site-branding__text strong{font-size:1.05rem; color:var(--tvz-blue);}
.tvz-site-branding__text span{font-size:.88rem; color:#475569;}

.tvz-primary-nav{flex:0 0 auto;}
.tvz-menu--primary > li{position:relative;}
.tvz-menu--primary > li > a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:0 10px;
  color:#0f172a;
  font-weight:700;
  border-radius:10px;
}
.tvz-menu--primary > li > a:hover,
.tvz-menu--primary > li.current-menu-item > a,
.tvz-menu--primary > li.current-menu-ancestor > a{
  color:var(--tvz-blue);
  background:rgba(30,58,138,.06);
}
.tvz-menu--primary li ul{
  position:absolute;
  top:100%;
  left:0;
  min-width:240px;
  display:none;
  flex-direction:column;
  padding:10px;
  border:1px solid rgba(30,58,138,.1);
  border-radius:14px;
  background:#fff;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}
.tvz-menu--primary li:hover > ul,
.tvz-menu--primary li:focus-within > ul{display:flex;}
.tvz-menu--primary li ul a{padding:10px 12px; color:#0f172a; border-radius:10px;}
.tvz-menu--primary li ul a:hover{background:rgba(30,58,138,.06); color:var(--tvz-blue);}

.tvz-nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  width:48px;
  height:48px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(30,58,138,.12);
  border-radius:12px;
  background:#fff;
}
.tvz-nav-toggle span:not(.screen-reader-text){
  display:block;
  width:20px;
  height:2px;
  background:var(--tvz-blue);
}

.tvz-site-footer{
  margin-top:64px;
  background:linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color:#e2e8f0;
}
.tvz-site-footer__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:28px;
  padding:40px 0;
}
.tvz-site-footer__col h2{
  margin:0 0 14px;
  color:#fff;
  font-size:1rem;
}
.tvz-menu--footer{display:flex; flex-direction:column; align-items:flex-start; gap:10px;}
.tvz-menu--footer a{color:#cbd5e1;}
.tvz-menu--footer a:hover{color:#fff;}
.tvz-site-footer__bottom{border-top:1px solid rgba(148,163,184,.16);}
.tvz-site-footer__bottom-inner{padding:18px 0; color:#cbd5e1;}

.tvz-home-card--international{border-top:4px solid var(--tvz-blue-light);}
.tvz-home-section--international .tvz-study-stack__eyebrow{color:var(--tvz-blue-light)}
.tvz-home-section--org-links .tvz-study-stack__eyebrow{color:var(--tvz-orange)}
.tvz-chip-grid{display:flex; flex-wrap:wrap; gap:12px;}
.tvz-chip-link{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(30,58,138,.12);
  text-decoration:none;
  font-weight:700;
  color:var(--tvz-blue);
  box-shadow:0 8px 20px rgba(15,23,42,.04);
}
.tvz-chip-link:hover{background:rgba(30,58,138,.06);}

@media (max-width: 1080px){
  .tvz-nav-toggle{display:flex;}
  .tvz-primary-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-top:1px solid rgba(30,58,138,.08);
    box-shadow:0 20px 40px rgba(15,23,42,.12);
    display:none;
  }
  .tvz-primary-nav.is-open{display:block;}
  .tvz-menu--primary{
    flex-direction:column;
    align-items:stretch;
    padding:12px 16px 20px;
  }
  .tvz-menu--primary > li > a{padding:12px 10px;}
  .tvz-menu--primary li ul{
    position:static;
    display:flex;
    padding:0 0 0 12px;
    box-shadow:none;
    border:none;
    min-width:0;
  }
}

@media (max-width: 900px){
  .tvz-topbar__inner,
  .tvz-header-main__inner,
  .tvz-site-footer__bottom-inner{flex-direction:column; align-items:flex-start;}
  .tvz-menu--utility{flex-wrap:wrap;}
  .tvz-site-footer__grid{grid-template-columns:1fr 1fr;}
}

@media (max-width: 640px){
  .tvz-site-footer__grid{grid-template-columns:1fr;}
}

/* Header/footer + intl hotfix round */
.tvz-accordion--home-studies{margin-bottom:16px;border:1px solid rgba(30,58,138,.12);border-radius:16px;overflow:hidden;background:#fff;box-shadow:0 10px 26px rgba(15,23,42,.05)}
.tvz-accordion--home-studies>.tvz-accordion-toggle{background:#fff;padding:18px 20px}
.tvz-accordion--home-studies .tvz-accordion-body{padding:18px}

.tvz-home-mini-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.tvz-home-mini-card{display:flex;flex-direction:column;min-height:100%;background:#fff;border:1px solid rgba(30,58,138,.12);border-radius:16px;overflow:hidden;text-decoration:none;color:inherit;box-shadow:0 8px 24px rgba(15,23,42,.05);transition:transform .2s ease, box-shadow .2s ease}
.tvz-home-mini-card:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(15,23,42,.08)}
.tvz-home-mini-card__visual{aspect-ratio:16/9;background:#f8fafc;display:flex;align-items:center;justify-content:center;overflow:hidden}
.tvz-home-mini-card__visual img{width:100%;height:100%;object-fit:cover;display:block}
.tvz-home-mini-card__placeholder{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:var(--tvz-blue);color:#fff;font-size:24px;font-weight:700}
.tvz-home-mini-card__body{padding:14px 14px 16px}
.tvz-home-mini-card__body h3{margin:0 0 8px;font-size:16px;line-height:1.3;color:var(--tvz-blue)}
.tvz-home-mini-card__body p{margin:0;color:#475569;font-size:14px;line-height:1.45}
.tvz-home-mini-card--office{border-top:4px solid var(--tvz-orange)}
.tvz-home-mini-card--service{border-top:4px solid var(--tvz-blue-light)}

@media (max-width: 1200px){.tvz-home-mini-grid{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (max-width: 900px){.tvz-home-mini-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.tvz-home-mini-grid{grid-template-columns:1fr;}}

/* ===== Header / Footer / Homepage Accordions / International Hub ===== */
.tvz-site-header{background:rgba(255,255,255,.96);backdrop-filter:saturate(180%) blur(14px);}
.tvz-topbar{background:linear-gradient(90deg,var(--tvz-blue) 0%, #102b68 100%);}
.tvz-topbar__brandline{font-weight:700;letter-spacing:.02em;}
.tvz-topbar__nav{margin-left:auto;}
.tvz-menu--utility{gap:16px;flex-wrap:wrap;}
.tvz-menu--utility a{position:relative;padding:2px 0;}
.tvz-menu--utility a:hover{opacity:1;}
.tvz-menu--utility a::after{content:"";position:absolute;left:0;bottom:-3px;width:100%;height:1px;background:rgba(255,255,255,.8);transform:scaleX(0);transform-origin:left;transition:transform .2s ease;}
.tvz-menu--utility a:hover::after{transform:scaleX(1);}

.tvz-header-main{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);}
.tvz-header-main__inner{min-height:88px;}
.tvz-header-actions{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.tvz-header-action{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border-radius:999px;border:1px solid rgba(30,58,138,.12);background:#fff;color:var(--tvz-blue);font-weight:700;text-decoration:none;box-shadow:0 8px 20px rgba(15,23,42,.04);transition:transform .2s ease, box-shadow .2s ease, background .2s ease;}
.tvz-header-action:hover{transform:translateY(-1px);box-shadow:0 12px 24px rgba(15,23,42,.08);background:#f8fafc;}
.tvz-header-action--accent{background:linear-gradient(135deg,var(--tvz-blue) 0%, var(--tvz-blue-light) 100%);color:#fff;border-color:transparent;}
.tvz-header-navbar{border-top:1px solid rgba(30,58,138,.08);border-bottom:1px solid rgba(30,58,138,.08);background:#fff;}
.tvz-header-navbar__inner{display:flex;align-items:center;justify-content:center;}
.tvz-primary-nav{width:100%;}
.tvz-menu--primary{justify-content:space-between;gap:8px;}
.tvz-menu--primary > li > a{padding:12px 14px;border-radius:14px;font-weight:800;}
.tvz-menu--primary > li > a:hover,
.tvz-menu--primary > li.current-menu-item > a,
.tvz-menu--primary > li.current-menu-ancestor > a{background:linear-gradient(180deg,rgba(59,130,246,.14) 0%, rgba(30,58,138,.10) 100%);}
.tvz-menu--primary li ul{padding:12px;min-width:280px;border-radius:18px;box-shadow:0 28px 60px rgba(15,23,42,.15);}
.tvz-menu--primary li ul a{display:block;font-weight:600;line-height:1.35;}

.tvz-site-footer{margin-top:72px;position:relative;overflow:hidden;}
.tvz-site-footer::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 10% 10%, rgba(59,130,246,.22), transparent 28%),radial-gradient(circle at 85% 15%, rgba(249,115,22,.14), transparent 26%),radial-gradient(circle at 50% 100%, rgba(22,163,74,.10), transparent 28%);pointer-events:none;}
.tvz-site-footer__grid{position:relative;grid-template-columns:minmax(0,1.3fr) repeat(4,minmax(0,1fr));gap:28px;padding:46px 0;}
.tvz-site-footer__brand{position:relative;display:flex;flex-direction:column;gap:16px;}
.tvz-site-footer__brandlink{display:flex;align-items:center;gap:14px;text-decoration:none;color:#fff;}
.tvz-site-footer__brandlink strong{display:block;font-size:1.05rem;color:#fff;}
.tvz-site-footer__brandlink small{display:block;line-height:1.55;color:#cbd5e1;}
.tvz-site-footer__contact{line-height:1.7;color:#cbd5e1;}
.tvz-site-footer__contact a{color:#fff;text-decoration:none;}
.tvz-site-footer__chips{display:flex;flex-wrap:wrap;gap:10px;}
.tvz-site-footer__chips .tvz-chip-link{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.12);color:#fff;box-shadow:none;}
.tvz-site-footer__chips .tvz-chip-link:hover{background:rgba(255,255,255,.12);}
.tvz-site-footer__col{position:relative;}
.tvz-site-footer__col h2{font-size:1rem;margin-bottom:16px;}
.tvz-site-footer__bottom{position:relative;}

.tvz-home-hero-card__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px;}

.tvz-accordion--home-visual{position:relative;margin-bottom:18px;border:1px solid rgba(30,58,138,.12);border-radius:22px;overflow:hidden;background:#fff;box-shadow:0 16px 34px rgba(15,23,42,.06);}
.tvz-accordion--home-visual::before{content:"";position:absolute;inset:0;opacity:.16;background-size:cover;background-position:center;pointer-events:none;}
.tvz-accordion--home-visual>.tvz-accordion-toggle{position:relative;z-index:1;padding:22px 22px;background:linear-gradient(135deg,rgba(255,255,255,.96) 0%, rgba(248,250,252,.88) 100%);backdrop-filter:blur(3px);}
.tvz-accordion--home-visual .tvz-sem-left{font-size:1.05rem;font-weight:800;color:var(--tvz-blue);}
.tvz-accordion--home-visual .tvz-acc-icon{width:34px;height:34px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;background:#fff;border:1px solid rgba(30,58,138,.12);box-shadow:0 6px 16px rgba(15,23,42,.06);}
.tvz-accordion--home-visual .tvz-accordion-body{position:relative;z-index:1;padding:20px;background:linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(248,250,252,.96) 100%);}
.tvz-accordion--study-undergraduate::before{background-image:linear-gradient(135deg, rgba(59,130,246,.38), rgba(30,58,138,.20)), url('../img/tvz-org-default.jpg');}
.tvz-accordion--study-graduate::before{background-image:linear-gradient(135deg, rgba(22,163,74,.30), rgba(30,58,138,.18)), url('../img/tvz-org-default.jpg');}
.tvz-accordion--office-group::before{background-image:linear-gradient(135deg, rgba(249,115,22,.28), rgba(30,58,138,.16)), url('../motifs/medunarodna-suradnja.svg');background-size:cover, 220px auto;background-position:center, right 18px center;background-repeat:no-repeat;}
.tvz-accordion--service-group::before{background-image:linear-gradient(135deg, rgba(59,130,246,.28), rgba(22,163,74,.14)), url('../motifs/studentska-sluzba.svg');background-size:cover, 220px auto;background-position:center, right 18px center;background-repeat:no-repeat;}

.tvz-home-mini-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.tvz-home-mini-card__visual{aspect-ratio:16/10;}
.tvz-home-mini-card__body h3{font-size:15px;}
.tvz-home-mini-card--office{border-top:4px solid var(--tvz-orange);}
.tvz-home-mini-card--service{border-top:4px solid var(--tvz-green);}

.tvz-ms-shell .tvz-home-intro{margin-bottom:12px;}
.tvz-ms-chip-grid .tvz-chip-link--blue{background:rgba(30,58,138,.08);}
.tvz-ms-chip-grid .tvz-chip-link--green{background:rgba(22,163,74,.08);color:var(--tvz-green);}
.tvz-ms-chip-grid .tvz-chip-link--orange{background:rgba(249,115,22,.10);color:var(--tvz-orange);}
.tvz-ms-chip-grid .tvz-chip-link--blue-light{background:rgba(59,130,246,.08);color:var(--tvz-blue-light);}
.tvz-home-section--ms-group .tvz-section-title{font-size:1.5rem;}

@media (max-width: 1180px){
  .tvz-menu--primary{justify-content:flex-start;flex-wrap:wrap;}
  .tvz-site-footer__grid{grid-template-columns:1fr 1fr 1fr;}
  .tvz-site-footer__brand{grid-column:1 / -1;}
}

@media (max-width: 1080px){
  .tvz-header-actions{display:none;}
  .tvz-header-navbar{position:relative;}
  .tvz-primary-nav{position:absolute;top:100%;left:0;right:0;background:#fff;display:none;border:1px solid rgba(30,58,138,.08);border-top:none;box-shadow:0 18px 42px rgba(15,23,42,.12);}
  .tvz-primary-nav.is-open{display:block;}
  .tvz-menu--primary{flex-direction:column;align-items:stretch;padding:14px 16px 22px;gap:6px;}
  .tvz-menu--primary > li > a{padding:12px 12px;}
  .tvz-menu--primary li ul{position:static;display:flex;min-width:0;padding:6px 0 0 12px;box-shadow:none;border:none;background:transparent;}
}

@media (max-width: 900px){
  .tvz-site-footer__grid{grid-template-columns:1fr 1fr;}
  .tvz-home-mini-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width: 640px){
  .tvz-home-mini-grid{grid-template-columns:1fr;}
  .tvz-site-footer__grid{grid-template-columns:1fr;}
}

/* Phase: focus homepage + intl + events */
.tvz-home-secondary-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.tvz-home-section--secondary{
  margin-top:0;
}

.tvz-event-mini-item__source,
.tvz-event-card__source{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
  color:var(--tvz-blue);
  background:rgba(30,58,138,.08);
  margin:6px 0 10px;
}

.tvz-home-section--studies,
.tvz-home-section--departments{
  position:relative;
}

.tvz-home-section--studies .tvz-home-section__head,
.tvz-home-section--departments .tvz-home-section__head{
  margin-bottom:18px;
}

.tvz-home-section--studies .tvz-section-title,
.tvz-home-section--departments .tvz-section-title{
  font-size:clamp(1.75rem, 2vw, 2.3rem);
}

.tvz-home-section--org-links .tvz-accordion--home-visual,
.tvz-home-section--studies .tvz-accordion--home-visual{
  overflow:hidden;
}

.tvz-home-section--org-links .tvz-accordion-toggle,
.tvz-home-section--studies .tvz-accordion-toggle{
  position:relative;
  background:linear-gradient(135deg, rgba(30,58,138,.95), rgba(59,130,246,.92));
  color:#fff;
}

.tvz-home-section--org-links .tvz-accordion--service-group > .tvz-accordion-toggle{
  background:linear-gradient(135deg, rgba(22,163,74,.95), rgba(59,130,246,.88));
}

.tvz-home-section--org-links .tvz-accordion--office-group > .tvz-accordion-toggle{
  background:linear-gradient(135deg, rgba(249,115,22,.95), rgba(30,58,138,.9));
}

.tvz-home-section--studies .tvz-accordion-toggle:before,
.tvz-home-section--org-links .tvz-accordion-toggle:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 40%), radial-gradient(circle at bottom left, rgba(255,255,255,.14), transparent 34%);
  pointer-events:none;
}

.tvz-home-section--studies .tvz-sem-left,
.tvz-home-section--org-links .tvz-sem-left,
.tvz-home-section--studies .tvz-sem-count,
.tvz-home-section--org-links .tvz-sem-count,
.tvz-home-section--studies .tvz-acc-icon,
.tvz-home-section--org-links .tvz-acc-icon{
  position:relative;
  z-index:1;
}

.tvz-tab-content#tab-medjunarodno .tvz-home-card--international{
  height:100%;
}

.tvz-news-mini-featured,
.tvz-content-card--upisi-news{
  border-left:4px solid var(--tvz-orange);
}

@media (max-width: 991px){
  .tvz-home-secondary-grid{
    grid-template-columns:1fr;
  }
}


/* Homepage focus and visual accordions */
.tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:repeat(4,minmax(0,1fr));}
.tvz-home-section--departments .tvz-home-card{min-height:100%;}
.tvz-home-metrics .tvz-home-metric:first-child strong{color:var(--tvz-orange);}
.tvz-home-section--studies .tvz-accordion--home-visual,
.tvz-home-section--org-links .tvz-accordion--home-visual{min-height:92px; transition:min-height .25s ease, box-shadow .25s ease;}
.tvz-home-section--studies .tvz-accordion--home-visual::before,
.tvz-home-section--org-links .tvz-accordion--home-visual::before{background-image:var(--tvz-accordion-image); opacity:.22; transform:scale(1.02);}
.tvz-home-section--studies .tvz-accordion--home-visual > .tvz-accordion-toggle,
.tvz-home-section--org-links .tvz-accordion--home-visual > .tvz-accordion-toggle{min-height:92px;}
.tvz-home-section--studies .tvz-accordion--home-visual.active,
.tvz-home-section--org-links .tvz-accordion--home-visual.active{min-height:220px; box-shadow:0 22px 40px rgba(15,23,42,.10);}
.tvz-home-section--studies .tvz-accordion--home-visual.active > .tvz-accordion-toggle,
.tvz-home-section--org-links .tvz-accordion--home-visual.active > .tvz-accordion-toggle{min-height:132px;}
.tvz-accordion--office-group::before{background-image:linear-gradient(135deg, rgba(249,115,22,.16), rgba(255,255,255,0)), var(--tvz-accordion-image);}
.tvz-accordion--service-group::before{background-image:linear-gradient(135deg, rgba(22,163,74,.16), rgba(255,255,255,0)), var(--tvz-accordion-image);}
.tvz-accordion--study-undergraduate::before{background-image:linear-gradient(135deg, rgba(59,130,246,.18), rgba(255,255,255,0)), var(--tvz-accordion-image);}
.tvz-accordion--study-graduate::before{background-image:linear-gradient(135deg, rgba(30,58,138,.18), rgba(255,255,255,0)), var(--tvz-accordion-image);}
.tvz-home-section--departments .tvz-home-card__thumb img,
.tvz-home-grid--four .tvz-home-card__thumb img{aspect-ratio:16/9; object-fit:cover;}
.tvz-home-secondary-grid{grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; margin-top:28px;}
.tvz-home-section--secondary .tvz-home-grid--three{grid-template-columns:repeat(2,minmax(0,1fr));}
.tvz-home-section--secondary .tvz-home-card{display:flex; min-height:180px;}
.tvz-home-section--secondary .tvz-home-card__thumb{flex:0 0 38%; max-width:38%;}
.tvz-home-section--secondary .tvz-home-card__thumb img{height:100%; object-fit:cover;}
.tvz-home-section--secondary .tvz-home-card__body{display:flex; flex-direction:column; justify-content:center;}
.tvz-home-card--location{border-top:4px solid var(--tvz-blue-light);}
.tvz-home-card--manual-resource{border-left:4px solid var(--tvz-green);}
@media (max-width: 1100px){
  .tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 900px){
  .tvz-home-secondary-grid,
  .tvz-home-section--secondary .tvz-home-grid--three,
  .tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:1fr;}
  .tvz-home-section--secondary .tvz-home-card{display:block;}
  .tvz-home-section--secondary .tvz-home-card__thumb{max-width:none;}
}

/* Final homepage focus fixes */
.tvz-home-section--departments,
.tvz-home-section--studies,
.tvz-home-section--updates{
  margin-bottom: 28px;
}
.tvz-home-grid--four{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.tvz-home-secondary-grid{
  margin-top: 12px;
}
.tvz-home-section--secondary .tvz-section-title{
  font-size: 1.5rem;
}
@media (max-width: 1100px){
  .tvz-home-grid--four{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 700px){
  .tvz-home-grid--four{grid-template-columns: 1fr;}
}

/* Final homepage and locations fixes */
.tvz-home-section--studies{order:1}
.tvz-home-section--departments{order:2}
.tvz-home-shell{padding-bottom:32px}
.tvz-home-section--studies .tvz-accordion--home-visual,
.tvz-home-section--org-links .tvz-accordion--home-visual{overflow:hidden;background:#fff}
.tvz-home-section--studies .tvz-accordion-body,
.tvz-home-section--org-links .tvz-accordion-body{display:none !important;max-height:none !important}
.tvz-home-section--studies .tvz-accordion.active > .tvz-accordion-body,
.tvz-home-section--org-links .tvz-accordion.active > .tvz-accordion-body{display:block !important}
.tvz-home-section--studies .tvz-home-grid--four{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.tvz-home-section--org-links .tvz-home-mini-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.tvz-home-section--studies .tvz-home-card__body p{font-weight:600;color:#475569}
.tvz-location-map{margin:10px 0 14px;border-radius:14px;overflow:hidden;border:1px solid rgba(30,58,138,.12);background:#f8fafc}
.tvz-location-map iframe{width:100%;min-height:220px;border:0;display:block}
.tvz-location-map--link{padding:12px 14px}
@media (max-width: 1200px){
  .tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 900px){
  .tvz-home-section--studies .tvz-home-grid--four,
  .tvz-home-section--departments .tvz-home-grid--four,
  .tvz-home-section--org-links .tvz-home-mini-grid{grid-template-columns:1fr;}
}


.tvz-location-map iframe{width:100%;min-height:220px;border:0;border-radius:14px;box-shadow:0 8px 20px rgba(15,23,42,.08)}
.tvz-site-footer__contact{line-height:1.7}
.tvz-home-section--studies .tvz-accordion-body,
.tvz-home-section--org-links .tvz-accordion-body{display:none}
.tvz-home-section--studies .tvz-accordion.active > .tvz-accordion-body,
.tvz-home-section--org-links .tvz-accordion.active > .tvz-accordion-body{display:block}
.tvz-study-card__dept{margin-top:8px;font-size:.9rem;color:#e5eefc}
.tvz-landing-group + .tvz-landing-group{margin-top:32px}


/* Homepage simplification fixes */
.study-levels-two-col{align-items:start}
.tvz-study-level-panel,.tvz-org-simple-panel{padding:20px;border:1px solid rgba(30,58,138,.12);border-radius:22px;background:#fff;box-shadow:0 14px 32px rgba(15,23,42,.06)}
.tvz-study-level-panel__title{margin:0 0 14px;font-size:1.6rem;color:var(--tvz-blue)}
.study-levels-two-col > *{min-width:0}
.study-levels-two-col .tvz-home-grid--three{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.org-simple-grid{align-items:start}
.tvz-org-simple-panel .tvz-home-mini-grid{grid-template-columns:1fr;gap:14px}
.tvz-org-simple-panel .tvz-home-mini-card{min-height:96px}
.tvz-home-section--studies .tvz-home-card__thumb{height:160px}
.tvz-home-section--studies .tvz-home-card__thumb img{width:100%;height:100%;object-fit:cover}
.tvz-home-section--studies .tvz-home-card h3{font-size:1.15rem}
.tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
@media (max-width: 1200px){
 .study-levels-two-col{grid-template-columns:1fr}
 .tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 900px){
 .study-levels-two-col .tvz-home-grid--three{grid-template-columns:1fr}
 .org-simple-grid{grid-template-columns:1fr}
 .tvz-home-section--departments .tvz-home-grid--four{grid-template-columns:1fr}
}


/* Homepage final focus adjustments */
.tvz-home-section--studies{width:100%;}
.study-levels-two-col{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  width:100%;
}
.study-levels-two-col .tvz-study-level-panel{
  width:100%;
}
.study-levels-two-col .tvz-home-grid--three{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.tvz-home-section--updates{margin-top:32px;}
.tvz-home-secondary-grid{margin-top:24px;}
.tvz-home-shell .tvz-updates-layout--compact{
  grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
  align-items:start;
}
.tvz-news-mini-stack{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,.9fr);
  gap:20px;
}
.tvz-news-mini-featured{
  display:grid;
  grid-template-columns:160px minmax(0,1fr);
  gap:18px;
  align-items:start;
}
.tvz-news-mini-featured__thumb,
.tvz-news-mini-item__thumb{
  display:block;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(30,58,138,.12);
  background:#eef3ff;
  flex:0 0 auto;
}
.tvz-news-mini-featured__thumb img,
.tvz-news-mini-item__thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.tvz-news-mini-featured__thumb{width:160px;height:160px;}
.tvz-news-mini-featured__content{min-width:0;}
.tvz-news-mini-list{display:grid;gap:14px;}
.tvz-news-mini-item{
  display:grid;
  grid-template-columns:92px minmax(0,1fr);
  gap:14px;
  align-items:start;
}
.tvz-news-mini-item__thumb{width:92px;height:92px;}
.tvz-news-mini-item__content{min-width:0;}
.tvz-news-category-btn{
  border-width:1px;
  box-shadow:none;
}
@media (max-width: 1100px){
  .tvz-news-mini-stack{grid-template-columns:1fr;}
}
@media (max-width: 991px){
  .study-levels-two-col{grid-template-columns:1fr;}
  .tvz-home-shell .tvz-updates-layout--compact{grid-template-columns:1fr;}
  .tvz-news-mini-featured{grid-template-columns:120px minmax(0,1fr);}
  .tvz-news-mini-featured__thumb{width:120px;height:120px;}
}
@media (max-width: 640px){
  .tvz-news-mini-item{grid-template-columns:72px minmax(0,1fr);}
  .tvz-news-mini-item__thumb{width:72px;height:72px;}
  .tvz-news-mini-featured{grid-template-columns:1fr;}
  .tvz-news-mini-featured__thumb{width:100%;height:180px;}
}

/* Homepage banner and study landing cards */
.tvz-home-banner{position:relative;overflow:hidden;margin-bottom:24px;padding:0;border-radius:24px;}
.tvz-home-banner__slides{position:relative;min-height:420px;}
.tvz-home-banner__slide{display:none;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);align-items:stretch;min-height:420px;}
.tvz-home-banner__slide.is-active{display:grid;}
.tvz-home-banner__media img,.tvz-home-banner__fallback{width:100%;height:100%;min-height:420px;object-fit:cover;display:block;background:linear-gradient(135deg,var(--tvz-blue) 0%,var(--tvz-blue-light) 100%);}
.tvz-home-banner__content{padding:32px;background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);display:flex;flex-direction:column;justify-content:center;gap:14px;}
.tvz-home-banner__content h2{font-size:clamp(28px,3vw,42px);line-height:1.12;margin:0;color:var(--tvz-blue);}
.tvz-home-banner__content p{margin:0;font-size:16px;line-height:1.7;color:#334155;}
.tvz-home-banner__actions{display:flex;gap:12px;flex-wrap:wrap;}
.tvz-home-banner__nav{display:flex;gap:10px;justify-content:center;padding:16px 0 18px;background:#fff;}
.tvz-home-banner__dot{width:12px;height:12px;border-radius:999px;border:0;background:rgba(30,58,138,.24);cursor:pointer;}
.tvz-home-banner__dot.is-active{background:var(--tvz-orange);}

.tvz-study-landing-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.tvz-study-landing-card{position:relative;min-height:320px;border-radius:24px;overflow:hidden;display:flex;align-items:flex-end;text-decoration:none;background:#0f172a;isolation:isolate;}
.tvz-study-landing-card::before{content:"";position:absolute;inset:0;background-image:var(--tvz-card-image);background-size:cover;background-position:center;transform:scale(1.02);transition:transform .35s ease;z-index:-2;}
.tvz-study-landing-card:hover::before{transform:scale(1.08);}
.tvz-study-landing-card__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,23,42,.15) 0%,rgba(15,23,42,.82) 100%);z-index:-1;}
.tvz-study-landing-card__content{padding:28px;display:flex;flex-direction:column;gap:10px;color:#fff;max-width:520px;}
.tvz-study-landing-card__content h3{margin:0;font-size:34px;line-height:1.12;color:#fff;}
.tvz-study-landing-card__content p{margin:0;color:rgba(255,255,255,.92);line-height:1.6;}
.tvz-study-landing-card--undergrad .tvz-sem-count{background:rgba(22,163,74,.16);color:#fff;border:1px solid rgba(255,255,255,.18);}
.tvz-study-landing-card--grad .tvz-sem-count{background:rgba(249,115,22,.16);color:#fff;border:1px solid rgba(255,255,255,.18);}

.tvz-home-section--bottom{margin-top:32px;}

@media (max-width: 991px){
  .tvz-home-banner__slide{grid-template-columns:1fr;min-height:auto;}
  .tvz-home-banner__media img,.tvz-home-banner__fallback{min-height:240px;}
  .tvz-study-landing-cards{grid-template-columns:1fr;}
}


/* Homepage hero banner overlay */
.tvz-home-banner--hero{padding:0;overflow:hidden;border-radius:0 0 24px 24px;margin-top:0;margin-bottom:28px;background:#0f172a;}
.tvz-home-banner--hero .tvz-home-banner__slides{position:relative;min-height:420px;}
.tvz-home-banner--hero .tvz-home-banner__slide{display:none;position:relative;min-height:420px;}
.tvz-home-banner--hero .tvz-home-banner__slide.is-active{display:block;}
.tvz-home-banner__hero-link{display:block;position:relative;min-height:420px;color:#fff;text-decoration:none;}
.tvz-home-banner--hero .tvz-home-banner__media,
.tvz-home-banner--hero .tvz-home-banner__media img,
.tvz-home-banner--hero .tvz-home-banner__fallback{width:100%;height:420px;min-height:420px;display:block;object-fit:cover;}
.tvz-home-banner__overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(15,23,42,.18) 0%,rgba(15,23,42,.52) 45%,rgba(15,23,42,.82) 100%);}
.tvz-home-banner__hero-content{position:absolute;left:clamp(20px,4vw,56px);right:clamp(20px,4vw,56px);bottom:clamp(24px,5vw,48px);z-index:2;max-width:min(840px,80%);display:flex;flex-direction:column;gap:12px;}
.tvz-home-banner__hero-content .tvz-news-category-buttons{display:flex;gap:8px;flex-wrap:wrap;}
.tvz-home-banner__hero-content .tvz-news-category-button{background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);color:#fff;backdrop-filter:blur(6px);}
.tvz-home-banner__hero-content h2{margin:0;font-size:clamp(32px,4.6vw,60px);line-height:1.02;color:#fff;text-shadow:0 2px 18px rgba(0,0,0,.28);max-width:14ch;}
.tvz-home-banner__hero-content p{margin:0;max-width:64ch;color:rgba(255,255,255,.92);font-size:clamp(15px,1.4vw,18px);line-height:1.6;text-shadow:0 1px 8px rgba(0,0,0,.26);}
.tvz-home-banner--hero .tvz-home-banner__nav{position:absolute;right:24px;bottom:24px;z-index:3;display:flex;gap:10px;justify-content:flex-end;padding:0;background:transparent;}
.tvz-home-banner--hero .tvz-home-banner__dot{width:14px;height:14px;border-radius:999px;border:1px solid rgba(255,255,255,.45);background:rgba(255,255,255,.22);box-shadow:0 8px 22px rgba(15,23,42,.15);}
.tvz-home-banner--hero .tvz-home-banner__dot.is-active{background:#fff;border-color:#fff;}
@media (max-width: 900px){
  .tvz-home-banner--hero .tvz-home-banner__slides,
  .tvz-home-banner--hero .tvz-home-banner__slide,
  .tvz-home-banner__hero-link,
  .tvz-home-banner--hero .tvz-home-banner__media img,
  .tvz-home-banner--hero .tvz-home-banner__fallback{min-height:320px;height:320px;}
  .tvz-home-banner__hero-content{left:20px;right:20px;bottom:24px;max-width:none;}
  .tvz-home-banner__hero-content h2{max-width:none;font-size:clamp(26px,8vw,40px);}
  .tvz-home-banner__hero-content p{font-size:15px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
  .tvz-home-banner--hero .tvz-home-banner__nav{right:20px;bottom:18px;}
}


/* Requested homepage + news polish */
.tvz-home-grid--departments{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;}
.tvz-home-grid--departments .tvz-home-card__thumb img{height:140px;object-fit:cover;}
.tvz-home-grid--departments .tvz-home-card__body{padding:16px 16px 18px;}
.tvz-home-grid--departments .tvz-home-card h3{font-size:18px;line-height:1.2;}
.tvz-home-grid--departments .tvz-home-card p{font-size:14px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-study-landing-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;width:100%;}
.tvz-study-landing-card{min-height:240px;border-radius:20px;overflow:hidden;background:linear-gradient(135deg,var(--tvz-blue) 0%,var(--tvz-blue-light) 100%);}
.tvz-study-landing-card__content{padding:22px;max-width:none;}
.tvz-study-landing-card__content h3{font-size:28px;line-height:1.08;color:#fff;}
.tvz-study-landing-card__content p{font-size:15px;line-height:1.5;color:rgba(255,255,255,.92);max-width:38ch;}
.tvz-study-landing-card .tvz-sem-count{background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.25);color:#fff;}
.tvz-study-landing-cards--orgs .tvz-study-landing-card{min-height:190px;}
.tvz-study-landing-card--office .tvz-study-landing-card__overlay{background:linear-gradient(180deg,rgba(30,58,138,.14) 0%,rgba(30,58,138,.86) 100%);}
.tvz-study-landing-card--service .tvz-study-landing-card__overlay{background:linear-gradient(180deg,rgba(59,130,246,.16) 0%,rgba(23,37,84,.88) 100%);}
.tvz-home-section--news-categories .tvz-news-channel-group{padding:20px;border:1px solid rgba(30,58,138,.12);border-radius:22px;background:#fff;}
.tvz-news-channel-layout{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:18px;align-items:start;}
.tvz-news-featured--category .tvz-news-featured__thumb img{width:100%;height:280px;object-fit:cover;display:block;}
.tvz-news-featured--category h3{font-size:24px;line-height:1.15;margin:0 0 10px;}
.tvz-news-featured--category p{display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-news-archive--two-col{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr);gap:24px;align-items:start;}
.tvz-news-archive__side{display:grid;gap:14px;}
.tvz-news-compact-item--fixed{display:grid;grid-template-columns:96px minmax(0,1fr);gap:14px;padding:14px;border:1px solid rgba(30,58,138,.1);border-radius:18px;background:#fff;min-height:112px;}
.tvz-news-compact-item--fixed .tvz-news-compact-item__thumb img{width:96px;height:96px;object-fit:cover;border-radius:14px;display:block;background:#e2e8f0;}
.tvz-news-compact-item--fixed h3,.tvz-news-compact-item--fixed h4{font-size:16px;line-height:1.25;margin:0 0 8px;color:var(--tvz-blue-dark);}
.tvz-news-compact-item--fixed p{margin:0;color:var(--tvz-muted);font-size:13px;line-height:1.45;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-news-compact-item--fixed .tvz-news-term-buttons{margin-top:8px;}
.tvz-news-term-button,.tvz-news-channel-badge,.tvz-news-category-button{font-weight:700;box-shadow:0 8px 20px rgba(15,23,42,.06);}
@media (max-width:1100px){.tvz-home-grid--departments{grid-template-columns:repeat(2,minmax(0,1fr));}.tvz-news-channel-layout,.tvz-news-archive--two-col{grid-template-columns:1fr;}}
@media (max-width:767px){.tvz-study-landing-cards,.tvz-study-landing-cards--orgs,.tvz-home-grid--departments{grid-template-columns:1fr;}.tvz-news-compact-item--fixed{grid-template-columns:84px minmax(0,1fr);}.tvz-news-compact-item--fixed .tvz-news-compact-item__thumb img{width:84px;height:84px;}}


/* Performance/homepage cleanup fixes */
.tvz-study-landing-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;width:100%;}
.tvz-study-landing-cards--org{margin-top:8px;}
@media (max-width: 900px){.tvz-study-landing-cards{grid-template-columns:1fr;}}
.tvz-home-section--departments + .tvz-home-section--studies-landing{margin-top:28px;}
.tvz-home-grid--departments .tvz-home-card__body p{display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-study-general-grid{display:block !important;column-count:2;column-gap:20px;}
.tvz-study-general-grid > *{display:inline-block;width:100%;margin:0 0 20px;break-inside:avoid;-webkit-column-break-inside:avoid;page-break-inside:avoid;vertical-align:top;}
@media (max-width: 991px){.tvz-study-general-grid{column-count:1;}}
.tvz-location-map iframe,.tvz-location-map iframe[src]{width:100%;min-height:240px;border:0;border-radius:14px;}
/* TVZ roller / banner */
[data-home-banner],
.tvz-home-banner,
.tvz-banner,
.tvz-hero-slider {
  width: 100%;
  background: #005baa; /* TVZ plava */
}

/* svaki slide */
[data-banner-slide],
.tvz-banner-slide,
.tvz-home-banner__slide {
  width: 100%;
  background: #005baa; /* plava lijevo/desno kad slika ne pokriva cijelu širinu */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ako je slika u <img> tagu */
[data-banner-slide] img,
.tvz-banner-slide img,
.tvz-home-banner__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;   /* cijela slika vidljiva */
  object-position: center center;
  background: #005baa;
}

/* preporučena visina rollera */
[data-home-banner],
.tvz-home-banner,
.tvz-banner,
.tvz-hero-slider,
[data-banner-slide],
.tvz-banner-slide,
.tvz-home-banner__slide {
  min-height: 420px;
}

@media (max-width: 1024px) {
  [data-home-banner],
  .tvz-home-banner,
  .tvz-banner,
  .tvz-hero-slider,
  [data-banner-slide],
  .tvz-banner-slide,
  .tvz-home-banner__slide {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  [data-home-banner],
  .tvz-home-banner,
  .tvz-banner,
  .tvz-hero-slider,
  [data-banner-slide],
  .tvz-banner-slide,
  .tvz-home-banner__slide {
    min-height: 220px;
  }
}
[data-banner-slide],
.tvz-banner-slide,
.tvz-home-banner__slide {
  background-color: #005baa;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}


/* Lokacije - usklađeni prikaz s info panelima */
.tvz-sidebar-card--location-archive{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.tvz-location-block--archive,
.tvz-location-block--single{
  margin-top:6px;
}
.tvz-location-block--archive .tvz-map iframe,
.tvz-location-block--single .tvz-map iframe,
.tvz-sidebar-card--location-archive .tvz-map iframe{
  min-height:260px;
}
.tvz-home-grid--two{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
@media (max-width: 980px){
  .tvz-home-grid--two{
    grid-template-columns:1fr;
  }
}

/* =====================================================
RESTORED HOME BANNER / NEWS SIDEBAR / INTERNATIONAL ARCHIVE
===================================================== */
.tvz-home-banner--split{
  --tvz-banner-height: 460px;
  padding:0;
  overflow:hidden;
  border-radius:0 0 24px 24px;
  margin:0 0 32px;
  background:var(--tvz-blue);
  box-shadow:0 20px 44px rgba(15,23,42,.08);
}
.tvz-home-banner--split .tvz-home-banner__slides{
  min-height:var(--tvz-banner-height);
}
.tvz-home-banner--split .tvz-home-banner__slide{
  display:none;
  min-height:var(--tvz-banner-height);
}
.tvz-home-banner--split .tvz-home-banner__slide.is-active{
  display:block;
}
.tvz-home-banner__split-shell{
  display:grid;
  grid-template-columns:minmax(320px,.86fr) minmax(0,1.14fr);
  min-height:var(--tvz-banner-height);
}
.tvz-home-banner__split-copy{
  padding:40px clamp(24px,3.4vw,44px);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:16px;
  min-height:var(--tvz-banner-height);
  background:linear-gradient(180deg,#ffffff 0%,#f6f9ff 100%);
  overflow:hidden;
}
.tvz-home-banner__split-copy h2{
  margin:0;
  font-size:clamp(30px,3.6vw,52px);
  line-height:1.04;
  color:var(--tvz-blue);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.tvz-home-banner__split-copy h2 a{color:inherit;text-decoration:none;}
.tvz-home-banner__split-copy p{
  margin:0;
  color:#334155;
  font-size:16px;
  line-height:1.72;
  max-width:42ch;
  display:-webkit-box;
  -webkit-line-clamp:6;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.tvz-home-banner__split-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:4px;
  color:#64748b;
  font-size:.9rem;
  font-weight:700;
}
.tvz-home-banner__split-media{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:var(--tvz-banner-height);
  background:var(--tvz-blue);
  padding:22px;
  text-decoration:none;
}
.tvz-home-banner__split-media img,
.tvz-home-banner--split .tvz-home-banner__fallback{
  width:100%;
  height:100%;
  min-height:calc(var(--tvz-banner-height) - 44px);
  max-height:calc(var(--tvz-banner-height) - 44px);
  object-fit:contain;
  object-position:center center;
  display:block;
  background:var(--tvz-blue);
}
.tvz-home-banner__titles{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:0;
  border-top:1px solid rgba(30,58,138,.08);
  background:#fff;
}
.tvz-home-banner__title{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 18px;
  border:0;
  border-right:1px solid rgba(30,58,138,.08);
  background:#fff;
  text-align:left;
  cursor:pointer;
  color:#0f172a;
}
.tvz-home-banner__title:last-child{border-right:0;}
.tvz-home-banner__title:hover{background:#f8fbff;}
.tvz-home-banner__title.is-active{
  background:#eef4ff;
  box-shadow:inset 0 -3px 0 var(--tvz-orange);
}
.tvz-home-banner__title-index{
  flex:0 0 auto;
  font-size:.78rem;
  font-weight:800;
  color:#94a3b8;
  letter-spacing:.08em;
}
.tvz-home-banner__title-text{
  display:block;
  font-size:.92rem;
  line-height:1.45;
  font-weight:700;
  color:var(--tvz-blue);
}

.tvz-news-page{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,360px);
  gap:26px;
  align-items:start;
}
.tvz-news-page__main{min-width:0;}
.tvz-news-page__sidebar{display:grid;gap:18px;position:sticky;top:120px;align-self:start;}
.tvz-sidebar-card--filters .tvz-news-filters{
  margin-top:18px;
  box-shadow:none;
  border:1px solid rgba(30,58,138,.1);
  background:#f8fbff;
}
.tvz-filter-chip-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tvz-filter-chip{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(30,58,138,.12);
  color:var(--tvz-blue);
  text-decoration:none;
  font-weight:700;
  font-size:.84rem;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}
.tvz-filter-chip:hover{background:#f8fbff;}
.tvz-filter-chip.is-active{
  background:var(--tvz-blue);
  border-color:var(--tvz-blue);
  color:#fff;
  box-shadow:0 14px 30px rgba(30,58,138,.22);
}
.tvz-sidebar-news-list{display:grid;gap:12px;}
.tvz-sidebar-news-item{
  display:grid;
  gap:6px;
  padding-top:12px;
  border-top:1px solid rgba(148,163,184,.18);
}
.tvz-sidebar-news-item:first-child{padding-top:0;border-top:0;}
.tvz-sidebar-news-item span{
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#64748b;
}
.tvz-sidebar-news-item a{
  color:var(--tvz-blue);
  text-decoration:none;
  font-weight:700;
  line-height:1.45;
}

.tvz-home-shell .tvz-updates-layout--compact{
  grid-template-columns:minmax(0,1.7fr) minmax(280px,.72fr);
  gap:22px;
}
.tvz-updates-section--news .tvz-news-mini-stack{
  grid-template-columns:minmax(0,1fr) minmax(260px,.8fr);
  gap:18px;
}
.tvz-news-mini-featured{
  grid-template-columns:200px minmax(0,1fr);
  gap:18px;
  padding:18px;
}
.tvz-news-mini-featured__thumb{width:200px;height:180px;}
.tvz-news-mini-featured__thumb img,
.tvz-news-mini-item__thumb img{object-fit:cover;}
.tvz-news-mini-item{
  min-height:106px;
  border-radius:16px;
}
.tvz-event-mini-item{
  padding:18px;
  border-left:4px solid var(--tvz-orange);
}
.tvz-event-mini-item__date{
  color:#9a3412;
  font-weight:800;
}
.tvz-event-mini-item__source{
  font-size:.76rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#64748b;
  margin-top:4px;
}

.tvz-updates-section--events .tvz-events-mini-list{
  display:grid;
  gap:14px;
}
.tvz-updates-section--events .tvz-event-mini-item{
  min-height:132px;
  background:#fff;
  box-shadow:0 14px 32px rgba(15,23,42,.06);
}

.tvz-ms-shell .tvz-news-page__sidebar{top:120px;}

@media (max-width: 1100px){
  .tvz-news-page{grid-template-columns:1fr;}
  .tvz-news-page__sidebar{position:static;}
  .tvz-home-shell .tvz-updates-layout--compact{grid-template-columns:1fr;}
}
@media (max-width: 900px){
  .tvz-home-banner--split{--tvz-banner-height: 360px;}
  .tvz-home-banner__split-shell{grid-template-columns:1fr;}
  .tvz-home-banner__split-copy{min-height:auto;padding:28px 22px;}
  .tvz-home-banner__split-media{min-height:240px;padding:18px;}
  .tvz-home-banner__split-media img,
  .tvz-home-banner--split .tvz-home-banner__fallback{min-height:204px;max-height:204px;}
  .tvz-home-banner__titles{grid-template-columns:1fr;}
  .tvz-home-banner__title{border-right:0;border-top:1px solid rgba(30,58,138,.08);}
  .tvz-updates-section--news .tvz-news-mini-stack{grid-template-columns:1fr;}
  .tvz-news-mini-featured{grid-template-columns:140px minmax(0,1fr);}
  .tvz-news-mini-featured__thumb{width:140px;height:140px;}
}
@media (max-width: 640px){
  .tvz-home-banner__split-copy h2{font-size:clamp(28px,8vw,36px);}
  .tvz-news-mini-featured{grid-template-columns:1fr;}
  .tvz-news-mini-featured__thumb{width:100%;height:180px;}
}


.tvz-object-news-layout{display:grid;gap:24px;}
.tvz-object-news-layout__top{align-items:start;}
.tvz-object-news-layout__archive{display:grid;gap:16px;}
.tvz-object-news-layout__archive-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.tvz-object-news-layout__featured .tvz-news-featured__thumb img{min-height:300px;object-fit:cover;}
.tvz-object-news-layout__side{display:grid;gap:14px;}

@media (max-width:1100px){
  .tvz-object-news-layout__archive-grid{grid-template-columns:1fr;}
}
.tvz-pub-shell {
  display: grid;
  gap: 28px;
}

.tvz-pub-toolbar,
.tvz-pub-filters {
  display: grid;
  gap: 16px;
}

.tvz-pub-filters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.tvz-pub-field {
  display: grid;
  gap: 8px;
}

.tvz-pub-field span {
  font-size: 13px;
  font-weight: 700;
  color: #4b5563;
}

.tvz-pub-field input,
.tvz-pub-field select {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid #d5deea;
  padding: 0 14px;
  background: #fff;
}

.tvz-pub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tvz-pub-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 24px;
}

.tvz-pub-card__media {
  display: block;
  background: #005baa;
  aspect-ratio: 16 / 10;
}

.tvz-pub-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #005baa;
}

.tvz-pub-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.tvz-pub-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #5f6b7a;
}

.tvz-pub-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 91, 170, 0.12);
  color: #005baa;
  font-weight: 700;
}

.tvz-pub-chip--croris {
  background: rgba(14, 116, 144, 0.12);
  color: #0e7490;
}

.tvz-pub-card h3,
.tvz-pub-featured__text h2,
.tvz-pub-detail__main h1 {
  margin: 0;
}

.tvz-pub-card__authors,
.tvz-pub-author-list {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.tvz-pub-card__actions,
.tvz-pub-detail__actions,
.tvz-pub-journal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.tvz-pub-pagination .page-numbers {
  display: inline-flex;
  list-style: none;
  gap: 8px;
}

.tvz-pub-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px;
}

.tvz-pub-featured {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(0, 91, 170, 0.04), rgba(255,255,255,1));
}

.tvz-pub-featured__cover {
  display: block;
  background: #005baa;
  border-radius: 20px;
  overflow: hidden;
  min-height: 340px;
}

.tvz-pub-featured__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #005baa;
}

.tvz-pub-featured__text {
  display: grid;
  align-content: start;
  gap: 14px;
}

.tvz-pub-strip {
  display: grid;
  gap: 16px;
}

.tvz-pub-strip .tvz-pub-card {
  grid-template-columns: 132px minmax(0, 1fr);
  grid-template-rows: none;
}

.tvz-pub-strip .tvz-pub-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.tvz-pub-journal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
}

.tvz-pub-detail {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 28px;
}

.tvz-pub-detail__cover {
  background: #005baa;
  border-radius: 24px;
  overflow: hidden;
}

.tvz-pub-detail__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #005baa;
}

.tvz-pub-meta-list {
  display: grid;
  gap: 10px;
}

.tvz-pub-meta-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5ebf3;
}

.tvz-pub-meta-row strong {
  color: #0f172a;
}

.tvz-pub-detail__aside {
  display: grid;
  gap: 18px;
}

.tvz-pub-related {
  display: grid;
  gap: 18px;
}

.tvz-person-publications-grid {
  display: grid;
  gap: 16px;
}

.tvz-person-publication-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border: 1px solid #e5ebf3;
  border-radius: 18px;
  background: #fff;
}

.tvz-person-publication-item__cover {
  display: block;
  background: #005baa;
  border-radius: 14px;
  overflow: hidden;
  min-height: 112px;
}

.tvz-person-publication-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #005baa;
}

.tvz-person-publication-item__body {
  display: grid;
  gap: 8px;
}

@media (max-width: 1100px) {
  .tvz-pub-grid,
  .tvz-pub-filters,
  .tvz-pub-highlight-grid,
  .tvz-pub-detail,
  .tvz-pub-featured {
    grid-template-columns: 1fr;
  }

  .tvz-pub-strip .tvz-pub-card,
  .tvz-pub-journal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .tvz-pub-grid {
    grid-template-columns: 1fr;
  }

  .tvz-person-publication-item,
  .tvz-pub-meta-row {
    grid-template-columns: 1fr;
  }
}
/* =====================================================
   DJELATNIK - TAB IZDAVASTVO
   samo lokalni stilovi, bez utjecaja na ostatak weba
===================================================== */

#tab-izdavastvo{
  display:block;
  width:100%;
  max-width:100%;
  min-width:0;
}

#tab-izdavastvo > *{
  min-width:0;
}

#tab-izdavastvo .tvz-pub-shell{
  display:grid;
  gap:24px;
  width:100%;
  max-width:100%;
  min-width:0;
}

#tab-izdavastvo .tvz-pub-shell__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  width:100%;
  min-width:0;
}

#tab-izdavastvo .tvz-pub-toolbar{
  display:grid;
  gap:18px;
  width:100%;
  min-width:0;
  padding:20px;
  border:1px solid rgba(30,58,138,.10);
  border-radius:18px;
  background:linear-gradient(180deg,#f8fbff 0%,#eef5fb 100%);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

#tab-izdavastvo .tvz-pub-filter-group{
  display:grid;
  gap:10px;
  min-width:0;
}

#tab-izdavastvo .tvz-pub-filter-label{
  font-size:13px;
  font-weight:700;
  color:#334155;
  letter-spacing:.02em;
}

#tab-izdavastvo .tvz-pub-filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

#tab-izdavastvo .tvz-pub-filter-chip{
  appearance:none;
  border:1px solid rgba(30,58,138,.14);
  background:#fff;
  color:#1e3a8a;
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  line-height:1;
  cursor:pointer;
  transition:all .2s ease;
  box-shadow:0 6px 16px rgba(15,23,42,.04);
}

#tab-izdavastvo .tvz-pub-filter-chip:hover{
  border-color:rgba(30,58,138,.28);
  background:#f8fbff;
}

#tab-izdavastvo .tvz-pub-filter-chip.is-active{
  background:linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);
  color:#fff;
  border-color:transparent;
  box-shadow:0 12px 24px rgba(30,58,138,.18);
}

#tab-izdavastvo .tvz-pub-year-filter{
  width:100%;
  max-width:220px;
  min-height:46px;
  padding:0 14px;
  border-radius:12px;
  border:1px solid rgba(30,58,138,.14);
  background:#fff;
  color:#0f172a;
  font-size:14px;
  font-weight:600;
}

#tab-izdavastvo .tvz-pub-section{
  display:grid;
  gap:20px;
  width:100%;
  max-width:100%;
  min-width:0;
  padding:22px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(30,58,138,.10);
  box-shadow:0 12px 28px rgba(15,23,42,.05);
}

#tab-izdavastvo .tvz-pub-section__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-width:0;
  padding-bottom:12px;
  border-bottom:1px solid rgba(148,163,184,.18);
}

#tab-izdavastvo .tvz-pub-section__head h3{
  margin:0;
  font-size:22px;
  line-height:1.2;
  color:#1e3a8a;
}

#tab-izdavastvo .tvz-pub-section__total{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:#1e3a8a;
  font-weight:800;
  font-size:14px;
}

#tab-izdavastvo .tvz-pub-type-group{
  display:grid;
  gap:14px;
  min-width:0;
}

#tab-izdavastvo .tvz-pub-type-group__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-width:0;
}

#tab-izdavastvo .tvz-pub-type-group__head h4{
  margin:0;
  font-size:17px;
  line-height:1.3;
  color:#0f172a;
}

#tab-izdavastvo .tvz-pub-type-group__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:34px;
  height:34px;
  padding:0 10px;
  border-radius:999px;
  background:#f1f5f9;
  color:#334155;
  font-weight:700;
  font-size:13px;
}

#tab-izdavastvo .tvz-person-publications-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  width:100%;
  max-width:100%;
  min-width:0;
}

#tab-izdavastvo .tvz-person-publication-item{
  display:grid;
  grid-template-columns:110px minmax(0,1fr);
  gap:16px;
  align-items:start;
  width:100%;
  min-width:0;
  padding:16px;
  border:1px solid rgba(148,163,184,.18);
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 18px rgba(15,23,42,.04);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#tab-izdavastvo .tvz-person-publication-item:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 26px rgba(15,23,42,.08);
  border-color:rgba(30,58,138,.24);
}

#tab-izdavastvo .tvz-person-publication-item__cover{
  display:block;
  width:110px;
  max-width:100%;
  min-height:148px;
  border-radius:14px;
  overflow:hidden;
  background:#005baa;
  box-shadow:0 8px 20px rgba(15,23,42,.10);
}

#tab-izdavastvo .tvz-person-publication-item__cover img{
  display:block;
  width:100%;
  height:148px;
  object-fit:contain;
  background:#005baa;
}

#tab-izdavastvo .tvz-person-publication-item__body{
  display:grid;
  gap:10px;
  align-content:start;
  min-width:0;
  width:100%;
}

#tab-izdavastvo .tvz-pub-card__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

#tab-izdavastvo .tvz-pub-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:#1e3a8a;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

#tab-izdavastvo .tvz-pub-chip--croris{
  background:rgba(22,163,74,.12);
  color:#166534;
}

#tab-izdavastvo .tvz-muted{
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

#tab-izdavastvo .tvz-person-publication-item__body h3{
  margin:0;
  font-size:17px;
  line-height:1.35;
  word-break:break-word;
}

#tab-izdavastvo .tvz-person-publication-item__body h3 a{
  color:#0f172a;
  text-decoration:none;
}

#tab-izdavastvo .tvz-person-publication-item__body h3 a:hover{
  color:#1e3a8a;
}

#tab-izdavastvo .tvz-person-publication-item__body p{
  margin:0;
  color:#475569;
  font-size:14px;
  line-height:1.65;
}

#tab-izdavastvo .tvz-doc-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:2px;
}

#tab-izdavastvo .tvz-inline-link{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 2px;
  color:#1e3a8a;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

#tab-izdavastvo .tvz-inline-link:hover{
  color:#3b82f6;
}

#tab-izdavastvo [data-pub-empty]{
  margin-top:-6px;
}

@media (max-width: 991px){
  #tab-izdavastvo .tvz-person-publications-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  #tab-izdavastvo .tvz-pub-toolbar{
    padding:16px;
  }

  #tab-izdavastvo .tvz-pub-section{
    padding:18px;
  }

  #tab-izdavastvo .tvz-pub-section__head,
  #tab-izdavastvo .tvz-pub-type-group__head{
    flex-direction:column;
    align-items:flex-start;
  }

  #tab-izdavastvo .tvz-person-publication-item{
    grid-template-columns:1fr;
  }

  #tab-izdavastvo .tvz-person-publication-item__cover{
    width:100%;
    max-width:220px;
  }

  #tab-izdavastvo .tvz-person-publication-item__cover img{
    height:220px;
  }
}
/* =====================================================
   TVZ – SINGLE DJELATNIK PATCH
   Scoped CSS for profile layout + Izdavastvo tab only
===================================================== */

.tvz-layout--person-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}

.tvz-layout--person-detail .tvz-main,
.tvz-layout--person-detail .tvz-sidebar,
.tvz-layout--person-detail .tvz-tabs-shell,
.tvz-layout--person-detail .tvz-tab-content,
.tvz-layout--person-detail .tvz-content-card,
.tvz-layout--person-detail .tvz-content-card--wide,
.tvz-layout--person-detail .tvz-surface {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.tvz-layout--person-detail .tvz-tabs-shell {
  padding: 28px;
}

.tvz-layout--person-detail .tvz-tab-content {
  display: none;
}

.tvz-layout--person-detail .tvz-tab-content.active {
  display: block;
}

.tvz-layout--person-detail .tvz-tab-content[hidden] {
  display: none !important;
}

.tvz-layout--person-detail .tvz-person-profile {
  overflow: hidden;
}

.tvz-layout--person-detail .tvz-person-profile__grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.tvz-layout--person-detail .tvz-person-profile__photo {
  display: flex;
  justify-content: center;
}

.tvz-layout--person-detail .tvz-person-photo,
.tvz-layout--person-detail .tvz-person-profile__photo img {
  width: 180px;
  height: 180px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

.tvz-layout--person-detail .tvz-person-profile__meta {
  min-width: 0;
}

.tvz-layout--person-detail .tvz-person-profile__meta h1 {
  margin: 0;
  line-height: 1.15;
}

.tvz-layout--person-detail .tvz-person-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* =====================================================
   IZDAVASTVO TAB
===================================================== */

#tab-izdavastvo,
#tab-izdavastvo .tvz-content-card,
#tab-izdavastvo .tvz-content-card--wide,
#tab-izdavastvo .tvz-pub-shell,
#tab-izdavastvo .tvz-pub-shell * {
  box-sizing: border-box;
}

#tab-izdavastvo {
  width: 100%;
  max-width: 100%;
}

#tab-izdavastvo .tvz-content-card--wide {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

#tab-izdavastvo .tvz-pub-shell {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}

#tab-izdavastvo .tvz-pub-shell__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

#tab-izdavastvo .tvz-pub-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.8fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

#tab-izdavastvo .tvz-pub-filter-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

#tab-izdavastvo .tvz-pub-filter-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

#tab-izdavastvo .tvz-pub-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#tab-izdavastvo .tvz-pub-filter-chip {
  appearance: none;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: #fff;
  color: #1e3a8a;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

#tab-izdavastvo .tvz-pub-filter-chip:hover {
  border-color: rgba(30, 58, 138, 0.28);
  background: #f8fbff;
}

#tab-izdavastvo .tvz-pub-filter-chip.is-active {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  border-color: transparent;
}

#tab-izdavastvo .tvz-search,
#tab-izdavastvo .tvz-pub-year-filter {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  font-size: 14px;
}

#tab-izdavastvo .tvz-pub-section {
  display: grid;
  gap: 16px;
  width: 100%;
}

#tab-izdavastvo .tvz-pub-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

#tab-izdavastvo .tvz-pub-section__head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #1e3a8a;
}

#tab-izdavastvo .tvz-pub-section__total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-weight: 800;
  font-size: 14px;
}

#tab-izdavastvo .tvz-accordion--pub-group {
  width: 100%;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

#tab-izdavastvo .tvz-accordion--pub-group + .tvz-accordion--pub-group {
  margin-top: 14px;
}

#tab-izdavastvo .tvz-accordion--pub-group > .tvz-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  cursor: pointer;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-sem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-sem-left {
  min-width: 0;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-sem-right {
  flex: 0 0 auto;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-sem-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-acc-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-size: 22px;
  font-weight: 700;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-accordion-body {
  padding: 20px;
  background: #fff;
}

#tab-izdavastvo .tvz-accordion--pub-group .tvz-accordion-body[hidden] {
  display: none !important;
}

#tab-izdavastvo .tvz-accordion--pub-group.active > .tvz-accordion-body {
  display: block;
}

#tab-izdavastvo .tvz-person-publications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

#tab-izdavastvo .tvz-person-publication-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#tab-izdavastvo .tvz-person-publication-item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 58, 138, 0.24);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

#tab-izdavastvo .tvz-person-publication-item__cover {
  display: block;
  width: 110px;
  min-width: 110px;
  height: 148px;
  border-radius: 14px;
  overflow: hidden;
  background: #005baa;
}

#tab-izdavastvo .tvz-person-publication-item__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #005baa;
}

#tab-izdavastvo .tvz-person-publication-item__body {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

#tab-izdavastvo .tvz-pub-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#tab-izdavastvo .tvz-pub-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

#tab-izdavastvo .tvz-pub-chip--croris {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

#tab-izdavastvo .tvz-muted {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

#tab-izdavastvo .tvz-person-publication-item__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

#tab-izdavastvo .tvz-person-publication-item__body h3 a {
  color: #0f172a;
  text-decoration: none;
}

#tab-izdavastvo .tvz-person-publication-item__body h3 a:hover {
  color: #1e3a8a;
}

#tab-izdavastvo .tvz-person-publication-item__body p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

#tab-izdavastvo .tvz-doc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#tab-izdavastvo .tvz-inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

#tab-izdavastvo .tvz-inline-link:hover {
  color: #3b82f6;
}

#tab-izdavastvo [data-pub-empty] {
  margin-top: -4px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
  .tvz-layout--person-detail {
    grid-template-columns: 1fr;
  }

  .tvz-layout--person-detail .tvz-info-panel,
  .tvz-layout--person-detail .tvz-news-page__sidebar,
  .tvz-layout--person-detail .tvz-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 991px) {
  #tab-izdavastvo .tvz-pub-toolbar,
  #tab-izdavastvo .tvz-person-publications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tvz-layout--person-detail .tvz-person-profile__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tvz-layout--person-detail .tvz-person-contact-row {
    justify-content: center;
  }

  #tab-izdavastvo .tvz-accordion--pub-group > .tvz-accordion-toggle {
    padding: 16px;
  }

  #tab-izdavastvo .tvz-accordion--pub-group .tvz-sem-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #tab-izdavastvo .tvz-person-publication-item {
    grid-template-columns: 1fr;
  }

  #tab-izdavastvo .tvz-person-publication-item__cover {
    width: 100%;
    min-width: 0;
    max-width: 220px;
    height: 220px;
  }
}
/* =====================================================
   SINGLE DJELATNIK + IZDAVASTVO FIX
===================================================== */

.tvz-person-page .tvz-main,
.tvz-person-page .tvz-sidebar,
.tvz-person-page .tvz-content-card,
.tvz-person-page .tvz-tabs-shell,
.tvz-person-page .tvz-tab-content,
.tvz-person-page .tvz-person-profile {
  min-width: 0;
}

.tvz-person-page .tvz-tabs-shell {
  overflow: visible;
}

.tvz-person-page .tvz-tab-content {
  display: none !important;
}

.tvz-person-page .tvz-tab-content.active {
  display: block !important;
}

.tvz-person-page .tvz-sidebar-actions .tvz-tab-link.active,
.tvz-person-page .tvz-sidebar-actions .tvz-tab-link.tvz-quick-link--primary {
  color: #fff !important;
}

#tab-izdavastvo .tvz-pub-shell {
  display: grid;
  gap: 24px;
}

#tab-izdavastvo .tvz-pub-shell__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

#tab-izdavastvo .tvz-pub-toolbar {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(220px, 0.55fr);
  gap: 16px;
  align-items: end;
  padding: 20px;
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}

#tab-izdavastvo .tvz-pub-filter-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

#tab-izdavastvo .tvz-pub-filter-group--types {
  grid-column: 1 / -1;
}

#tab-izdavastvo .tvz-pub-filter-label {
  display: block;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

#tab-izdavastvo .tvz-pub-search-input,
#tab-izdavastvo .tvz-pub-year-filter {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  box-sizing: border-box;
}

#tab-izdavastvo .tvz-pub-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#tab-izdavastvo .tvz-pub-filter-chip {
  appearance: none;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: #fff;
  color: #1e3a8a;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all .2s ease;
}

#tab-izdavastvo .tvz-pub-filter-chip:hover {
  background: #f8fbff;
  border-color: rgba(30, 58, 138, 0.28);
}

#tab-izdavastvo .tvz-pub-filter-chip.is-active {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  border-color: transparent;
}

#tab-izdavastvo .tvz-pub-section {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 20px;
  background: #fff;
}

#tab-izdavastvo .tvz-pub-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

#tab-izdavastvo .tvz-pub-section__head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #1e3a8a;
}

#tab-izdavastvo .tvz-pub-section__total,
#tab-izdavastvo .tvz-pub-accordion__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-weight: 800;
  font-size: 13px;
}

#tab-izdavastvo .tvz-pub-accordion {
  margin: 0;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

#tab-izdavastvo .tvz-pub-accordion__toggle {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: #fff;
  cursor: pointer;
}

#tab-izdavastvo .tvz-pub-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

#tab-izdavastvo .tvz-pub-accordion__title {
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  text-align: left;
}

#tab-izdavastvo .tvz-pub-accordion__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

#tab-izdavastvo .tvz-pub-accordion .tvz-acc-icon {
  width: 30px;
  height: 30px;
  font-size: 20px;
}

#tab-izdavastvo .tvz-pub-accordion .tvz-accordion-body {
  display: none;
  padding: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

#tab-izdavastvo .tvz-pub-accordion.active .tvz-accordion-body {
  display: block;
}

#tab-izdavastvo .tvz-person-publications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

#tab-izdavastvo .tvz-person-publication-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #fff;
}

#tab-izdavastvo .tvz-person-publication-item__cover {
  display: block;
  width: 110px;
  min-height: 148px;
  border-radius: 14px;
  overflow: hidden;
  background: #005baa;
}

#tab-izdavastvo .tvz-person-publication-item__cover img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: contain;
  background: #005baa;
}

#tab-izdavastvo .tvz-person-publication-item__body {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

#tab-izdavastvo .tvz-pub-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#tab-izdavastvo .tvz-pub-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

#tab-izdavastvo .tvz-pub-chip--croris {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

#tab-izdavastvo .tvz-muted {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

#tab-izdavastvo .tvz-person-publication-item__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
}

#tab-izdavastvo .tvz-person-publication-item__body p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

#tab-izdavastvo .tvz-doc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#tab-izdavastvo .tvz-inline-link {
  color: #1e3a8a;
  font-weight: 700;
  text-decoration: none;
}

#tab-izdavastvo .tvz-inline-link:hover {
  color: #3b82f6;
}

@media (max-width: 991px) {
  #tab-izdavastvo .tvz-pub-toolbar {
    grid-template-columns: 1fr;
  }

  #tab-izdavastvo .tvz-person-publications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #tab-izdavastvo .tvz-pub-toolbar,
  #tab-izdavastvo .tvz-pub-section {
    padding: 18px;
  }

  #tab-izdavastvo .tvz-pub-section__head,
  #tab-izdavastvo .tvz-pub-accordion__head {
    align-items: flex-start;
  }

  #tab-izdavastvo .tvz-person-publication-item {
    grid-template-columns: 1fr;
  }

  #tab-izdavastvo .tvz-person-publication-item__cover {
    width: 100%;
    max-width: 220px;
  }

  #tab-izdavastvo .tvz-person-publication-item__cover img {
    height: 220px;
  }
}
/* SINGLE DJELATNIK - izdavastvo accordion fix */
.tvz-layout--person-detail .tvz-pub-accordion > .tvz-pub-accordion__body{
  display:none;
}

.tvz-layout--person-detail .tvz-pub-accordion[open] > .tvz-pub-accordion__body{
  display:block !important;
}

.tvz-layout--person-detail .tvz-pub-accordion > summary{
  list-style:none;
}

.tvz-layout--person-detail .tvz-pub-accordion > summary::-webkit-details-marker{
  display:none;
}
/* =====================================================
   SINGLE DJELATNIK – IZDAVASTVO ACCORDION HARD FIX
===================================================== */

/* reset samo za accordion u tabu izdavaštvo */
body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion{
  width:100%;
  display:block;
}

/* summary */
body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion > summary,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__toggle{
  list-style:none;
  cursor:pointer;
}

body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion > summary::-webkit-details-marker,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__toggle::-webkit-details-marker{
  display:none;
}

/* zatvoreno stanje */
body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion > .tvz-accordion-body,
body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion > .tvz-pub-accordion__body,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion > .tvz-accordion-body,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion > .tvz-pub-accordion__body{
  display:none !important;
  height:auto !important;
  max-height:none !important;
  overflow:visible !important;
  opacity:1 !important;
  visibility:visible !important;
  padding-top:18px;
}

/* otvoreno stanje preko native details */
body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion[open] > .tvz-accordion-body,
body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion[open] > .tvz-pub-accordion__body{
  display:block !important;
}

/* fallback ako negdje JS dodaje active umjesto open */
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion.active > .tvz-accordion-body,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion.active > .tvz-pub-accordion__body{
  display:block !important;
}

/* ikona */
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion .tvz-acc-icon{
  transition:transform .2s ease;
}

body.single-djelatnik #tab-izdavastvo details.tvz-pub-accordion[open] .tvz-acc-icon,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion.active .tvz-acc-icon{
  transform:rotate(45deg);
}

/* =====================================================
   SINGLE DJELATNIK – TABS + IZDAVASTVO ACCORDION FIX
===================================================== */

body.single-djelatnik .tvz-layout--person-detail .tvz-main,
body.single-djelatnik .tvz-layout--person-detail .tvz-sidebar,
body.single-djelatnik .tvz-layout--person-detail .tvz-tabs-shell,
body.single-djelatnik .tvz-layout--person-detail .tvz-tab-content,
body.single-djelatnik .tvz-layout--person-detail .tvz-content-card,
body.single-djelatnik .tvz-layout--person-detail .tvz-person-profile,
body.single-djelatnik .tvz-layout--person-detail .tvz-pub-shell,
body.single-djelatnik .tvz-layout--person-detail .tvz-pub-section {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-tab-content {
  display: none !important;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-tab-content.active,
body.single-djelatnik .tvz-layout--person-detail .tvz-tab-content.is-active {
  display: block !important;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-tab-content[hidden] {
  display: none !important;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-sidebar-actions .tvz-tab-link.tvz-quick-link--primary {
  color: #fff !important;
}

/* profil */
body.single-djelatnik .tvz-layout--person-detail .tvz-person-profile__grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-person-profile__photo {
  display: flex;
  justify-content: center;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-person-photo,
body.single-djelatnik .tvz-layout--person-detail .tvz-person-profile__photo img {
  width: 180px;
  height: 180px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

body.single-djelatnik .tvz-layout--person-detail .tvz-person-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* izdavastvo wrapper */
body.single-djelatnik #tab-izdavastvo .tvz-pub-shell {
  display: grid;
  gap: 24px;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-shell__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-section {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(30, 58, 138, 0.10);
  border-radius: 20px;
  background: #fff;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-section__head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #1e3a8a;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-section__total,
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-weight: 800;
  font-size: 13px;
}

/* accordion */
body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion {
  margin: 0;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion + .tvz-pub-accordion {
  margin-top: 14px;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion > .tvz-accordion-toggle {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.05) 0%, rgba(59,130,246,.02) 100%);
  cursor: pointer;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__title {
  min-width: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__body {
  display: none !important;
  padding: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: #fff;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion.active > .tvz-pub-accordion__body {
  display: block !important;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion .tvz-acc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

/* publikacije grid */
body.single-djelatnik #tab-izdavastvo .tvz-person-publications-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 58, 138, 0.24);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__cover {
  display: block;
  width: 110px;
  min-height: 148px;
  border-radius: 14px;
  overflow: hidden;
  background: #005baa;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__cover img {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: contain;
  background: #005baa;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__body {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  word-break: break-word;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__body h3 a {
  color: #0f172a;
  text-decoration: none;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__body h3 a:hover {
  color: #1e3a8a;
}

body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__body p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.single-djelatnik #tab-izdavastvo .tvz-pub-chip--croris {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

body.single-djelatnik #tab-izdavastvo .tvz-muted {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

body.single-djelatnik #tab-izdavastvo .tvz-doc-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.single-djelatnik #tab-izdavastvo .tvz-inline-link {
  color: #1e3a8a;
  font-weight: 700;
  text-decoration: none;
}

body.single-djelatnik #tab-izdavastvo .tvz-inline-link:hover {
  color: #3b82f6;
}

@media (max-width: 1100px) {
  body.single-djelatnik .tvz-layout--person-detail {
    grid-template-columns: 1fr;
  }

  body.single-djelatnik .tvz-layout--person-detail .tvz-info-panel,
  body.single-djelatnik .tvz-layout--person-detail .tvz-sidebar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  body.single-djelatnik #tab-izdavastvo .tvz-person-publications-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.single-djelatnik .tvz-layout--person-detail .tvz-person-profile__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.single-djelatnik .tvz-layout--person-detail .tvz-person-contact-row {
    justify-content: center;
  }

  body.single-djelatnik #tab-izdavastvo .tvz-pub-accordion__head {
    align-items: flex-start;
  }

  body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item {
    grid-template-columns: 1fr;
  }

  body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__cover {
    width: 100%;
    max-width: 220px;
  }

  body.single-djelatnik #tab-izdavastvo .tvz-person-publication-item__cover img {
    height: 220px;
  }
}
/* =====================================================
   TVZ NATJEČAJI / ZAPOŠLJAVANJE
===================================================== */

.tvz-jobs-page{
  display:grid;
  gap:36px;
  padding:40px 0 60px;
}

.tvz-jobs-section{
  display:grid;
  gap:18px;
}

.tvz-jobs-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:44px;
  min-height:44px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
  font-weight:800;
}

.tvz-job-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.tvz-job-card{
  display:grid;
  gap:16px;
  padding:24px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.05);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tvz-job-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(15,23,42,.10);
  border-color:rgba(30,58,138,.22);
}

.tvz-job-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.tvz-job-card__status{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.tvz-job-card__status.is-open{
  background:rgba(22,163,74,.12);
  color:#166534;
}

.tvz-job-card__status.is-closed{
  background:rgba(148,163,184,.16);
  color:#334155;
}

.tvz-job-card__unit{
  color:#64748b;
  font-size:14px;
  font-weight:600;
}

.tvz-job-card__title{
  margin:0;
  font-size:24px;
  line-height:1.2;
}

.tvz-job-card__title a{
  color:var(--tvz-blue);
  text-decoration:none;
}

.tvz-job-card__meta{
  display:grid;
  gap:8px;
  color:#475569;
  font-size:14px;
}

.tvz-job-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.tvz-job-points{
  display:grid;
  gap:20px;
}

.tvz-job-point{
  display:grid;
  gap:18px;
  padding:22px;
  border:1px solid rgba(30,58,138,.10);
  border-radius:20px;
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}

.tvz-job-point__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.tvz-job-point__head h3{
  margin:0;
  color:var(--tvz-blue);
  font-size:22px;
  line-height:1.2;
}

.tvz-job-point__form{
  margin-top:4px;
  padding-top:18px;
  border-top:1px solid rgba(148,163,184,.18);
}

/* =====================================================
   FORMA PRIJAVE - SHORTCODE VISUAL
===================================================== */

.tvz-prijava-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:24px;
  align-items:start;
}

.tvz-prijava-main,
.tvz-prijava-side{
  min-width:0;
}

.tvz-prijava-card{
  padding:24px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.04);
}

.tvz-prijava-card + .tvz-prijava-card{
  margin-top:18px;
}

.tvz-prijava-title{
  margin:0 0 8px;
  color:var(--tvz-blue);
  font-size:22px;
  line-height:1.2;
}

.tvz-prijava-lead{
  margin:0;
  color:#475569;
  line-height:1.65;
}

.tvz-prijava-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.tvz-prijava-field{
  display:grid;
  gap:8px;
}

.tvz-prijava-field--full{
  grid-column:1 / -1;
}

.tvz-prijava-field label{
  font-size:14px;
  font-weight:700;
  color:#0f172a;
}

.tvz-prijava-field input,
.tvz-prijava-field textarea,
.tvz-prijava-field select{
  width:100%;
  min-height:50px;
  padding:12px 14px;
  border:1px solid #d8e1ee;
  border-radius:14px;
  background:#fff;
  color:#0f172a;
  font:inherit;
  box-sizing:border-box;
}

.tvz-prijava-field textarea{
  min-height:130px;
  resize:vertical;
}

.tvz-prijava-field input:focus,
.tvz-prijava-field textarea:focus,
.tvz-prijava-field select:focus{
  outline:none;
  border-color:rgba(30,58,138,.40);
  box-shadow:0 0 0 4px rgba(59,130,246,.10);
}

.tvz-prijava-help{
  font-size:13px;
  color:#64748b;
  line-height:1.5;
}

.tvz-prijava-upload{
  padding:16px;
  border:1px dashed rgba(30,58,138,.24);
  border-radius:16px;
  background:#f8fbff;
}

.tvz-prijava-alert{
  padding:14px 16px;
  border-radius:16px;
  font-size:14px;
  line-height:1.6;
}

.tvz-prijava-alert--info{
  background:rgba(30,58,138,.08);
  color:#1e3a8a;
}

.tvz-prijava-alert--warn{
  background:rgba(249,115,22,.12);
  color:#9a3412;
}

.tvz-prijava-alert--success{
  background:rgba(22,163,74,.12);
  color:#166534;
}

.tvz-prijava-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.tvz-prijava-side .tvz-sidebar-card{
  position:sticky;
  top:120px;
}

.tvz-prijava-checklist{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.tvz-prijava-checklist li{
  padding-left:20px;
  position:relative;
  color:#475569;
  line-height:1.55;
}

.tvz-prijava-checklist li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--tvz-blue);
  font-weight:800;
}

/* uploader input */
.tvz-prijava-field input[type="file"]{
  padding:10px;
  background:#fff;
}

/* status / auth box */
.tvz-prijava-auth-box{
  display:grid;
  gap:14px;
  padding:18px;
  border-radius:18px;
  background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
  border:1px solid rgba(30,58,138,.10);
}

@media (max-width: 1100px){
  .tvz-prijava-shell{
    grid-template-columns:1fr;
  }

  .tvz-prijava-side .tvz-sidebar-card{
    position:relative;
    top:auto;
  }
}

@media (max-width: 900px){
  .tvz-job-grid,
  .tvz-prijava-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .tvz-job-card,
  .tvz-job-point,
  .tvz-prijava-card{
    padding:18px;
  }

  .tvz-job-card__title{
    font-size:20px;
  }

  .tvz-job-point__head h3,
  .tvz-prijava-title{
    font-size:20px;
  }
}
.tvz-jobs-page{
  display:grid;
  gap:36px;
  padding:36px 0 10px;
}

.tvz-jobs-section{
  display:grid;
  gap:18px;
}

.tvz-jobs-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
  font-weight:800;
}

.tvz-jobs-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.tvz-job-card{
  display:grid;
  grid-template-columns:160px minmax(0,1fr);
  gap:18px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
}

.tvz-job-card__thumb,
.tvz-job-card__thumb img{
  display:block;
  width:100%;
  height:100%;
}

.tvz-job-card__thumb img{
  min-height:100%;
  object-fit:cover;
}

.tvz-job-card__body{
  padding:20px 20px 20px 0;
  display:grid;
  align-content:start;
  gap:12px;
}

.tvz-job-card__body h3{
  margin:0;
  font-size:1.2rem;
  line-height:1.25;
}

.tvz-job-card__body h3 a{
  color:var(--tvz-blue);
  text-decoration:none;
}

.tvz-job-card__body p{
  margin:0;
  color:#475569;
  line-height:1.65;
}

.tvz-job-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.tvz-job-badge,
.tvz-job-date{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
}

.tvz-job-badge--active{
  background:rgba(22,163,74,.12);
  color:#166534;
}

.tvz-job-badge--closed{
  background:rgba(148,163,184,.18);
  color:#334155;
}

.tvz-job-date{
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
}

.tvz-job-card--closed{
  opacity:.94;
}

@media (max-width: 991px){
  .tvz-jobs-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 680px){
  .tvz-job-card{
    grid-template-columns:1fr;
  }

  .tvz-job-card__thumb img{
    height:220px;
  }

  .tvz-job-card__body{
    padding:0 18px 18px;
  }
}
.tvz-jobs-page{
  display:grid;
  gap:36px;
  padding:36px 0 12px;
}

.tvz-jobs-section{
  display:grid;
  gap:18px;
}

.tvz-jobs-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
  font-weight:800;
}

.tvz-jobs-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.tvz-job-card{
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:18px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.06);
}

.tvz-job-card__thumb,
.tvz-job-card__thumb img{
  display:block;
  width:100%;
  height:100%;
}

.tvz-job-card__thumb img{
  object-fit:cover;
  min-height:100%;
}

.tvz-job-card__body{
  display:grid;
  align-content:start;
  gap:12px;
  padding:20px 20px 20px 0;
}

.tvz-job-card__body h3{
  margin:0;
  font-size:1.2rem;
  line-height:1.25;
}

.tvz-job-card__body h3 a{
  color:var(--tvz-blue);
  text-decoration:none;
}

.tvz-job-card__body p{
  margin:0;
  color:#475569;
  line-height:1.65;
}

.tvz-job-card__meta,
.tvz-job-header-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  margin-bottom:12px;
}

.tvz-job-badge,
.tvz-job-date{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
}

.tvz-job-badge--active{
  background:rgba(22,163,74,.12);
  color:#166534;
}

.tvz-job-badge--closed{
  background:rgba(148,163,184,.18);
  color:#334155;
}

.tvz-job-date{
  background:rgba(30,58,138,.08);
  color:var(--tvz-blue);
}

.tvz-job-card--closed{
  opacity:.95;
}

.tvz-jobs-accordion-list{
  display:grid;
  gap:14px;
}

.tvz-jobs-accordion{
  border:1px solid rgba(30,58,138,.12);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.tvz-jobs-accordion > summary{
  list-style:none;
}

.tvz-jobs-accordion > summary::-webkit-details-marker{
  display:none;
}

.tvz-jobs-accordion .tvz-accordion-toggle{
  width:100%;
  cursor:pointer;
}

.tvz-jobs-accordion .tvz-acc-icon{
  transition:transform .2s ease;
}

.tvz-jobs-accordion[open] .tvz-acc-icon{
  transform:rotate(45deg);
}

.tvz-job-inline-meta{
  margin:14px 0 0;
  color:#475569;
}

.tvz-job-actions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width: 991px){
  .tvz-jobs-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 680px){
  .tvz-job-card{
    grid-template-columns:1fr;
  }

  .tvz-job-card__thumb img{
    height:220px;
  }

  .tvz-job-card__body{
    padding:0 18px 18px;
  }
}
.tvzn-accordion-list{
  display:grid;
  gap:16px;
}

.tvzn-accordion-item{
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
}

.tvzn-accordion-item > summary{
  list-style:none;
  cursor:pointer;
}

.tvzn-accordion-item > summary::-webkit-details-marker{
  display:none;
}

.tvzn-accordion-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px 24px;
}

.tvzn-accordion-summary__left h3{
  margin:6px 0 0;
  font-size:1.2rem;
  line-height:1.3;
}

.tvzn-accordion-summary__right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.tvzn-accordion-icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#eef4ff;
  color:#0b5bd3;
  font-size:22px;
  font-weight:700;
  transition:transform .2s ease;
}

.tvzn-accordion-item[open] .tvzn-accordion-icon{
  transform:rotate(45deg);
}

.tvzn-accordion-content{
  padding:0 24px 24px;
  border-top:1px solid rgba(15,23,42,.08);
}

.tvzn-point-actions{
  margin-top:18px;
}

.tvzn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

.tvzn-btn--primary{
  background:#0b5bd3;
  color:#fff;
}

@media (max-width: 768px){
  .tvzn-accordion-summary{
    flex-direction:column;
    align-items:flex-start;
  }

  .tvzn-accordion-summary__right{
    width:100%;
    justify-content:space-between;
  }
}
.tvzn-accordion-list{
  display:grid;
  gap:16px;
}

.tvzn-accordion-item{
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.tvzn-accordion-item > summary{
  list-style:none;
  cursor:pointer;
}

.tvzn-accordion-item > summary::-webkit-details-marker{
  display:none;
}

.tvzn-accordion-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:22px 24px;
}

.tvzn-accordion-summary__left{
  min-width:0;
}

.tvzn-accordion-summary__left h3{
  margin:6px 0 0;
  font-size:1.2rem;
  line-height:1.3;
}

.tvzn-accordion-summary__right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.tvzn-accordion-icon{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#eef4ff;
  color:#0b5bd3;
  font-size:22px;
  font-weight:700;
  transition:transform .2s ease;
}

.tvzn-accordion-item[open] .tvzn-accordion-icon{
  transform:rotate(45deg);
}

.tvzn-accordion-content{
  padding:0 24px 24px;
  border-top:1px solid rgba(15,23,42,.08);
}

.tvzn-point-actions{
  margin-top:18px;
}

.tvzn-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:none;
}

.tvzn-btn--primary{
  background:#0b5bd3;
  color:#fff;
}

.tvzn-btn--primary:hover{
  background:#0949a8;
  color:#fff;
}

@media (max-width: 768px){
  .tvzn-accordion-summary{
    flex-direction:column;
    align-items:flex-start;
  }

  .tvzn-accordion-summary__right{
    width:100%;
    justify-content:space-between;
  }
}
.tvz-jobs-accordion-list{
  display:grid;
  gap:18px;
}

.tvz-job-accordion{
  border:1px solid rgba(15,23,42,.10);
  border-radius:20px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.tvz-job-accordion__summary{
  list-style:none;
  cursor:pointer;
  padding:24px 28px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.tvz-job-accordion__summary::-webkit-details-marker{
  display:none;
}

.tvz-job-accordion__summary-main{
  flex:1 1 auto;
  min-width:0;
}

.tvz-job-accordion__title{
  margin:10px 0 8px;
  font-size:24px;
  line-height:1.25;
}

.tvz-job-accordion__excerpt{
  margin:0;
  color:#475569;
}

.tvz-job-accordion__icon{
  width:42px;
  height:42px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:700;
  background:#eff6ff;
  color:#005baa;
  flex:0 0 auto;
  transition:transform .2s ease, background .2s ease;
}

.tvz-job-accordion[open] .tvz-job-accordion__icon{
  transform:rotate(45deg);
  background:#dbeafe;
}

.tvz-job-accordion__body{
  padding:0 28px 28px;
}

.tvz-job-accordion__body-inner{
  border-top:1px solid rgba(15,23,42,.08);
  padding-top:22px;
}

.tvz-job-points{
  display:grid;
  gap:16px;
}

.tvz-job-point-card{
  border:1px solid rgba(15,23,42,.08);
  border-radius:16px;
  padding:18px;
  background:#f8fafc;
}

.tvz-job-point-card__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:12px;
}

.tvz-job-point-card__eyebrow{
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#005baa;
  margin-bottom:6px;
}

.tvz-job-point-card__title{
  margin:0;
  font-size:18px;
  line-height:1.35;
}

.tvz-job-point-card__title a{
  color:inherit;
  text-decoration:none;
}

.tvz-job-point-card__title a:hover{
  color:#005baa;
}

.tvz-job-point-card__meta{
  display:grid;
  gap:8px;
  color:#475569;
  font-size:14px;
  margin-bottom:14px;
}

.tvz-job-point-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tvz-job-accordion__footer{
  margin-top:18px;
  display:flex;
  justify-content:flex-end;
}

@media (max-width: 768px){
  .tvz-job-accordion__summary{
    padding:20px;
  }

  .tvz-job-accordion__body{
    padding:0 20px 20px;
  }

  .tvz-job-accordion__title{
    font-size:20px;
  }

  .tvz-job-point-card__head{
    flex-direction:column;
  }
}
/* === Round 5: logo, global search, landing sidebars, publications, projects === */
main#main-content{display:block;}
.tvz-site-branding__media{display:flex;align-items:center;justify-content:center;min-width:72px;}
.tvz-site-branding__custom-logo .custom-logo-link{display:flex;align-items:center;}
.tvz-site-branding__custom-logo img{max-height:64px;width:auto;display:block;}
.tvz-header-main__inner{gap:20px;}
.tvz-header-search{flex:0 1 420px;min-width:240px;}
.tvz-searchform{display:flex;align-items:center;gap:10px;background:#fff;border:1px solid rgba(148,163,184,.35);border-radius:999px;padding:8px 10px;box-shadow:0 12px 34px rgba(15,23,42,.08);}
.tvz-searchform__input{flex:1 1 auto;border:0;background:transparent;padding:6px 8px;outline:none;font-size:.96rem;color:#0f172a;min-width:0;}
.tvz-searchform__button{border:0;border-radius:999px;background:var(--tvz-blue,#1d4ed8);color:#fff;padding:10px 14px;font-weight:700;cursor:pointer;}
.tvz-searchform__button:hover{filter:brightness(.96);}

.tvz-landing-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:24px;align-items:start;margin-block:28px;}
.tvz-landing-layout__main{min-width:0;display:flex;flex-direction:column;gap:24px;}
.tvz-landing-sidebar{position:sticky;top:24px;}
.tvz-landing-links{display:flex;flex-direction:column;gap:10px;margin-top:16px;}
.tvz-landing-link{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-radius:14px;background:#f8fafc;border:1px solid rgba(148,163,184,.24);text-decoration:none;color:#0f172a;font-weight:600;transition:transform .2s ease, box-shadow .2s ease,border-color .2s ease;}
.tvz-landing-link:hover{transform:translateY(-1px);box-shadow:0 14px 26px rgba(15,23,42,.08);border-color:rgba(29,78,216,.24);}

.tvz-search-page{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:24px;align-items:start;}
.tvz-search-page__main{display:flex;flex-direction:column;gap:18px;}
.tvz-search-results{display:flex;flex-direction:column;gap:14px;}
.tvz-search-result{padding:18px 20px;border-radius:20px;}
.tvz-search-result__meta{display:flex;flex-wrap:wrap;gap:10px;font-size:.84rem;color:#64748b;margin-bottom:10px;}
.tvz-search-result h3{margin:0 0 10px;font-size:1.2rem;line-height:1.25;}
.tvz-search-result p{margin:0;color:#334155;line-height:1.7;}

.tvz-pub-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.tvz-pub-card{display:flex;flex-direction:column;overflow:hidden;border-radius:22px;}
.tvz-pub-card__cover img{display:block;width:100%;height:220px;object-fit:cover;}
.tvz-pub-card__body{padding:18px 20px;display:flex;flex-direction:column;gap:10px;}
.tvz-pub-card__meta,.tvz-project-card__meta,.tvz-pub-compact__meta{display:flex;flex-wrap:wrap;gap:8px;font-size:.8rem;color:#64748b;text-transform:uppercase;letter-spacing:.04em;}
.tvz-pub-card__authors,.tvz-pub-compact__authors{font-size:.95rem;color:#475569;line-height:1.6;}
.tvz-pub-card h3,.tvz-pub-compact h3,.tvz-project-card h3{margin:0;font-size:1.18rem;line-height:1.3;}
.tvz-pub-card p,.tvz-project-card p,.tvz-pub-compact p{margin:0;color:#334155;line-height:1.7;}
.tvz-pub-card__actions,.tvz-pub-journal__actions,.tvz-project-card__actions,.tvz-pub-compact__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:6px;}
.tvz-pub-compact-list{display:flex;flex-direction:column;gap:14px;}
.tvz-pub-compact{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;padding:18px 20px;border-radius:20px;align-items:start;}
.tvz-pub-compact__details{font-size:.9rem;color:#64748b;line-height:1.5;}
.tvz-pub-toolbar{padding:18px;border-radius:22px;}
.tvz-pub-filters{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;}
.tvz-pub-field{display:flex;flex-direction:column;gap:6px;font-weight:600;color:#0f172a;}
.tvz-pub-field input,.tvz-pub-field select{width:100%;border:1px solid rgba(148,163,184,.36);border-radius:14px;padding:12px 14px;background:#fff;}
.tvz-pub-journal{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:22px 24px;border-radius:22px;}

.tvz-project-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;}
.tvz-project-card{display:flex;flex-direction:column;overflow:hidden;border-radius:22px;}
.tvz-project-card__media img{display:block;width:100%;height:240px;object-fit:cover;}
.tvz-project-card__body{padding:20px;display:flex;flex-direction:column;gap:12px;}
.tvz-project-single{margin-block:28px 48px;}
.tvz-project-secondary-image{overflow:hidden;border-radius:24px;}
.tvz-project-secondary-image img{display:block;width:100%;max-height:460px;object-fit:cover;}

.tvz-site-footer__brandlink .tvz-site-branding__custom-logo img{max-height:56px;}

@media (max-width: 1180px){
  .tvz-header-main__inner{flex-wrap:wrap;}
  .tvz-header-search{order:3;flex:1 1 100%;}
}
@media (max-width: 980px){
  .tvz-landing-layout,.tvz-search-page{grid-template-columns:1fr;}
  .tvz-landing-sidebar{position:static;}
  .tvz-pub-grid,.tvz-project-grid{grid-template-columns:1fr;}
  .tvz-pub-filters{grid-template-columns:1fr 1fr;}
}
@media (max-width: 767px){
  .tvz-header-search{display:none;}
  .tvz-pub-compact{grid-template-columns:1fr;}
  .tvz-pub-filters{grid-template-columns:1fr;}
  .tvz-pub-journal{flex-direction:column;align-items:flex-start;}
}
.tvz-site-logo-img{max-height:64px;width:auto;display:block;}

/* === Round 14: force study landing grids === */
.tvz-landing-layout .tvz-feature-link-grid.tvz-feature-link-grid--two{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:20px !important;
  width:100%;
}

.tvz-landing-layout .tvz-study-grid-landing.tvz-study-grid-landing--four{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
  width:100%;
  align-items:stretch;
}

.tvz-landing-layout .tvz-study-grid-landing.tvz-study-grid-landing--four > *{
  min-width:0;
}

.tvz-landing-layout .tvz-study-grid-landing.tvz-study-grid-landing--four .tvz-study-tile{
  height:100%;
}

@media (max-width: 1200px){
  .tvz-landing-layout .tvz-study-grid-landing.tvz-study-grid-landing--four{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  }
}

@media (max-width: 900px){
  .tvz-landing-layout .tvz-feature-link-grid.tvz-feature-link-grid--two{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .tvz-landing-layout .tvz-study-grid-landing.tvz-study-grid-landing--four{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width: 640px){
  .tvz-landing-layout .tvz-feature-link-grid.tvz-feature-link-grid--two,
  .tvz-landing-layout .tvz-study-grid-landing.tvz-study-grid-landing--four{
    grid-template-columns:1fr !important;
  }
}

/* === FINAL STABILITY OVERRIDES: landing cards, studies, updates, publications === */
.tvz-home-intro{
  display:grid !important;
  grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr) !important;
  gap:24px !important;
  align-items:stretch;
}
.tvz-home-hero-card,
.tvz-home-metrics{padding:24px !important;}
.tvz-home-metrics{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important;align-content:start;}
.tvz-home-metric{display:flex !important;flex-direction:column;justify-content:center;min-height:112px !important;text-decoration:none;color:inherit;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);padding:18px 16px;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;}
.tvz-home-metric:hover{transform:translateY(-3px);box-shadow:0 18px 32px rgba(15,23,42,.08);border-color:rgba(0,91,170,.22);}
.tvz-home-metric strong{display:block;font-size:32px;line-height:1;color:var(--tvz-blue,#005baa);margin-bottom:8px;}
.tvz-home-metric span{display:block;font-weight:700;color:#0f172a;}

.tvz-home-grid,
.tvz-home-grid--four,
.tvz-home-grid--three,
.tvz-home-grid--updates{display:grid !important;gap:18px !important;align-items:stretch;}
.tvz-home-grid{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
.tvz-home-grid--four,
.tvz-home-grid--updates{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
.tvz-home-grid--three{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
.tvz-home-secondary-grid{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:22px !important;align-items:start;}

.tvz-home-card{display:flex !important;flex-direction:column;min-height:0 !important;padding:0 !important;overflow:hidden;border:1px solid rgba(15,23,42,.08);border-radius:20px;background:#fff;box-shadow:0 14px 30px rgba(15,23,42,.05);text-decoration:none;color:inherit;position:relative;}
.tvz-home-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--card-accent,var(--tvz-blue,#005baa));border-radius:20px 0 0 20px;}
.tvz-home-card__thumb{display:block;overflow:hidden;aspect-ratio:16/9;background:#e2e8f0;}
.tvz-home-card__thumb img{display:block;width:100%;height:100%;object-fit:cover;}
.tvz-home-card__body{padding:14px 16px 16px 18px;display:flex;flex-direction:column;gap:8px;}
.tvz-home-card h3{margin:0;font-size:1rem;line-height:1.3;color:#0f172a;}
.tvz-home-card p{margin:0;color:#475569;font-size:.92rem;line-height:1.45;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-home-card__meta{display:flex;flex-wrap:wrap;gap:8px;font-size:.78rem;text-transform:uppercase;letter-spacing:.03em;color:#64748b;}
.tvz-home-card--department{--card-accent:#1d4ed8;}
.tvz-home-card--program{--card-accent:#0ea5e9;}
.tvz-home-card--international{--card-accent:#f97316;}
.tvz-home-card--news{--card-accent:#005baa;}

.tvz-study-landing-cards,
.tvz-study-landing-cards--four,
.tvz-study-landing-cards--org,
.tvz-feature-link-grid{display:grid !important;gap:18px !important;align-items:stretch;}
.tvz-study-landing-cards{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
.tvz-study-landing-cards--four{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}
.tvz-feature-link-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.tvz-feature-link-grid--two{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
.tvz-feature-link-grid--three{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
.tvz-feature-link-grid--four{grid-template-columns:repeat(4,minmax(0,1fr)) !important;}

.tvz-feature-link-card{display:flex !important;min-height:152px !important;overflow:hidden;border-radius:20px;background:#fff;border:1px solid rgba(15,23,42,.08);box-shadow:0 14px 30px rgba(15,23,42,.05);text-decoration:none;color:inherit;position:relative;}
.tvz-feature-link-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--card-accent,var(--tvz-blue,#005baa));border-radius:20px 0 0 20px;}
.tvz-feature-link-card__thumb{flex:0 0 34%;max-width:34%;min-height:152px;background:#e2e8f0;overflow:hidden;}
.tvz-feature-link-card__thumb img{display:block;width:100%;height:100%;object-fit:cover;}
.tvz-feature-link-card__body{padding:16px 18px 16px 20px;display:flex;flex-direction:column;gap:8px;justify-content:center;min-width:0;}
.tvz-feature-link-card__eyebrow{font-size:.74rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#64748b;}
.tvz-feature-link-card h3{margin:0;font-size:1.08rem;line-height:1.2;color:#0f172a;}
.tvz-feature-link-card p{margin:0;color:#475569;font-size:.92rem;line-height:1.45;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-feature-link-card--undergrad{--card-accent:#16a34a;}
.tvz-feature-link-card--graduate{--card-accent:#f97316;}
.tvz-feature-link-card--office{--card-accent:#2563eb;}
.tvz-feature-link-card--service{--card-accent:#0f766e;}
.tvz-feature-link-card--document{--card-accent:#475569;}
.tvz-feature-link-card--competition{--card-accent:#c2410c;}
.tvz-feature-link-card--project{--card-accent:#1d4ed8;}
.tvz-feature-link-card--project-archive{--card-accent:#64748b;}
.tvz-feature-link-card--program-net{--card-accent:#0ea5e9;}
.tvz-feature-link-card--program-vaucer{--card-accent:#f97316;}
.tvz-feature-link-card--program-internal{--card-accent:#16a34a;}
.tvz-feature-link-card--publications{--card-accent:#005baa;}
.tvz-feature-link-card--news{--card-accent:#005baa;}

.tvz-study-grid,
.tvz-study-grid--archive,
.tvz-study-grid-landing,
.tvz-study-grid-landing--four{display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:18px !important;align-items:stretch;width:100%;}
.tvz-study-tile{display:flex !important;flex-direction:column;min-height:0 !important;height:100%;padding:0 !important;overflow:hidden;border-radius:20px;background:#fff;border:1px solid rgba(15,23,42,.08);box-shadow:0 14px 30px rgba(15,23,42,.05);text-decoration:none;color:inherit;position:relative;}
.tvz-study-tile::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--card-accent,var(--tvz-blue,#005baa));border-radius:20px 0 0 20px;z-index:2;}
.tvz-study-tile--undergraduate{--card-accent:#16a34a;}
.tvz-study-tile--graduate{--card-accent:#f97316;}
.tvz-study-tile > img{display:block !important;width:100% !important;height:132px !important;object-fit:cover !important;background:#e2e8f0;}
.tvz-study-tile .tvz-study-overlay{display:none !important;}
.tvz-study-content{position:relative !important;padding:14px 16px 16px 18px !important;color:#0f172a !important;display:flex;flex-direction:column;gap:10px;flex:1 1 auto;}
.tvz-study-content h3{margin:0 !important;font-size:1.02rem !important;line-height:1.25 !important;color:#0f172a !important;}
.tvz-study-card__dept{font-size:.84rem;font-weight:700;color:#475569;}
.tvz-study-meta{display:flex !important;flex-wrap:wrap !important;gap:8px !important;}
.tvz-study-meta span{display:inline-flex;padding:6px 10px;border-radius:999px;background:#f1f5f9;color:#334155;font-size:.78rem;font-weight:700;}
.tvz-study-content p{margin:0;color:#475569;font-size:.88rem;line-height:1.42;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}

.tvz-news-compact-list--grid,
.tvz-news-archive-grid{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:16px !important;}
.tvz-news-compact-item,
.tvz-news-archive-card--compact{display:grid !important;grid-template-columns:88px minmax(0,1fr) !important;gap:14px !important;align-items:start;padding:12px 14px !important;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.04);position:relative;overflow:hidden;}
.tvz-news-compact-item::before,
.tvz-news-archive-card--compact::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:#005baa;border-radius:18px 0 0 18px;}
.tvz-news-compact-item__thumb,
.tvz-news-archive-card__thumb{display:block;width:88px;height:88px;overflow:hidden;border-radius:12px;background:#e2e8f0;}
.tvz-news-compact-item__thumb img,
.tvz-news-archive-card__thumb img{display:block;width:100%;height:100%;object-fit:cover;}
.tvz-news-compact-item__body,
.tvz-news-archive-card__body{min-width:0;display:flex;flex-direction:column;gap:8px;}
.tvz-news-compact-item__body h3,
.tvz-news-archive-card__body h3{margin:0;font-size:1rem;line-height:1.25;color:#0f172a;}
.tvz-news-compact-item__body p,
.tvz-news-archive-card__body p{margin:0;color:#475569;font-size:.9rem;line-height:1.42;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.tvz-news-card__meta{display:flex;flex-wrap:wrap;gap:8px;font-size:.76rem;text-transform:uppercase;letter-spacing:.03em;color:#64748b;}

.tvz-project-mini-grid{display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:18px !important;}
.tvz-project-mini-card{display:flex;flex-direction:column;overflow:hidden;border-radius:20px;background:#fff;border:1px solid rgba(15,23,42,.08);box-shadow:0 14px 30px rgba(15,23,42,.05);position:relative;}
.tvz-project-mini-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:var(--card-accent,#005baa);border-radius:20px 0 0 20px;}
.tvz-project-mini-card--active{--card-accent:#005baa;}
.tvz-project-mini-card--archive{--card-accent:#64748b;}
.tvz-project-mini-card__media{display:block;overflow:hidden;background:#e2e8f0;}
.tvz-project-mini-card__media img{display:block;width:100%;height:140px;object-fit:cover;}
.tvz-project-mini-card__body{padding:14px 16px 16px 18px;display:flex;flex-direction:column;gap:8px;}
.tvz-project-mini-card__body h3{margin:0;font-size:1rem;line-height:1.25;color:#0f172a;}
.tvz-project-mini-card__body p{margin:0;color:#475569;font-size:.9rem;line-height:1.42;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}

.tvz-program-grid--compact{display:grid !important;grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:18px !important;}
 .lll-program-card{display:flex !important;flex-direction:column;overflow:hidden;border-radius:20px;background:#fff;border:1px solid rgba(15,23,42,.08);box-shadow:0 14px 30px rgba(15,23,42,.05);text-decoration:none;color:inherit;}
.lll-program-card__thumb{display:block;background:#e2e8f0;}
.lll-program-card__thumb img{display:block;width:100%;height:148px;object-fit:cover;}
.lll-program-card__body{padding:14px 16px 16px;display:flex;flex-direction:column;gap:10px;}
.lll-program-card h3{margin:0;font-size:1rem;line-height:1.25;color:#0f172a;}
.lll-card-type{display:inline-flex;align-self:flex-start;padding:6px 10px;border-radius:999px;background:#eff6ff;color:#1d4ed8;font-size:.78rem;font-weight:700;}

.tvz-pub-compact-grid,
.tvz-pub-list-minimal{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important;align-items:start;}
.tvz-pub-compact{grid-template-columns:minmax(0,1fr) auto !important;gap:14px !important;padding:14px 16px !important;border:1px solid rgba(15,23,42,.08);border-radius:18px;background:#fff;box-shadow:0 10px 24px rgba(15,23,42,.04);position:relative;overflow:hidden;min-height:0 !important;}
.tvz-pub-compact::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:#005baa;border-radius:18px 0 0 18px;}
.tvz-pub-compact h3{font-size:1rem !important;line-height:1.28 !important;}
.tvz-pub-compact p,.tvz-pub-compact__authors,.tvz-pub-compact__details{font-size:.88rem !important;line-height:1.42 !important;}

.tvz-doc-grid--four{display:grid !important;grid-template-columns:repeat(4,minmax(0,1fr)) !important;gap:16px !important;}

@media (max-width: 1200px){
  .tvz-home-grid--four,
  .tvz-home-grid--updates,
  .tvz-study-grid,
  .tvz-study-grid--archive,
  .tvz-study-grid-landing,
  .tvz-study-grid-landing--four,
  .tvz-project-mini-grid,
  .tvz-doc-grid--four{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}
@media (max-width: 980px){
  .tvz-home-intro,
  .tvz-home-secondary-grid,
  .tvz-landing-layout{grid-template-columns:1fr !important;}
  .tvz-home-grid,
  .tvz-home-grid--three,
  .tvz-home-grid--four,
  .tvz-home-grid--updates,
  .tvz-feature-link-grid,
  .tvz-feature-link-grid--two,
  .tvz-feature-link-grid--three,
  .tvz-feature-link-grid--four,
  .tvz-study-grid,
  .tvz-study-grid--archive,
  .tvz-study-grid-landing,
  .tvz-study-grid-landing--four,
  .tvz-project-mini-grid,
  .tvz-program-grid--compact,
  .tvz-pub-compact-grid,
  .tvz-pub-list-minimal,
  .tvz-doc-grid--four{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
}
@media (max-width: 767px){
  .tvz-home-metrics,
  .tvz-home-grid,
  .tvz-home-grid--three,
  .tvz-home-grid--four,
  .tvz-home-grid--updates,
  .tvz-study-landing-cards,
  .tvz-study-landing-cards--four,
  .tvz-feature-link-grid,
  .tvz-feature-link-grid--two,
  .tvz-feature-link-grid--three,
  .tvz-feature-link-grid--four,
  .tvz-study-grid,
  .tvz-study-grid--archive,
  .tvz-study-grid-landing,
  .tvz-study-grid-landing--four,
  .tvz-news-compact-list--grid,
  .tvz-news-archive-grid,
  .tvz-project-mini-grid,
  .tvz-program-grid--compact,
  .tvz-pub-compact-grid,
  .tvz-pub-list-minimal,
  .tvz-doc-grid--four{grid-template-columns:1fr !important;}
  .tvz-feature-link-card{min-height:0 !important;}
  .tvz-feature-link-card__thumb{flex-basis:32%;max-width:32%;min-height:120px;}
}
.tvz-home-intro,
.tvz-home-hero-card,
.tvz-home-metrics{
  position:relative;
}

.tvz-home-intro > *{
  min-width:0;
}

.tvz-home-metrics{
  z-index:2;
}

.tvz-home-metrics .tvz-home-metric{
  display:flex !important;
  flex-direction:column;
  justify-content:center;
  position:relative;
  z-index:3;
  pointer-events:auto;
  cursor:pointer;
  text-decoration:none;
}

.tvz-home-metrics .tvz-home-metric *{
  pointer-events:none;
}

.tvz-home-metrics .tvz-home-metric:hover,
.tvz-home-metrics .tvz-home-metric:focus-visible{
  transform:translateY(-3px);
}
/* =====================================================
TVZ – Ured za međunarodnu suradnju
Scoped styles
===================================================== */

.tvz-international-hub {
  padding-bottom: 40px;
}

.tvz-international-hub .tvz-home-section {
  margin: 0 0 32px;
}

.tvz-international-hub .tvz-home-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.tvz-international-hub .tvz-section-title {
  margin: 0;
}

.tvz-international-hub .tvz-study-stack__eyebrow,
.tvz-international-hub .tvz-sidebar-card__eyebrow {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b5cab;
}

.tvz-international-hub .tvz-surface {
  background: #fff;
  border: 1px solid rgba(11, 92, 171, 0.10);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.tvz-international-hub .tvz-prose p:last-child {
  margin-bottom: 0;
}

.tvz-international-hub .tvz-home-grid {
  display: grid;
  gap: 24px;
}

.tvz-international-hub .tvz-home-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tvz-international-hub .tvz-home-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* cards */

.tvz-international-hub .tvz-card {
  overflow: hidden;
  height: 100%;
}

.tvz-international-hub .tvz-card--stacked {
  display: flex;
  flex-direction: column;
}

.tvz-international-hub .tvz-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eaf2fb;
}

.tvz-international-hub .tvz-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.tvz-international-hub .tvz-card:hover .tvz-card__media img {
  transform: scale(1.03);
}

.tvz-international-hub .tvz-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.tvz-international-hub .tvz-card__body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.tvz-international-hub .tvz-card__body p {
  margin: 0;
  color: #334155;
}

/* generic content cards */

.tvz-international-hub .tvz-home-grid > article.tvz-surface {
  height: 100%;
  box-sizing: border-box;
}

.tvz-international-hub .tvz-home-grid > article.tvz-surface h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.tvz-international-hub .tvz-home-grid > article.tvz-surface p:last-child {
  margin-bottom: 0;
}

/* news list */

.tvz-international-hub .tvz-news-compact-list {
  display: grid;
  gap: 20px;
}

.tvz-international-hub .tvz-news-compact-list--grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tvz-international-hub .tvz-news-compact-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 92, 171, 0.10);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.tvz-international-hub .tvz-news-compact-item__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaf2fb;
}

.tvz-international-hub .tvz-news-compact-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tvz-international-hub .tvz-news-compact-item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.tvz-international-hub .tvz-news-compact-item__body h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.tvz-international-hub .tvz-news-compact-item__body p {
  margin: 0;
  color: #334155;
}

.tvz-international-hub .tvz-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
}

/* links */

.tvz-international-hub a {
  text-decoration: none;
}

.tvz-international-hub .tvz-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-weight: 700;
  color: #0b5cab;
}

.tvz-international-hub .tvz-inline-link:hover {
  color: #083b70;
}

/* location */

.tvz-international-hub .tvz-location-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tvz-international-hub .tvz-location-copy {
  color: #334155;
}

.tvz-international-hub .tvz-map,
.tvz-international-hub .tvz-location-map {
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafc;
}

.tvz-international-hub .tvz-map iframe,
.tvz-international-hub .tvz-location-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  border: 0;
}

/* helper spacing */

.tvz-international-hub .tvz-home-section--panel > .tvz-surface,
.tvz-international-hub .tvz-home-section--panel .tvz-home-grid,
.tvz-international-hub .tvz-home-section--panel .tvz-news-compact-list {
  box-sizing: border-box;
}

/* tablet */

@media (max-width: 1100px) {
  .tvz-international-hub .tvz-home-grid--three,
  .tvz-international-hub .tvz-news-compact-list--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* mobile */

@media (max-width: 767px) {
  .tvz-international-hub {
    padding-bottom: 24px;
  }

  .tvz-international-hub .tvz-home-section {
    margin-bottom: 24px;
  }

  .tvz-international-hub .tvz-home-section__head {
    margin-bottom: 16px;
  }

  .tvz-international-hub .tvz-home-grid--two,
  .tvz-international-hub .tvz-home-grid--three,
  .tvz-international-hub .tvz-news-compact-list--grid {
    grid-template-columns: 1fr;
  }

  .tvz-international-hub .tvz-card__body,
  .tvz-international-hub .tvz-news-compact-item__body {
    padding: 18px;
  }

  .tvz-international-hub .tvz-card__body h3,
  .tvz-international-hub .tvz-news-compact-item__body h3,
  .tvz-international-hub .tvz-home-grid > article.tvz-surface h3 {
    font-size: 19px;
  }

  .tvz-international-hub .tvz-map iframe,
  .tvz-international-hub .tvz-location-map iframe {
    min-height: 220px;
  }
}
.tvz-international-hub__layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:32px;
  align-items:start;
}

.tvz-international-hub__main,
.tvz-international-hub__sidebar{
  min-width:0;
}

.tvz-international-hub__sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}


@media (max-width: 1024px){
  .tvz-international-hub__layout{
    grid-template-columns:1fr;
  }
}
.tvz-page-org-extra{
  padding-bottom:40px;
}

.tvz-page-org-extra__layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:32px;
  align-items:start;
}

.tvz-page-org-extra__main,
.tvz-page-org-extra__sidebar{
  min-width:0;
}

.tvz-page-org-extra__sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.tvz-page-org-extra .tvz-prose > *:first-child{
  margin-top:0;
}

.tvz-page-org-extra .tvz-prose > *:last-child{
  margin-bottom:0;
}

@media (max-width: 1024px){
  .tvz-page-org-extra__layout{
    grid-template-columns:1fr;
  }
}
/* =====================================================
   TVZ FINAL MENU LAYER
   Add at the end of assets/css/tvz-enterprise.css
===================================================== */

/* Header shell */
.tvz-site-header{
  box-shadow:0 14px 34px rgba(15,23,42,.08);
}

.tvz-topbar{
  position:relative;
  z-index:4;
}

.tvz-topbar__inner{
  min-height:42px;
}

.tvz-topbar__brandline{
  font-size:.82rem;
  white-space:nowrap;
}

.tvz-topbar__nav{
  margin-left:auto;
}

.tvz-header-main{
  position:relative;
  z-index:3;
}

.tvz-header-main__inner{
  min-height:88px;
  gap:18px;
}

.tvz-site-branding__media{
  flex:0 0 auto;
}

.tvz-site-logo-img{
  max-height:58px;
  width:auto;
  display:block;
}

.tvz-site-branding__text strong{
  font-size:1.08rem;
  line-height:1.1;
}

.tvz-site-branding__text span{
  max-width:42ch;
  line-height:1.35;
}

/* Utility menu */
.tvz-menu--utility{
  gap:18px;
}

.tvz-menu--utility > li{
  position:relative;
}

.tvz-menu--utility > li:not(:last-child)::after{
  content:"";
  position:absolute;
  top:50%;
  right:-10px;
  width:3px;
  height:3px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  transform:translateY(-50%);
}

.tvz-menu--utility a{
  font-size:.83rem;
  letter-spacing:.01em;
}

/* Primary navbar */
.tvz-header-navbar{
  position:relative;
  z-index:2;
  background:rgba(255,255,255,.98);
}

.tvz-header-navbar__inner{
  min-height:62px;
}

.tvz-menu--primary{
  width:100%;
  justify-content:flex-start;
  gap:6px;
}

.tvz-menu--primary > li{
  position:relative;
}

.tvz-menu--primary > li > a{
  min-height:46px;
  padding:0 16px;
  font-size:.95rem;
  border-radius:14px;
  color:#0f172a;
  transition:background .2s ease, color .2s ease, box-shadow .2s ease;
}

.tvz-menu--primary > li:hover > a,
.tvz-menu--primary > li:focus-within > a,
.tvz-menu--primary > li.current-menu-item > a,
.tvz-menu--primary > li.current-menu-ancestor > a{
  color:var(--tvz-blue);
  background:linear-gradient(180deg,rgba(59,130,246,.14) 0%, rgba(30,58,138,.09) 100%);
  box-shadow:inset 0 0 0 1px rgba(30,58,138,.08);
}

/* Chevron for items with children */
.tvz-menu--primary > li.menu-item-has-children > a{
  padding-right:34px;
}

.tvz-menu--primary > li.menu-item-has-children > a::after{
  content:"";
  position:absolute;
  right:14px;
  top:50%;
  width:8px;
  height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(-64%) rotate(45deg);
  opacity:.75;
}

/* Dropdown */
.tvz-menu--primary li ul{
  top:calc(100% + 8px);
  left:0;
  min-width:300px;
  padding:12px;
  border:1px solid rgba(30,58,138,.10);
  border-radius:20px;
  background:#fff;
  box-shadow:0 28px 60px rgba(15,23,42,.16);
}

.tvz-menu--primary li ul::before{
  content:"";
  position:absolute;
  top:-7px;
  left:26px;
  width:12px;
  height:12px;
  background:#fff;
  border-left:1px solid rgba(30,58,138,.10);
  border-top:1px solid rgba(30,58,138,.10);
  transform:rotate(45deg);
}

.tvz-menu--primary li ul li{
  width:100%;
}

.tvz-menu--primary li ul a{
  display:block;
  padding:11px 12px;
  border-radius:12px;
  font-size:.92rem;
  line-height:1.35;
  color:#0f172a;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.tvz-menu--primary li ul a:hover,
.tvz-menu--primary li ul li.current-menu-item > a,
.tvz-menu--primary li ul li.current-menu-ancestor > a{
  color:var(--tvz-blue);
  background:rgba(30,58,138,.06);
  transform:translateX(2px);
}

/* Search and quick actions */
.tvz-header-search{
  flex:0 1 340px;
}

.tvz-header-search .search-form{
  margin:0;
}

.tvz-header-actions{
  gap:8px;
}

.tvz-header-action{
  min-height:40px;
  padding:0 14px;
  font-size:.9rem;
}

/* Better alignment for wide desktops */
@media (min-width: 1181px){
  .tvz-header-navbar__inner{
    justify-content:flex-start;
  }

  .tvz-menu--primary{
    flex-wrap:nowrap;
  }
}

/* Tablet */
@media (max-width: 1180px){
  .tvz-topbar__brandline{
    display:none;
  }

  .tvz-header-search{
    flex:1 1 280px;
  }

  .tvz-menu--primary{
    flex-wrap:wrap;
  }
}

/* Mobile navigation */
@media (max-width: 1080px){
  .tvz-header-main__inner{
    min-height:76px;
  }

  .tvz-header-search{
    display:none;
  }

  .tvz-nav-toggle{
    margin-left:auto;
    display:flex;
  }

  .tvz-primary-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    background:#fff;
    border:1px solid rgba(30,58,138,.08);
    border-top:none;
    box-shadow:0 18px 42px rgba(15,23,42,.12);
  }

  .tvz-primary-nav.is-open{
    display:block;
  }

  .tvz-menu--primary{
    flex-direction:column;
    align-items:stretch;
    padding:14px 16px 20px;
    gap:6px;
  }

  .tvz-menu--primary > li > a{
    position:relative;
    padding:12px 14px;
    border-radius:14px;
  }

  .tvz-menu--primary li ul{
    position:static;
    display:flex;
    min-width:0;
    margin:4px 0 0;
    padding:0 0 0 14px;
    border:none;
    border-left:2px solid rgba(30,58,138,.10);
    border-radius:0;
    box-shadow:none;
    background:transparent;
  }

  .tvz-menu--primary li ul::before{
    display:none;
  }

  .tvz-menu--primary li ul a{
    padding:9px 10px;
    border-radius:10px;
    font-size:.9rem;
  }
}

@media (max-width: 900px){
  .tvz-topbar__inner{
    min-height:auto;
    padding-top:10px;
    padding-bottom:10px;
  }

  .tvz-menu--utility{
    gap:12px;
  }

  .tvz-menu--utility > li:not(:last-child)::after{
    display:none;
  }

  .tvz-site-branding__text span{
    display:none;
  }
}

@media (max-width: 640px){
  .tvz-site-branding__text strong{
    font-size:.98rem;
  }

  .tvz-menu--utility{
    gap:10px 14px;
  }

  .tvz-menu--utility a{
    font-size:.8rem;
  }
}
/* =====================================================
TVZ landing pages addon
Append to assets/css/tvz-enterprise.css
===================================================== */

.tvz-link-panel-grid{
  display:grid;
  gap:18px;
}

.tvz-link-panel-grid--two{grid-template-columns:repeat(2,minmax(0,1fr));}
.tvz-link-panel-grid--three{grid-template-columns:repeat(3,minmax(0,1fr));}
.tvz-link-panel-grid--four{grid-template-columns:repeat(4,minmax(0,1fr));}

.tvz-link-panel{
  display:block;
  min-height:100%;
  padding:22px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 14px 30px rgba(15,23,42,.05);
  color:inherit;
  text-decoration:none;
}

.tvz-link-panel--static{cursor:default;}

.tvz-link-panel__eyebrow{
  display:inline-block;
  margin:0 0 10px;
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#64748b;
}

.tvz-link-panel h3{
  margin:0 0 10px;
  font-size:1.1rem;
  line-height:1.3;
  color:#0f172a;
}

.tvz-link-panel p{
  margin:0;
  color:#475569;
  line-height:1.55;
}

.tvz-link-panel a{
  color:var(--tvz-blue,#005baa);
  text-decoration:none;
}

.tvz-kv-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.tvz-kv-card{
  padding:22px 18px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(0,91,170,.10);
  box-shadow:0 14px 30px rgba(15,23,42,.05);
}

.tvz-kv-card__value{
  display:block;
  margin:0 0 8px;
  font-size:clamp(1.9rem,3vw,2.5rem);
  line-height:1;
  font-weight:800;
  color:var(--tvz-blue,#005baa);
}

.tvz-kv-card__label{
  display:block;
  font-size:.95rem;
  line-height:1.45;
  color:#475569;
}

.tvz-landing-layout__main .tvz-home-grid--two{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.tvz-landing-layout__main .tvz-home-card--generic{
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.tvz-landing-layout__main .tvz-home-card__thumb img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
}

.tvz-landing-layout__main .tvz-home-card__body{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:20px;
}

@media (max-width: 1100px){
  .tvz-link-panel-grid--four,
  .tvz-kv-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 900px){
  .tvz-link-panel-grid--three,
  .tvz-link-panel-grid--four,
  .tvz-landing-layout__main .tvz-home-grid--two{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .tvz-link-panel-grid--two,
  .tvz-link-panel-grid--three,
  .tvz-link-panel-grid--four,
  .tvz-kv-grid,
  .tvz-landing-layout__main .tvz-home-grid--two{
    grid-template-columns:1fr;
  }

  .tvz-link-panel,
  .tvz-kv-card{
    padding:18px;
  }
}
/* TVZ header + dropdown final polish */
.tvz-site-header{
  position:relative;
  z-index:120;
}

.tvz-topbar{
  position:relative;
  z-index:130;
}

.tvz-header-main,
.tvz-header-navbar,
.tvz-header-navbar__inner,
.tvz-primary-nav,
.tvz-menu--primary{
  overflow:visible;
}

.tvz-header-navbar{
  position:relative;
  z-index:125;
  backdrop-filter:saturate(1.1) blur(6px);
}

.tvz-header-navbar__inner{
  min-height:66px;
}

@media (min-width: 1081px){
  .tvz-menu--primary{
    justify-content:flex-start;
    gap:10px;
  }

  .tvz-menu--primary > li{
    position:relative;
    display:flex;
    align-items:center;
    padding-bottom:18px;
    margin-bottom:-18px;
    z-index:1;
  }

  .tvz-menu--primary > li:hover,
  .tvz-menu--primary > li:focus-within,
  .tvz-menu--primary > li.is-open-desktop{
    z-index:60;
  }

  .tvz-menu--primary > li > a{
    position:relative;
    min-height:48px;
    padding:12px 16px;
    border-radius:16px;
    transition:background .2s ease,color .2s ease,box-shadow .2s ease;
  }

  .tvz-menu--primary > li.menu-item-has-children > a{
    padding-right:38px;
  }

  .tvz-menu--primary > li.menu-item-has-children > a::after{
    content:"";
    position:absolute;
    right:15px;
    top:50%;
    width:8px;
    height:8px;
    margin-top:-6px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg);
    opacity:.75;
    transition:transform .2s ease, opacity .2s ease;
  }

  .tvz-menu--primary > li:hover > a::after,
  .tvz-menu--primary > li:focus-within > a::after,
  .tvz-menu--primary > li.is-open-desktop > a::after{
    transform:rotate(-135deg) translate(-1px,-1px);
    opacity:1;
  }

  .tvz-menu--primary > li.menu-item-has-children::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:22px;
  }

  .tvz-menu--primary li ul{
    display:flex;
    top:calc(100% + 8px);
    left:0;
    min-width:300px;
    padding:12px;
    gap:4px;
    border:1px solid rgba(30,58,138,.10);
    border-radius:20px;
    background:rgba(255,255,255,.98);
    box-shadow:0 26px 56px rgba(15,23,42,.18);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(10px);
    transform-origin:top left;
    transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index:70;
  }

  .tvz-menu--primary li:hover > ul,
  .tvz-menu--primary li:focus-within > ul,
  .tvz-menu--primary li.is-open-desktop > ul{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .tvz-menu--primary li ul li{
    width:100%;
  }

  .tvz-menu--primary li ul a{
    display:block;
    width:100%;
    padding:11px 13px;
    border-radius:12px;
    font-size:.97rem;
    line-height:1.35;
    color:#0f172a;
    transition:background .18s ease,color .18s ease, transform .18s ease;
  }

  .tvz-menu--primary li ul a:hover,
  .tvz-menu--primary li ul a:focus-visible{
    background:linear-gradient(180deg,rgba(59,130,246,.10) 0%, rgba(30,58,138,.08) 100%);
    color:var(--tvz-blue);
    transform:translateX(2px);
  }
}

@media (max-width: 1080px){
  .tvz-header-navbar{
    z-index:140;
  }

  .tvz-primary-nav{
    max-height:calc(100vh - 140px);
    overflow:auto;
  }

  .tvz-menu--primary{
    gap:8px;
  }

  .tvz-menu--primary > li{
    border-bottom:1px solid rgba(30,58,138,.08);
    padding-bottom:4px;
  }

  .tvz-menu--primary > li:last-child{
    border-bottom:none;
  }

  .tvz-menu--primary > li > a{
    min-height:46px;
    border-radius:14px;
  }

  .tvz-menu--primary li ul{
    margin-top:2px;
    padding:4px 0 8px 14px;
    gap:4px;
  }

  .tvz-menu--primary li ul a{
    padding:10px 12px;
    border-radius:12px;
    background:rgba(248,250,252,.9);
  }
}

.tvz-menu--utility{
  gap:18px;
}

.tvz-menu--utility a{
  white-space:nowrap;
}
/* TVZ menu accent line patch
   Dodaje diskretni akcent kao na karticama:
   - root stavke: donja linija na hover / focus / current
   - podizbornik: lijeva linija na hover / focus / current
   Po potrebi na pojedinoj landing stranici override-aj:
   body.page-template-page-studiji { --tvz-menu-accent: var(--tvz-green); }
*/

:root{
  --tvz-menu-accent: var(--tvz-blue, #1E3A8A);
  --tvz-menu-accent-soft: color-mix(in srgb, var(--tvz-menu-accent) 10%, white);
}

@media (min-width: 1081px){
  .tvz-menu--primary > li > a{
    position: relative;
  }

  .tvz-menu--primary > li > a::before{
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: var(--tvz-menu-accent);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
  }

  .tvz-menu--primary > li:hover > a::before,
  .tvz-menu--primary > li:focus-within > a::before,
  .tvz-menu--primary > li.is-open-desktop > a::before,
  .tvz-menu--primary > li.current-menu-item > a::before,
  .tvz-menu--primary > li.current-menu-ancestor > a::before,
  .tvz-menu--primary > li.current_page_item > a::before,
  .tvz-menu--primary > li.current_page_ancestor > a::before{
    transform: scaleX(1);
    opacity: 1;
  }

  .tvz-menu--primary > li:hover > a,
  .tvz-menu--primary > li:focus-within > a,
  .tvz-menu--primary > li.is-open-desktop > a,
  .tvz-menu--primary > li.current-menu-item > a,
  .tvz-menu--primary > li.current-menu-ancestor > a,
  .tvz-menu--primary > li.current_page_item > a,
  .tvz-menu--primary > li.current_page_ancestor > a{
    color: var(--tvz-menu-accent);
  }

  .tvz-menu--primary li ul a{
    position: relative;
    padding-left: 18px;
    overflow: hidden;
  }

  .tvz-menu--primary li ul a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 999px;
    background: var(--tvz-menu-accent);
    opacity: 0;
    transform: scaleY(.35);
    transform-origin: center;
    transition: opacity .18s ease, transform .18s ease;
  }

  .tvz-menu--primary li ul li:hover > a,
  .tvz-menu--primary li ul li:focus-within > a,
  .tvz-menu--primary li ul li.current-menu-item > a,
  .tvz-menu--primary li ul li.current-menu-ancestor > a,
  .tvz-menu--primary li ul li.current_page_item > a,
  .tvz-menu--primary li ul li.current_page_ancestor > a,
  .tvz-menu--primary li ul a:hover,
  .tvz-menu--primary li ul a:focus-visible{
    background: linear-gradient(180deg, color-mix(in srgb, var(--tvz-menu-accent) 8%, white) 0%, color-mix(in srgb, var(--tvz-menu-accent) 5%, white) 100%);
    color: var(--tvz-menu-accent);
    transform: translateX(2px);
  }

  .tvz-menu--primary li ul li:hover > a::before,
  .tvz-menu--primary li ul li:focus-within > a::before,
  .tvz-menu--primary li ul li.current-menu-item > a::before,
  .tvz-menu--primary li ul li.current-menu-ancestor > a::before,
  .tvz-menu--primary li ul li.current_page_item > a::before,
  .tvz-menu--primary li ul li.current_page_ancestor > a::before,
  .tvz-menu--primary li ul a:hover::before,
  .tvz-menu--primary li ul a:focus-visible::before{
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1080px){
  .tvz-menu--primary > li > a{
    position: relative;
  }

  .tvz-menu--primary > li > a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 999px;
    background: var(--tvz-menu-accent);
    opacity: 0;
    transform: scaleY(.4);
    transition: opacity .18s ease, transform .18s ease;
  }

  .tvz-menu--primary > li.current-menu-item > a::before,
  .tvz-menu--primary > li.current-menu-ancestor > a::before,
  .tvz-menu--primary > li.current_page_item > a::before,
  .tvz-menu--primary > li.current_page_ancestor > a::before,
  .tvz-menu--primary > li > a:hover::before,
  .tvz-menu--primary > li > a:focus-visible::before{
    opacity: 1;
    transform: scaleY(1);
  }

  .tvz-menu--primary li ul a{
    position: relative;
    padding-left: 18px;
  }

  .tvz-menu--primary li ul a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    border-radius: 999px;
    background: var(--tvz-menu-accent);
    opacity: 0;
    transform: scaleY(.4);
    transition: opacity .18s ease, transform .18s ease;
  }

  .tvz-menu--primary li ul li.current-menu-item > a::before,
  .tvz-menu--primary li ul li.current-menu-ancestor > a::before,
  .tvz-menu--primary li ul li.current_page_item > a::before,
  .tvz-menu--primary li ul li.current_page_ancestor > a::before,
  .tvz-menu--primary li ul a:hover::before,
  .tvz-menu--primary li ul a:focus-visible::before{
    opacity: 1;
    transform: scaleY(1);
  }
}
/* =====================================================
   TVZ – Međunarodna suradnja
   Sidebar + landing polish
   Add after tvz-enterprise.css
===================================================== */

.tvz-international-hub{
  padding-bottom:40px;
}

.tvz-international-hub .tvz-richtext{
  color:#334155;
  line-height:1.75;
}

.tvz-international-hub .tvz-richtext > *:first-child{
  margin-top:0;
}

.tvz-international-hub .tvz-richtext > *:last-child{
  margin-bottom:0;
}

.tvz-international-hub .tvz-richtext h2,
.tvz-international-hub .tvz-richtext h3{
  color:#0f172a;
}

.tvz-international-hub .tvz-richtext h2{
  margin:32px 0 14px;
  font-size:1.5rem;
  line-height:1.25;
}

.tvz-international-hub .tvz-richtext h3{
  margin:24px 0 12px;
  font-size:1.18rem;
  line-height:1.3;
}

.tvz-international-hub .tvz-richtext ul,
.tvz-international-hub .tvz-richtext ol{
  padding-left:1.2rem;
}

.tvz-international-hub .tvz-richtext li + li{
  margin-top:6px;
}

.tvz-international-hub .tvz-landing-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tvz-international-hub .tvz-landing-sidebar .tvz-content-card{
  padding:18px 20px 20px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:20px;
  background:#fff;
  box-shadow:0 14px 30px rgba(15,23,42,.05);
}

.tvz-international-hub .tvz-landing-sidebar .tvz-content-card h3{
  margin:0 0 12px;
  color:#0f172a;
}

.tvz-international-hub .tvz-landing-sidebar .tvz-content-card p{
  margin:0;
  color:#475569;
  line-height:1.65;
}

.tvz-international-hub .tvz-landing-sidebar .tvz-content-card p + p{
  margin-top:10px;
}

.tvz-international-hub .tvz-landing-sidebar .tvz-study-general-card__eyebrow{
  display:inline-block;
  margin:0 0 8px;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--tvz-blue,#005baa);
}

.tvz-international-hub .tvz-sidebar-nav{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.tvz-international-hub .tvz-sidebar-nav li{
  margin:0;
  padding:0;
}

.tvz-international-hub .tvz-sidebar-nav a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:46px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.22);
  background:#f8fafc;
  color:#0f172a;
  font-weight:600;
  line-height:1.35;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.tvz-international-hub .tvz-sidebar-nav a::after{
  content:"↗";
  flex:0 0 auto;
  font-size:.9rem;
  color:#94a3b8;
  transition:transform .18s ease, color .18s ease;
}

.tvz-international-hub .tvz-sidebar-nav a:hover,
.tvz-international-hub .tvz-sidebar-nav a:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(0,91,170,.24);
  background:#eff6ff;
  box-shadow:0 12px 24px rgba(15,23,42,.06);
  color:var(--tvz-blue,#005baa);
}

.tvz-international-hub .tvz-sidebar-nav a:hover::after,
.tvz-international-hub .tvz-sidebar-nav a:focus-visible::after{
  color:var(--tvz-blue,#005baa);
  transform:translate(2px,-1px);
}

.tvz-international-hub .tvz-landing-sidebar a[href^="mailto:"],
.tvz-international-hub .tvz-landing-sidebar a[href^="tel:"]{
  color:var(--tvz-blue,#005baa);
  font-weight:700;
  text-decoration:none;
}

.tvz-international-hub .tvz-landing-sidebar a[href^="mailto:"]:hover,
.tvz-international-hub .tvz-landing-sidebar a[href^="tel:"]:hover{
  color:#083b70;
}

.tvz-international-hub .tvz-landing-sidebar .tvz-quick-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:8px;
}

.tvz-international-hub .tvz-link-panel-grid .tvz-link-panel h3{
  margin:0 0 8px;
}

.tvz-international-hub .tvz-link-panel-grid .tvz-link-panel p{
  margin:0;
}

.tvz-international-hub .tvz-feature-link-card,
.tvz-international-hub .tvz-link-panel{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.tvz-international-hub .tvz-feature-link-card:hover,
.tvz-international-hub .tvz-feature-link-card:focus-within,
.tvz-international-hub .tvz-link-panel:hover,
.tvz-international-hub .tvz-link-panel:focus-within{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(15,23,42,.08);
}

@media (max-width: 980px){
  .tvz-international-hub .tvz-landing-sidebar{
    gap:14px;
  }

  .tvz-international-hub .tvz-landing-sidebar .tvz-content-card{
    padding:16px 18px 18px;
  }
}

@media (max-width: 767px){
  .tvz-international-hub .tvz-richtext h2{
    font-size:1.32rem;
  }

  .tvz-international-hub .tvz-richtext h3{
    font-size:1.06rem;
  }

  .tvz-international-hub .tvz-sidebar-nav a{
    min-height:42px;
    padding:10px 12px;
  }
}
/* =====================================================
   TVZ – Djelatnik hero full image
===================================================== */

.tvz-person-hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg, var(--tvz-blue,#005baa) 0%, #0b4d92 100%);
}

.tvz-person-hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,420px);
  gap:36px;
  align-items:center;
  min-height:420px;
  padding:38px 0 42px;
}

.tvz-person-hero__content{
  position:relative;
  z-index:1;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

.tvz-person-hero__breadcrumb{
  margin-bottom:18px;
  color:rgba(255,255,255,.92);
}

.tvz-person-hero__breadcrumb a{
  color:inherit;
}

.tvz-person-hero__title{
  margin:0;
  color:#fff;
  font-size:clamp(2rem, 3vw, 3.2rem);
  line-height:1.08;
}

.tvz-person-hero__lead{
  margin:14px 0 0;
  max-width:42rem;
  color:rgba(255,255,255,.92);
  font-size:clamp(1rem, 1.5vw, 1.2rem);
  line-height:1.55;
}

.tvz-person-hero__media{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:340px;
  padding:20px;
  border-radius:32px;
  background:rgba(255,255,255,.08);
  box-shadow:0 22px 44px rgba(15,23,42,.18);
}

.tvz-person-hero__image{
  display:block;
  width:100%;
  height:100%;
  max-height:380px;
  object-fit:contain;
  object-position:center;
}

@media (max-width: 980px){
  .tvz-person-hero__inner{
    grid-template-columns:1fr;
    gap:24px;
    min-height:0;
    padding:28px 0 34px;
  }

  .tvz-person-hero__media{
    order:-1;
    min-height:260px;
    padding:16px;
  }

  .tvz-person-hero__image{
    max-height:320px;
  }
}

@media (max-width: 640px){
  .tvz-person-hero__media{
    border-radius:24px;
  }
}
/* =====================================================
   TVZ – Tijela Veleučilišta + djelatnik hero
===================================================== */

.tvz-leadership-feature{
  display:flex;
  justify-content:center;
  margin:0 0 28px;
}

.tvz-leadership-feature .tvz-staff-card{
  width:min(100%, 420px);
}

.tvz-staff-grid--leadership{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:24px;
  margin:0 0 28px;
}

.tvz-staff-card{
  height:100%;
}

.tvz-staff-card__inner{
  height:100%;
  padding:22px 20px 24px;
  border:1px solid rgba(0,91,170,.12);
  border-radius:24px;
  background:#fff;
  box-shadow:0 16px 32px rgba(15,23,42,.06);
  text-align:center;
}

.tvz-staff-photo{
  margin:0 0 14px;
}

.tvz-staff-photo img{
  display:block;
  width:140px;
  height:140px;
  margin:0 auto;
  border-radius:50%;
  object-fit:cover;
  object-position:center;
}

.tvz-staff-name{
  color:#0f172a;
  font-size:1.08rem;
  font-weight:800;
  line-height:1.35;
}

.tvz-staff-name a{
  color:inherit;
  text-decoration:none;
}

.tvz-staff-name a:hover{
  color:var(--tvz-blue,#005baa);
}

.tvz-staff-title{
  margin-top:8px;
  color:#475569;
  line-height:1.5;
}

/* djelatnik hero */
.tvz-person-hero{
  position:relative;
  overflow:hidden;
  background:var(--tvz-blue,#005baa);
}

.tvz-person-hero__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,520px);
  gap:24px;
  align-items:stretch;
  min-height:460px;
}

.tvz-person-hero__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
  padding:42px 0;
  min-width:0;
}

.tvz-person-hero__breadcrumb{
  margin-bottom:18px;
  color:rgba(255,255,255,.92);
}

.tvz-person-hero__breadcrumb a{
  color:inherit;
}

.tvz-person-hero__title{
  margin:0;
  color:#fff;
  font-size:clamp(2rem,3vw,3.25rem);
  line-height:1.08;
}

.tvz-person-hero__lead{
  margin:14px 0 0;
  max-width:42rem;
  color:rgba(255,255,255,.92);
  font-size:clamp(1rem,1.3vw,1.18rem);
  line-height:1.6;
}

.tvz-person-hero__media{
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  align-self:stretch;
  min-height:460px;
}

.tvz-person-hero__image{
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  object-fit:contain;
  object-position:center bottom;
}

@media (max-width: 980px){
  .tvz-person-hero__inner{
    grid-template-columns:1fr;
    min-height:0;
    gap:12px;
  }

  .tvz-person-hero__content{
    padding:24px 0 18px;
  }

  .tvz-person-hero__media{
    min-height:320px;
  }

  .tvz-person-hero__image{
    max-height:360px;
  }
}
/* Organizacijske jedinice - stabilniji prikaz vijesti */
.tvz-object-news-layout,
.tvz-object-news-layout * {
  min-width: 0;
}

.tvz-object-news-layout__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.tvz-object-news-layout__featured {
  display: grid;
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
}

.tvz-object-news-layout__featured .tvz-news-featured__thumb,
.tvz-object-news-layout__featured .tvz-news-featured__body {
  min-width: 0;
}

.tvz-object-news-layout__featured .tvz-news-featured__thumb img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.tvz-object-news-layout__featured .tvz-news-featured__body {
  padding: 24px;
}

.tvz-object-news-layout__featured .tvz-news-featured__body h2 {
  margin: 0;
  font-size: clamp(1.45rem, 1.55vw, 1.95rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.tvz-object-news-layout__featured .tvz-news-featured__body p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tvz-object-news-layout__side {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.tvz-object-news-layout__side .tvz-news-compact-item--fixed,
.tvz-object-news-layout__archive-grid .tvz-news-compact-item--fixed {
  grid-template-columns: 88px minmax(0, 1fr) !important;
  align-items: start;
  min-height: auto;
}

.tvz-object-news-layout__side .tvz-news-compact-item__thumb,
.tvz-object-news-layout__archive-grid .tvz-news-compact-item__thumb {
  width: 88px;
  height: 88px;
}

.tvz-object-news-layout__side .tvz-news-compact-item__thumb img,
.tvz-object-news-layout__archive-grid .tvz-news-compact-item__thumb img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  display: block;
}

.tvz-object-news-layout__side .tvz-news-compact-item__body,
.tvz-object-news-layout__archive-grid .tvz-news-compact-item__body {
  min-width: 0;
}

.tvz-object-news-layout__side .tvz-news-compact-item__body h3,
.tvz-object-news-layout__archive-grid .tvz-news-compact-item__body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tvz-object-news-layout .tvz-news-card__meta {
  gap: 8px;
}

.tvz-object-news-layout .tvz-news-term-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

@media (max-width: 1360px) {
  .tvz-object-news-layout__featured {
    grid-template-columns: 1fr;
  }

  .tvz-object-news-layout__featured .tvz-news-featured__thumb img {
    height: 240px;
    min-height: 240px;
  }
}

@media (max-width: 1100px) {
  .tvz-object-news-layout__top {
    grid-template-columns: 1fr;
  }

  .tvz-object-news-layout__archive-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 767px) {
  .tvz-object-news-layout__side .tvz-news-compact-item--fixed,
  .tvz-object-news-layout__archive-grid .tvz-news-compact-item--fixed {
    grid-template-columns: 72px minmax(0, 1fr) !important;
  }

  .tvz-object-news-layout__side .tvz-news-compact-item__thumb,
  .tvz-object-news-layout__archive-grid .tvz-news-compact-item__thumb,
  .tvz-object-news-layout__side .tvz-news-compact-item__thumb img,
  .tvz-object-news-layout__archive-grid .tvz-news-compact-item__thumb img {
    width: 72px;
    height: 72px;
  }
}

/* =====================================================
   TVZ - Natjecaji: zatvoreni prikaz + prijavna forma
   Integrirano u tvz-enterprise.css
===================================================== */
.tvz-nat-closed-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:26px;align-items:start}
.tvz-nat-closed-main{display:grid;gap:24px;min-width:0}
.tvz-nat-closed-sidebar{display:grid;gap:16px;position:sticky;top:120px;min-width:0}
.tvz-nat-closed-intro{padding:28px;border-radius:24px;background:linear-gradient(135deg,#fff,#f7faff);box-shadow:0 20px 54px rgba(15,35,80,.08)}
.tvz-nat-accordion{display:grid;gap:14px}
.tvz-nat-competition,.tvz-nat-point{border:1px solid rgba(23,63,152,.14);border-radius:20px;background:#fff;box-shadow:0 14px 36px rgba(15,35,80,.07);overflow:hidden}
.tvz-nat-competition>summary,.tvz-nat-point>summary{list-style:none;cursor:pointer;display:flex;align-items:flex-start;gap:12px;padding:16px 18px}
.tvz-nat-competition>summary::-webkit-details-marker,.tvz-nat-point>summary::-webkit-details-marker{display:none}
.tvz-nat-chevron{width:30px;height:30px;display:flex;align-items:center;justify-content:center;border-radius:11px;background:#edf4ff;color:#173f98;font-size:1.5rem;line-height:1;transition:transform .18s ease,background .18s ease,color .18s ease;flex:0 0 auto}
.tvz-nat-competition[open]>.tvz-nat-competition-summary .tvz-nat-chevron,.tvz-nat-point[open]>.tvz-nat-point-summary .tvz-nat-chevron{transform:rotate(90deg);background:#173f98;color:#fff}
.tvz-nat-summary-main{min-width:0;flex:1}
.tvz-nat-summary-main h3,.tvz-nat-summary-main h4{margin:0 0 4px;color:#173f98;line-height:1.22}
.tvz-nat-summary-main p{margin:0;color:#56637a;font-size:.88rem;line-height:1.35}
.tvz-nat-meta{display:flex;flex-wrap:wrap;gap:6px;margin-top:6px}
.tvz-nat-meta span{font-size:.72rem;line-height:1.2;border-radius:999px;background:#f1f4f9;color:#56637a;padding:4px 8px;font-weight:700}
.tvz-nat-meta span:first-child{background:#eaf7ef;color:#176b3a}
.tvz-nat-competition-content{padding:0 18px 18px;display:grid;gap:14px}
.tvz-nat-points{display:grid;gap:10px}
.tvz-nat-point{box-shadow:none;background:#fbfcff;border-radius:16px}
.tvz-nat-point>summary{padding:14px}
.tvz-nat-point-content{padding:0 14px 14px;display:grid;gap:16px}
.tvz-nat-point-body{padding:16px;border-radius:16px;background:#fff;border:1px solid rgba(23,63,152,.1)}
.tvz-nat-point-body .tvz-richtext>:first-child{margin-top:0}
.tvz-nat-form-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:18px;align-items:start}
.tvz-nat-form-main,.tvz-nat-form-status{display:grid;gap:14px;min-width:0}
.tvz-nat-form-section,.tvz-nat-form-status{padding:18px;border-radius:18px;background:#fff;border:1px solid rgba(23,63,152,.13);box-shadow:0 12px 30px rgba(15,35,80,.06)}
.tvz-nat-form-section h4,.tvz-nat-form-status h4{margin:0 0 12px;color:#15213a}
.tvz-nat-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.tvz-nat-form-grid label,.tvz-nat-form-section label{display:grid;gap:6px;font-weight:750;color:#15213a;font-size:.9rem}
.tvz-nat-form-grid input,.tvz-nat-form-section textarea{width:100%;border:1px solid rgba(23,63,152,.18);border-radius:12px;padding:11px 12px;font:inherit;background:#fff;box-sizing:border-box}
.tvz-nat-form-note{margin:0 0 12px;color:#5d687c;font-size:.86rem}
.tvz-nat-upload-list{display:grid;gap:10px}
.tvz-nat-upload-row{display:grid!important;grid-template-columns:minmax(0,1fr);gap:8px;padding:12px;border-radius:14px;background:#f8fbff;border:1px dashed rgba(23,63,152,.28)}
.tvz-nat-upload-row small{display:block;color:#64708a;margin-top:2px;font-weight:600;word-break:break-word}
.tvz-nat-upload-row.is-filled{border-style:solid;border-color:rgba(23,120,75,.35);background:#f4fbf7}
.tvz-nat-consent{display:flex!important;align-items:flex-start;gap:10px;margin-top:12px;line-height:1.45}
.tvz-nat-consent input{width:auto!important;margin-top:4px}
.tvz-nat-form-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.tvz-nat-form-actions .tvz-quick-link{width:auto}
.tvz-nat-form-message{font-weight:750}
.tvz-nat-form-message.is-success{color:#176b3a}
.tvz-nat-form-message.is-error{color:#b42318}
.tvz-nat-checklist{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.tvz-nat-checklist li{display:flex;align-items:center;gap:9px;color:#68758a;font-size:.88rem}
.tvz-nat-checklist li span{width:22px;height:22px;border-radius:999px;border:2px solid #d7deeb;display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto}
.tvz-nat-checklist li.is-complete{color:#176b3a;font-weight:800}
.tvz-nat-checklist li.is-complete span{background:#176b3a;border-color:#176b3a;color:#fff}
.tvz-nat-checklist li.is-complete span::before{content:'✓';font-size:.85rem;font-weight:900}
.tvz-nat-upload-usage{margin-top:12px;padding-top:12px;border-top:1px solid rgba(23,63,152,.12)}
.tvz-nat-upload-usage__top,.tvz-nat-upload-usage__bottom{display:flex;justify-content:space-between;gap:8px;font-size:.82rem;color:#56637a}
.tvz-nat-upload-usage__top strong{color:#15213a}
.tvz-nat-upload-bar{height:10px;border-radius:999px;background:#edf2f8;overflow:hidden;margin:10px 0}
.tvz-nat-upload-bar span{display:block;height:100%;border-radius:999px;background:#173f98;transition:width .18s ease,background .18s ease}
.tvz-nat-upload-usage.is-over .tvz-nat-upload-bar span{background:#b42318}
.tvz-nat-simple-link{display:flex;align-items:center;justify-content:space-between;text-decoration:none;padding:13px 14px;border-radius:14px;background:#fff;border:1px solid rgba(23,63,152,.14);color:#173f98;font-weight:800;box-shadow:0 10px 26px rgba(15,35,80,.06)}
.tvz-nat-simple-link::after{content:'›';font-size:1.35rem;line-height:1}
@media(max-width:1060px){.tvz-nat-closed-layout{grid-template-columns:1fr}.tvz-nat-closed-sidebar{position:static;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}.tvz-nat-form-layout{grid-template-columns:1fr}.tvz-nat-form-status{position:static}}
@media(max-width:700px){.tvz-nat-form-grid{grid-template-columns:1fr}.tvz-nat-competition>summary,.tvz-nat-point>summary{align-items:flex-start}.tvz-nat-form-actions{align-items:stretch}.tvz-nat-form-actions .tvz-quick-link{width:100%;justify-content:center}}
/* ===== END TVZ - Natjecaji integrirano ===== */

/* === TVZ 2026: Smjerovi - vizualni prikaz i opci sadrzaj === */
.tvz-layout--smjer{
  align-items:start;
}

.tvz-smjer-overview,
.tvz-smjer-plan,
.tvz-study-smjer-summary{
  position:relative;
  overflow:hidden;
}

.tvz-smjer-overview{
  display:grid;
  grid-template-columns:minmax(0, 1.7fr) minmax(240px, .8fr);
  gap:24px;
  padding:28px;
  margin-bottom:24px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(59,130,246,.14), transparent 36%),
    linear-gradient(135deg, #fff 0%, #f8fafc 100%);
  box-shadow:0 18px 36px rgba(15,23,42,.07);
}

.tvz-smjer-overview::before,
.tvz-study-smjer-summary::before{
  content:"";
  position:absolute;
  inset:auto -70px -110px auto;
  width:240px;
  height:240px;
  border-radius:999px;
  background:rgba(22,163,74,.10);
  pointer-events:none;
}

.tvz-smjer-overview__content,
.tvz-smjer-facts{
  position:relative;
  z-index:1;
}

.tvz-smjer-overview h2{
  margin:0 0 14px;
  color:var(--tvz-blue);
  font-size:clamp(24px, 2.4vw, 36px);
  line-height:1.12;
}

.tvz-smjer-overview__actions{
  margin-top:20px;
}

.tvz-smjer-facts{
  display:grid;
  gap:12px;
  align-content:start;
}

.tvz-smjer-fact{
  padding:16px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:18px;
  background:rgba(255,255,255,.86);
  box-shadow:0 12px 22px rgba(15,23,42,.05);
}

.tvz-smjer-fact span{
  display:block;
  margin-bottom:6px;
  color:#64748b;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tvz-smjer-fact strong{
  display:block;
  color:#0f172a;
  font-size:18px;
  line-height:1.25;
}

.tvz-smjer-plan{
  padding:24px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:24px;
  background:#fff;
  box-shadow:0 16px 32px rgba(15,23,42,.06);
}

.tvz-section-heading--compact{
  margin-bottom:18px;
}

.tvz-smjer-card-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  margin-top:12px;
}

.tvz-smjer-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:148px;
  padding:18px;
  border:1px solid rgba(30,58,138,.12);
  border-radius:20px;
  background:
    radial-gradient(circle at right top, rgba(59,130,246,.10), transparent 42%),
    #fff;
  text-decoration:none;
  color:inherit;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.tvz-smjer-card:hover,
.tvz-smjer-card:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(30,58,138,.28);
  box-shadow:0 18px 30px rgba(15,23,42,.09);
}

.tvz-smjer-card__title{
  color:var(--tvz-blue);
  font-size:18px;
  font-weight:800;
  line-height:1.22;
}

.tvz-smjer-card__desc{
  color:#475569;
  font-size:14px;
  line-height:1.55;
}

.tvz-smjer-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
}

.tvz-smjer-card__meta span,
.tvz-curriculum-eyebrow,
.tvz-sem-count--link{
  display:inline-flex;
  align-items:center;
  width:max-content;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.tvz-smjer-card__meta span{
  padding:6px 10px;
  background:#eef6ff;
  color:var(--tvz-blue);
}

.tvz-accordion--curriculum-visual > .tvz-accordion-toggle{
  padding:18px 20px;
  background:
    radial-gradient(circle at right top, rgba(22,163,74,.12), transparent 42%),
    linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.tvz-sem-header--visual{
  align-items:center;
  gap:16px;
}

.tvz-sem-header--visual .tvz-sem-left{
  display:flex;
  flex-direction:column;
  gap:5px;
}

.tvz-curriculum-eyebrow{
  padding:0;
  color:var(--tvz-green);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tvz-curriculum-title{
  color:var(--tvz-blue);
  font-size:18px;
  font-weight:800;
}

.tvz-curriculum-description{
  max-width:720px;
  color:#64748b;
  font-size:13px;
  line-height:1.45;
  font-weight:500;
}

.tvz-sem-count--link{
  padding:6px 10px;
  background:rgba(249,115,22,.10);
  color:#c2410c;
}

.tvz-curriculum-intro-link{
  margin-bottom:14px;
  padding:12px 14px;
  border:1px dashed rgba(30,58,138,.24);
  border-radius:14px;
  background:#f8fafc;
}

.tvz-curriculum-intro-link a{
  color:var(--tvz-blue);
  font-weight:800;
  text-decoration:none;
}

.tvz-accordion--smjer-semester:first-child{
  margin-top:0;
}

@media (max-width: 991px){
  .tvz-smjer-overview{
    grid-template-columns:1fr;
  }

  .tvz-smjer-card-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .tvz-smjer-overview,
  .tvz-smjer-plan{
    padding:18px;
    border-radius:18px;
  }

  .tvz-smjer-facts{
    grid-template-columns:1fr;
  }

  .tvz-sem-header--visual{
    align-items:flex-start;
  }
}

/* =====================================================
   TVZ v48 production alignment layer
   Primary: TVZ blue; accents: orange and green.
   This layer is intentionally appended so it can override older v46/v47 rules.
===================================================== */
:root{
  --tvz-blue:#004b87;
  --tvz-blue-dark:#002f5f;
  --tvz-blue-soft:#e6f0f8;
  --tvz-orange:#f97316;
  --tvz-orange-dark:#c2410c;
  --tvz-green:#16a34a;
  --tvz-green-dark:#166534;
  --tvz-text:#0f172a;
  --tvz-muted:#475569;
  --tvz-border:#dbe4ef;
  --tvz-surface:#ffffff;
  --tvz-surface-soft:#f8fafc;
  --tvz-radius-lg:22px;
  --tvz-radius-md:14px;
  --tvz-shadow-sm:0 8px 24px rgba(15,23,42,.08);
  --tvz-shadow-md:0 18px 48px rgba(15,23,42,.12);
}

body{color:var(--tvz-text);}
a{color:var(--tvz-blue);}
a:hover{color:var(--tvz-blue-dark);}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:3px solid rgba(249,115,22,.55);
  outline-offset:3px;
}

.tvz-topbar,
.tvz-utility,
.site-topbar{
  background:var(--tvz-blue-dark);
  color:#fff;
}
.tvz-topbar a,
.tvz-utility a,
.site-topbar a{
  color:#fff;
  text-decoration:none;
}
.tvz-topbar a:hover,
.tvz-utility a:hover,
.site-topbar a:hover{
  color:#fff;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.tvz-header,
.site-header{
  border-bottom:1px solid rgba(0,75,135,.14);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.tvz-main-menu a,
.primary-menu a,
.site-navigation a{
  color:var(--tvz-blue-dark);
  font-weight:800;
}
.tvz-main-menu a:hover,
.primary-menu a:hover,
.site-navigation a:hover,
.current-menu-item > a,
.current-menu-ancestor > a{
  color:var(--tvz-blue);
}

.tvz-hero,
.tvz-page-hero,
.tvz-front-hero,
.tvz-study-hero,
.tvz-org-hero{
  background:linear-gradient(135deg,var(--tvz-blue-dark),var(--tvz-blue));
  color:#fff;
}
.tvz-hero a,
.tvz-page-hero a,
.tvz-front-hero a,
.tvz-study-hero a,
.tvz-org-hero a{color:#fff;}

.tvz-btn,
.button,
.wp-block-button__link,
.tvz-cta,
.tvz-btn--primary{
  border-radius:999px;
  font-weight:800;
}
.tvz-btn--primary,
.wp-block-button__link,
.tvz-cta--primary{
  background:var(--tvz-blue);
  border-color:var(--tvz-blue);
  color:#fff;
}
.tvz-btn--primary:hover,
.wp-block-button__link:hover,
.tvz-cta--primary:hover{
  background:var(--tvz-blue-dark);
  border-color:var(--tvz-blue-dark);
  color:#fff;
}
.tvz-btn--accent,
.tvz-cta--accent,
.tvz-admissions-cta,
.tvz-upisi-cta{
  background:var(--tvz-orange);
  border-color:var(--tvz-orange);
  color:#fff;
}
.tvz-btn--success,
.tvz-status--active,
.tvz-badge--active,
.tvz-badge--open{
  background:rgba(22,163,74,.12);
  color:var(--tvz-green-dark);
  border-color:rgba(22,163,74,.28);
}

.tvz-card,
.tvz-news-card,
.tvz-study-card,
.tvz-org-card,
.tvz-document-card,
.tvz-program-card,
.tvz-project-card{
  border:1px solid var(--tvz-border);
  border-radius:var(--tvz-radius-lg);
  background:var(--tvz-surface);
  box-shadow:var(--tvz-shadow-sm);
}
.tvz-card:hover,
.tvz-news-card:hover,
.tvz-study-card:hover,
.tvz-org-card:hover,
.tvz-document-card:hover,
.tvz-program-card:hover,
.tvz-project-card:hover{
  box-shadow:var(--tvz-shadow-md);
  border-color:rgba(0,75,135,.25);
}

.tvz-card__eyebrow,
.tvz-eyebrow,
.tvz-section-kicker{
  color:var(--tvz-orange-dark);
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.tvz-badge,
.tvz-pill,
.tvz-tag{
  border-radius:999px;
  font-weight:800;
}
.tvz-badge--blue,
.tvz-pill--blue{background:var(--tvz-blue-soft);color:var(--tvz-blue-dark);}
.tvz-badge--orange,
.tvz-pill--orange{background:rgba(249,115,22,.12);color:var(--tvz-orange-dark);}
.tvz-badge--green,
.tvz-pill--green{background:rgba(22,163,74,.12);color:var(--tvz-green-dark);}

.tvz-document-folder,
.tvz-doc-folder,
.tvz-document-card{
  border-left:5px solid var(--tvz-blue);
}
.tvz-document-folder--important,
.tvz-doc-folder--important{
  border-left-color:var(--tvz-orange);
}

.tvz-tabs a[aria-selected="true"],
.tvz-tabs .is-active,
.tvz-tab.is-active{
  background:var(--tvz-blue);
  color:#fff;
}

.tvz-content table,
.entry-content table{
  border:1px solid var(--tvz-border);
  border-radius:var(--tvz-radius-md);
  overflow:hidden;
}
.tvz-content th,
.entry-content th{
  background:var(--tvz-blue-soft);
  color:var(--tvz-blue-dark);
}

.tvz-alert,
.tvz-notice{
  border-radius:var(--tvz-radius-md);
  border:1px solid var(--tvz-border);
  background:var(--tvz-surface-soft);
}
.tvz-alert--info{border-left:5px solid var(--tvz-blue);}
.tvz-alert--warning{border-left:5px solid var(--tvz-orange);}
.tvz-alert--success{border-left:5px solid var(--tvz-green);}

.site-footer,
.tvz-footer{
  background:var(--tvz-blue-dark);
  color:#fff;
}
.site-footer a,
.tvz-footer a{color:#fff;}
.site-footer a:hover,
.tvz-footer a:hover{text-decoration:underline;text-underline-offset:3px;}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
  }
}
