/*
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; }

 ── TOOLBAR: search + year filter ── 
.pr-toolbar {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.1rem; flex-wrap: wrap;
}
.pr-search-wrap {
    flex: 1; min-width: 220px;
    position: relative;
}
.pr-search-icon {
    position: absolute; left: .9rem; top: 50%; transform: translateY(-50%);
    font-size: .82rem; color: var(--t3); pointer-events: none;
}
.pr-search {
    width: 100%; padding: .55rem 1rem .55rem 2.3rem;
    border: 1.5px solid var(--pale); border-radius: 9px;
    background: var(--white); color: var(--t1);
    font-size: .84rem; font-family: 'Poppins', sans-serif;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.pr-search:focus {
    border-color: var(--mid);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.pr-year-select {
    padding: .55rem 1rem; border: 1.5px solid var(--pale);
    border-radius: 9px; background: var(--white); color: var(--t1);
    font-size: .84rem; font-family: 'Poppins', sans-serif;
    cursor: pointer; outline: none; transition: border-color .2s;
    min-width: 130px;
}
.pr-year-select:focus { border-color: var(--mid); }

 ── LIST CARD ── 
.pr-list-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
}
.pr-list-card::before { content: ''; display: block; height: 4px; background: var(--G); }

 card header 
.pr-list-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.5rem; background: var(--G);
}
.pr-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: .9rem; color: var(--white); flex-shrink: 0;
}
.pr-list-header-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.pr-list-header-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .06rem; }
.pr-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: .2rem .85rem; white-space: nowrap; flex-shrink: 0;
}

 ── PRESS ITEM ROW — inspired by homepage press panel ── 
.pr-list { padding: .3rem 0; }

.pr-item {
    display: flex; align-items: center; gap: 1rem;
    padding: .85rem 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .18s, transform .2s;
}
.pr-item:last-child { border-bottom: none; }
.pr-item:hover { background: var(--xpale); transform: translateX(4px); }
.pr-item:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }

 date badge — same style as homepage press card 
.pr-date-badge {
    width: 52px; min-width: 52px; height: 52px; border-radius: 14px;
    background: var(--G);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(30,58,138,.22);
    flex-shrink: 0;
}
.pr-date-day {
    font-size: 1.05rem; font-weight: 900; color: var(--white);
    line-height: 1;
}
.pr-date-mon {
    font-size: .6rem; font-weight: 500; color: rgba(255,255,255,.8);
    line-height: 1; margin-top: .12rem; text-align: center;
    white-space: nowrap;
}

 title 
.pr-item-text { flex: 1; min-width: 0; }
.pr-item-title {
    font-size: .88rem; font-weight: 500; color: var(--t1);
    line-height: 1.45; transition: color .18s;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.pr-item:hover .pr-item-title { color: var(--blue); }

 arrow 
.pr-item-arrow {
    font-size: .82rem; color: var(--mid); flex-shrink: 0;
    transition: transform .2s;
}
.pr-item:hover .pr-item-arrow { transform: translateX(3px); }

 ── EMPTY STATE ── 
.pr-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .6rem; padding: 3rem 1rem;
    color: var(--t3); font-size: .88rem;
}
.pr-empty i { font-size: 2rem; color: var(--pale); }

 ── PAGINATION ── 
.pr-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: .4rem; padding: 1rem 1.5rem;
    border-top: 1px solid var(--pale);
    background: var(--xpale); flex-wrap: wrap;
}
.pr-page-btn {
    width: 34px; height: 34px; border-radius: 8px;
    border: 1.5px solid var(--pale);
    background: var(--white); color: var(--t2);
    font-size: .88rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--t);
}
.pr-page-btn:hover:not(:disabled) { background: var(--G); color: var(--white); border-color: transparent; }
.pr-page-btn:disabled { opacity: .3; cursor: not-allowed; }
.pr-page-numbers { display: flex; gap: .3rem; flex-wrap: wrap; }
.pr-page-num {
    min-width: 32px; height: 32px; border-radius: 7px;
    border: 1.5px solid var(--pale);
    background: var(--white); color: var(--t2);
    font-size: .76rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--t); font-family: 'Poppins', sans-serif;
}
.pr-page-num:hover  { background: var(--xpale); border-color: var(--mid); color: var(--blue); }
.pr-page-num.active {
    background: var(--G); color: var(--white);
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(30,58,138,.25);
}

 ── RESPONSIVE ── 
@media (max-width: 768px) {
    .pr-toolbar { flex-direction: column; align-items: stretch; }
    .pr-year-select { width: 100%; }
    .pr-item { padding: .75rem 1rem; gap: .75rem; }
    .pr-count-pill { display: none; }
}
@media (max-width: 480px) {
    .pr-date-badge { width: 44px; min-width: 44px; height: 44px; border-radius: 10px; }
    .pr-date-day { font-size: .9rem; }
    .pr-item-title { font-size: .82rem; }
}
@media print {
    .pr-list-card { box-shadow: none; border: 1px solid #ccc; }
}*/



