/* ── policies.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides */
/*.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header:not(.scrolled) .nav-link,
.ireda-header:not(.scrolled) .glass-btn { color: rgba(255,255,255,0.92) !important; text-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.ireda-header:not(.scrolled) .utility-link    { color: rgba(255,255,255,0.75) !important; }
.ireda-header:not(.scrolled) .utility-divider { color: rgba(255,255,255,0.35) !important; }
.ireda-header:not(.scrolled) .col-lg-2 img    { filter: none !important; opacity: 1 !important; }
.ireda-header.scrolled .nav-link,
.ireda-header.scrolled .glass-btn             { color: var(--t2) !important; text-shadow: none !important; }
.ireda-header.scrolled .utility-link          { color: var(--t3) !important; }
.ireda-header.scrolled .col-lg-2 img          { filter: none !important; opacity: .92 !important; }*/

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ── LIST CARD ── */
.pol-list-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
}
.pol-list-card::before { content: ''; display: block; height: 4px; background: var(--G); }

/* card header */
.pol-list-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1.1rem 1.6rem; background: var(--G);
}
.pol-list-header-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: .92rem; color: var(--white); flex-shrink: 0;
}
.pol-list-header-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.pol-list-header-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .08rem; }
.pol-count-pill {
    margin-left: auto;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); border-radius: 20px;
    font-size: .68rem; font-weight: 700;
    padding: .22rem .9rem; white-space: nowrap; flex-shrink: 0;
}

/* ── LIST ITEMS ── */
.pol-list { padding: .3rem 0; }

.pol-item {
    display: flex; align-items: center; gap: .85rem;
    padding: .9rem 1.6rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s;
}
.pol-item:last-child { border-bottom: none; }
.pol-item:hover { background: var(--xpale); }
.pol-item:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }

.pol-item-num {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--xpale); border: 1px solid var(--pale);
    color: var(--blue); font-size: .7rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pol-item-icon {
    width: 34px; height: 34px; border-radius: 9px;
    background: var(--G); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30,58,138,.15);
    transition: var(--t);
}
.pol-item:hover .pol-item-icon { transform: scale(1.08); }

.pol-item-text {
    flex: 1; min-width: 0;
    font-size: .88rem; font-weight: 500; color: var(--t1);
    line-height: 1.45; transition: color .15s;
}
.pol-item:hover .pol-item-text { color: var(--blue); }

.pol-item-arrow {
    font-size: .82rem; color: var(--mid); flex-shrink: 0;
    transition: transform .2s;
}
.pol-item:hover .pol-item-arrow { transform: translateX(3px); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .pol-item { padding: .8rem 1.1rem; gap: .7rem; }
    .pol-count-pill { display: none; }
}
@media (max-width: 576px) {
    .pol-item-text { font-size: .82rem; }
    .pol-item-icon { width: 28px; height: 28px; font-size: .72rem; }
}
@media print {
    .pol-list-card { box-shadow: none; border: 1px solid #ccc; }
}