@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Source+Serif+4:wght@700;900&display=swap');

:root {
    --pira-blue: #0b3b8f;
    --pira-red: #E60000;
    --pira-dark: #111111;
    --pira-gray: #333333;
    --font-serif: 'Source Serif 4', serif;
    --font-sans: 'Inter', sans-serif;
}

body { font-family: var(--font-sans); background: #fff; color: var(--pira-gray); margin: 0; }
.v20-container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* HEADER NBC STYLE */
.pira-top-bar-v20 { background: var(--pira-blue); color: #fff; padding: 8px 0; font-size: 11px; font-weight: 800; }
.flex-top { display: flex; justify-content: space-between; align-items: center; }
.top-links a { margin-left: 20px; color: #fff; text-decoration: none; }

.pira-v20-main-header { 
    background: #fff; 
    border-bottom: 1px solid #eee; 
    padding: 20px 0; 
    position: sticky; 
    top: 0; 
    z-index: 999; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.header-grid-v20 { display: flex; justify-content: space-between; align-items: center; }
.v20-logo img { height: 40px; width: auto; }

.v20-primary-menu { display: flex; list-style: none; gap: 5px; }
.v20-primary-menu a { 
    text-transform: uppercase; 
    font-weight: 800; 
    font-size: 13px; 
    padding: 10px 15px; 
    color: var(--pira-dark);
}
.v20-primary-menu a:hover { color: var(--pira-red); }

/* HERO FLOW */
.v20-hero-flow { margin: 30px 0 50px; }
.hero-full-v20 .hero-frame { position: relative; height: 600px; border-radius: 12px; overflow: hidden; background: #000; }
.hero-full-v20 img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.hero-text-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 50px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: #fff; }
.hero-text-content h1 { font-family: var(--font-serif); font-size: 52px; line-height: 1.1; margin: 15px 0; }

/* CATEGORY FLOW */
.v20-section-flow { margin-bottom: 60px; }
.v20-flow-header { display: flex; justify-content: space-between; align-items: flex-end; padding-left: 20px; margin-bottom: 25px; }
.v20-flow-header h2 { font-weight: 900; font-size: 26px; text-transform: uppercase; }
.v20-flow-header a { font-weight: 800; font-size: 12px; color: #999; }

.v20-grid-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.v20-thumb { height: 160px; border-radius: 8px; overflow: hidden; margin-bottom: 15px; }
.v20-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v20-card-flow h3 { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--pira-dark); }

@media (max-width: 992px) {
    .v20-grid-flow { grid-template-columns: 1fr 1fr; }
    .hero-text-content h1 { font-size: 32px; }
    .v20-primary-menu { display: none; }
}