/* ── press-releases.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 — 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; }

/* ── TOOLBAR: search + year filter ── */
.pr-toolbar {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 1.1rem; flex-wrap: wrap;
}
.pr-search-wrap {
    flex: 1; min-width: 220px;
    position: relative;
}
.pr-search-icon {
    position: absolute; left: .9rem; top: 50%; transform: translateY(-50%);
    font-size: .82rem; color: var(--t3); pointer-events: none;
}
.pr-search {
    width: 100%; padding: .55rem 1rem .55rem 2.3rem;
    border: 1.5px solid var(--pale); border-radius: 9px;
    background: var(--white); color: var(--t1);
    font-size: .84rem; font-family: 'Poppins', sans-serif;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.pr-search:focus {
    border-color: var(--mid);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.pr-year-select {
    padding: .55rem 1rem; border: 1.5px solid var(--pale);
    border-radius: 9px; background: var(--white); color: var(--t1);
    font-size: .84rem; font-family: 'Poppins', sans-serif;
    cursor: pointer; outline: none; transition: border-color .2s;
    min-width: 130px;
}
.pr-year-select:focus { border-color: var(--mid); }

/* ── LIST CARD ── */
.pr-list-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
}
.pr-list-card::before { content: ''; display: block; height: 4px; background: var(--G); }

/* card header */
.pr-list-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.5rem; background: var(--G);
}
.pr-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: .9rem; color: var(--white); flex-shrink: 0;
}
.pr-list-header-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.pr-list-header-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .06rem; }
.pr-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: .2rem .85rem; white-space: nowrap; flex-shrink: 0;
}

/* ── PRESS ITEM ROW — inspired by homepage press panel ── */
.pr-list { padding: .3rem 0; }

.pr-item {
    display: flex; align-items: center; gap: 1rem;
    padding: .85rem 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background .18s, transform .2s;
}
.pr-item:last-child { border-bottom: none; }
.pr-item:hover { background: var(--xpale); transform: translateX(4px); }
.pr-item:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }

/* date badge — same style as homepage press card */
.pr-date-badge {
    width: 52px; min-width: 52px; height: 52px; border-radius: 14px;
    background: var(--G);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(30,58,138,.22);
    flex-shrink: 0;
}
.pr-date-day {
    font-size: 1.05rem; font-weight: 900; color: var(--white);
    line-height: 1;
}
.pr-date-mon {
    font-size: .6rem; font-weight: 500; color: rgba(255,255,255,.8);
    line-height: 1; margin-top: .12rem; text-align: center;
    white-space: nowrap;
}

/* title */
.pr-item-text { flex: 1; min-width: 0; }
.pr-item-title {
    font-size: .88rem; font-weight: 500; color: var(--t1);
    line-height: 1.45; transition: color .18s;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.pr-item:hover .pr-item-title { color: var(--blue); }

/* arrow */
.pr-item-arrow {
    font-size: .82rem; color: var(--mid); flex-shrink: 0;
    transition: transform .2s;
}
.pr-item:hover .pr-item-arrow { transform: translateX(3px); }

/* ── EMPTY STATE ── */
.pr-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: .6rem; padding: 3rem 1rem;
    color: var(--t3); font-size: .88rem;
}
.pr-empty i { font-size: 2rem; color: var(--pale); }

/* ── PAGINATION ── */
.pr-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: .4rem; padding: 1rem 1.5rem;
    border-top: 1px solid var(--pale);
    background: var(--xpale); flex-wrap: wrap;
}
.pr-page-btn {
    width: 34px; height: 34px; border-radius: 8px;
    border: 1.5px solid var(--pale);
    background: var(--white); color: var(--t2);
    font-size: .88rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--t);
}
.pr-page-btn:hover:not(:disabled) { background: var(--G); color: var(--white); border-color: transparent; }
.pr-page-btn:disabled { opacity: .3; cursor: not-allowed; }
.pr-page-numbers { display: flex; gap: .3rem; flex-wrap: wrap; }
.pr-page-num {
    min-width: 32px; height: 32px; border-radius: 7px;
    border: 1.5px solid var(--pale);
    background: var(--white); color: var(--t2);
    font-size: .76rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--t); font-family: 'Poppins', sans-serif;
}
.pr-page-num:hover  { background: var(--xpale); border-color: var(--mid); color: var(--blue); }
.pr-page-num.active {
    background: var(--G); color: var(--white);
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(30,58,138,.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .pr-toolbar { flex-direction: column; align-items: stretch; }
    .pr-year-select { width: 100%; }
    .pr-item { padding: .75rem 1rem; gap: .75rem; }
    .pr-count-pill { display: none; }
}
@media (max-width: 480px) {
    .pr-date-badge { width: 44px; min-width: 44px; height: 44px; border-radius: 10px; }
    .pr-date-day { font-size: .9rem; }
    .pr-item-title { font-size: .82rem; }
}
@media print {
    .pr-list-card { box-shadow: none; border: 1px solid #ccc; }
}