/* ============================================================
   DEFAULT PAGE TEMPLATE — Politika privatnosti, Uslovi, itd.
   ============================================================ */

/* ── Page Header ── */
.pg-header {
    background: var(--secondary);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.pg-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(197,38,105,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.pg-header__inner {
    position: relative;
    z-index: 1;
}

.pg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.pg-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.pg-breadcrumb a:hover { color: var(--primary); }

.pg-breadcrumb span:last-child { color: rgba(255,255,255,0.85); }

.pg-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
}

.pg-header__meta {
    margin: 12px 0 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ── Page Body ── */
.pg-body {
    padding: 64px 0 96px;
    background: var(--white);
}

.pg-content {
    max-width: 820px;
}

/* ── Typography — stilovi za sadržaj iz WP editora ── */

.pg-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: var(--secondary);
    margin: 48px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    line-height: 1.3;
}

.pg-content h2:first-child { margin-top: 0; }

.pg-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 32px 0 10px;
}

.pg-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin: 24px 0 8px;
}

.pg-content p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #3a3a3a;
    margin: 0 0 16px;
}

.pg-content ul,
.pg-content ol {
    padding-left: 24px;
    margin: 0 0 20px;
}

.pg-content ul { list-style: none; padding-left: 0; }

.pg-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.97rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.pg-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

.pg-content ol li {
    font-size: 0.97rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 8px;
    padding-left: 4px;
}

.pg-content strong,
.pg-content b {
    font-weight: 700;
    color: var(--secondary);
}

.pg-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pg-content a:hover { color: #a01f54; }

.pg-content blockquote {
    border-left: 3px solid var(--primary);
    margin: 24px 0;
    padding: 16px 24px;
    background: #fdf5f9;
    font-style: italic;
    color: #555;
    border-radius: 0 4px 4px 0;
}

.pg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}

.pg-content table th {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.pg-content table td {
    padding: 11px 16px;
    border-bottom: 1px solid #eee;
    color: #3a3a3a;
    vertical-align: top;
}

.pg-content table tr:nth-child(even) td { background: #fafafa; }

/* Separator između sekcija */
.pg-content hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 40px 0;
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

@media (min-width: 1200px) {
    .container { padding: 0 60px; }
}
