/* ── information-in-electronic-form.css → css/rti/information-in-electronic-form.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; }

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

.ief-card-header {
    display: flex; align-items: center; gap: .9rem;
    padding: 1rem 1.6rem; background: var(--G);
}
.ief-card-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
}
.ief-card-title { font-size: .9rem; font-weight: 800; color: var(--white); }
.ief-card-sub   { font-size: .7rem; color: rgba(255,255,255,.65); margin-top: .05rem; }

/* ── ITEM LIST ── */
.ief-list { padding: .3rem 0; }

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

/* number circle */
.ief-item-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--G); color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 800;
    box-shadow: 0 2px 6px rgba(30,58,138,.2); transition: var(--t);
}
.ief-item:hover .ief-item-num { transform: scale(1.1); }

/* icon */
.ief-item-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--G); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .88rem; flex-shrink: 0; transition: var(--t);
    box-shadow: 0 2px 8px rgba(30,58,138,.18);
}
.ief-item-icon--red   { background: #dc2626; box-shadow: 0 2px 8px rgba(220,38,38,.2); }
.ief-item-icon--green { background: #16a34a; box-shadow: 0 2px 8px rgba(22,163,74,.2); }
.ief-item:hover .ief-item-icon { opacity: .88; transform: scale(1.05); }

/* text */
.ief-item-text { flex: 1; min-width: 0; }
.ief-item-title {
    font-size: .9rem; font-weight: 600; color: var(--t1);
    transition: color .18s; line-height: 1.4;
}
.ief-item:hover .ief-item-title { color: var(--blue); }
.ief-item-sub {
    font-size: .76rem; color: var(--t3); margin-top: .15rem; line-height: 1.4;
}

/* action badge */
.ief-item-action {
    display: inline-flex; align-items: center; gap: .35rem;
    border-radius: 7px; padding: .32rem .85rem;
    font-size: .72rem; font-weight: 700;
    white-space: nowrap; flex-shrink: 0;
    transition: var(--t);
}
.ief-item-action--internal {
    background: var(--G); color: var(--white);
    box-shadow: 0 2px 8px rgba(30,58,138,.18);
}
.ief-item-action--pdf {
    background: #dc2626; color: var(--white);
    box-shadow: 0 2px 8px rgba(220,38,38,.2);
}
.ief-item:hover .ief-item-action { opacity: .88; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ief-item { padding: .85rem 1rem; gap: .75rem; }
    .ief-item-sub { display: none; }
}
@media (max-width: 480px) {
    .ief-item-num { display: none; }
    .ief-item-title { font-size: .84rem; }
    .ief-item-action { font-size: .68rem; padding: .28rem .65rem; }
}
@media print {
    .ief-card { box-shadow: none; border: 1px solid #ccc; }
    .ief-item-action { background: none !important; color: var(--blue) !important; box-shadow: none; border: 1px solid var(--blue); }
}