/* ===== KrisLMS — programmes.css ===== */

.ph {
    background: var(--navy);
    padding-top: 102px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}
.ph-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.ph-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 40% 80% at 5% 50%,
        rgba(14, 116, 144, 0.18) 0%,
        transparent 70%
    );
}
.ph-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 48px 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.bc {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.bc a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-family: "DM Mono", monospace;
}
.bc a:hover {
    color: var(--gold);
}
.bc-sep {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}
.bc span {
    font-size: 12px;
    color: var(--gold);
    font-family: "DM Mono", monospace;
}
.ph-inner h1 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 7px;
}
.ph-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.7;
    max-width: 460px;
}
.ph-stats {
    display: flex;
    gap: 28px;
    flex-shrink: 0;
}
.ph-sn {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}
.ph-sl {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "DM Mono", monospace;
    letter-spacing: 0.08em;
    margin-top: 1px;
}
.cat {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    padding: 32px 40px 60px;
    gap: 24px;
    align-items: flex-start;
}
/* SIDEBAR */
.sb {
    width: 236px;
    flex-shrink: 0;
    position: sticky;
    top: 84px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--grey-200);
    overflow: hidden;
}
.sb-srch {
    padding: 12px;
    border-bottom: 1px solid var(--grey-100);
}
.sb-sw {
    position: relative;
}
.sb-sw svg {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-400);
    width: 13px;
    height: 13px;
}
.sb-sw input {
    width: 100%;
    padding: 8px 10px 8px 28px;
    border: 1px solid var(--grey-200);
    border-radius: 7px;
    font-size: 12px;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--grey-50);
    outline: none;
    transition: border-color 0.2s;
}
.sb-sw input:focus {
    border-color: var(--teal);
    background: var(--white);
}
.sb-g {
    padding: 12px 12px 9px;
    border-bottom: 1px solid var(--grey-100);
}
.sb-g:last-of-type {
    border-bottom: none;
}
.sb-gt {
    font-size: 9px;
    font-weight: 600;
    color: var(--grey-400);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 9px;
}
.sb-o {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 6px;
    cursor: pointer;
    user-select: none;
}
.sb-o:last-child {
    margin-bottom: 0;
}
.sb-ck {
    width: 14px;
    height: 14px;
    border: 1.5px solid var(--grey-300);
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    margin-top: 1px;
}
.sb-o.active .sb-ck {
    background: var(--navy);
    border-color: var(--navy);
}
.sb-o.active .sb-ck::after {
    content: "✓";
    font-size: 9px;
    color: white;
    font-weight: 700;
    line-height: 1;
}
.sb-ol {
    font-size: 12px;
    color: var(--grey-700);
    line-height: 1.35;
}
.sb-oc {
    margin-left: auto;
    font-size: 10px;
    color: var(--grey-400);
    font-family: "DM Mono", monospace;
    white-space: nowrap;
}
.cat-pills {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 4px;
}
.cat-pill {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1.5px solid var(--grey-200);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--grey-700);
    line-height: 1.3;
}
.cat-pill.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.cat-pill:hover:not(.active) {
    border-color: var(--grey-300);
    background: var(--grey-50);
}
.grc-sub {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--grey-200);
    animation: fadeIn 0.2s ease;
}
.grc-sub.hidden {
    display: none;
}
.grc-sub-label {
    font-size: 9px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 8px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.geo-row {
    display: flex;
    gap: 5px;
}
.geo-p {
    padding: 4px 10px;
    border-radius: 16px;
    border: 1.5px solid var(--grey-200);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    color: var(--grey-700);
}
.geo-p.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.sb-clr {
    display: block;
    width: 100%;
    padding: 9px;
    background: none;
    border: none;
    border-top: 1px solid var(--grey-100);
    font-size: 11px;
    color: var(--teal);
    font-weight: 600;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
}
.sb-clr:hover {
    color: var(--navy);
}
/* MAIN */
.main {
    flex: 1;
    min-width: 0;
}
.rb {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
}
.rb strong {
    color: var(--navy);
    font-weight: 600;
}
.rb-count {
    font-size: 14px;
    color: var(--grey-500);
}
/* SECTION DIVIDER */
.sdiv {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0 18px;
}
.sdiv-line {
    flex: 1;
    height: 1px;
    background: var(--grey-200);
}
.sbadge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    white-space: nowrap;
}
.sb-cpd {
    background: var(--navy);
    color: var(--white);
}
.sb-pend {
    background: #78350f;
    color: white;
}
.sb-nism {
    background: #1e3a5f;
    color: var(--white);
}
.sb-noncpd {
    background: var(--grey-700);
    color: var(--white);
}
.sb-partner {
    background: #4c1d95;
    color: var(--white);
}
/* CARD GRID */
.cgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 4px;
}
/* CARD */
.pc {
    background: var(--white);
    border-radius: 11px;
    border: 1px solid var(--grey-200);
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.2s,
        border-color 0.2s;
}
.pc.vis {
    opacity: 1;
    transform: translateY(0);
}
.pc:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
    border-color: var(--grey-300);
}
.cb {
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 9px 9px;
    gap: 4px;
    flex-wrap: wrap;
}
.bov {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
}
.d-afc {
    background: linear-gradient(135deg, #0f2044, #1b3a6b);
}
.d-or {
    background: linear-gradient(135deg, #0e4d2f, #166534);
}
.d-is {
    background: linear-gradient(135deg, #0c3547, #0e7490);
}
.d-ts {
    background: linear-gradient(135deg, #2d1b0e, #92400e);
}
.d-erm {
    background: linear-gradient(135deg, #1c1a0a, #c9a84c);
}
.d-tprm {
    background: linear-gradient(135deg, #1a0a2e, #4c1d95);
}
.d-rc {
    background: linear-gradient(135deg, #0a1628, #1e3a5f);
}
.d-rcc {
    background: linear-gradient(135deg, #0f2044, #334155);
}
.d-aa {
    background: linear-gradient(135deg, #1a0a0a, #7f1d1d);
}
.pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}
.p-cert {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
}
.p-cpd {
    background: var(--gold);
    color: var(--navy);
}
.p-pend {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.p-live {
    background: #16a34a;
    color: white;
}
.p-soon {
    background: #d97706;
    color: white;
}
.p-nism {
    background: #3b82f6;
    color: white;
}
.cbody {
    padding: 12px 13px 9px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cd {
    font-size: 9px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 4px;
}
.ct {
    font-family: "Playfair Display", serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 6px;
}
.cdesc {
    font-size: 11px;
    color: var(--grey-500);
    line-height: 1.65;
    flex: 1;
}
.cmeta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 8px 13px;
    border-top: 1px solid var(--grey-100);
}
.cm {
    font-size: 9px;
    color: var(--grey-500);
    font-family: "DM Mono", monospace;
}
.cm strong {
    color: var(--grey-700);
}
.ccta {
    padding: 8px 13px 12px;
}
.btn {
    display: block;
    width: 100%;
    padding: 8px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}
.btn:hover {
    background: var(--navy-mid);
}
.btn-enq {
    background: var(--teal);
}
.btn-enq:hover {
    background: #0c6480 !important;
}
.btn-nism {
    background: #1d4ed8;
}
.btn-soon {
    background: var(--grey-300);
    color: var(--grey-500);
    pointer-events: none;
}
/* NISM */
.nism-box {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--grey-200);
    overflow: hidden;
}
.nh {
    background: #1e3a5f;
    padding: 20px 24px;
}
.nh h3 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}
.nh p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 580px;
}
.nbody {
    padding: 4px 24px 18px;
}
.nr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-100);
    gap: 10px;
}
.nr:last-of-type {
    border-bottom: none;
}
.nd-m {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
}
.nd-o {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grey-300);
    flex-shrink: 0;
}
.nl {
    display: flex;
    align-items: center;
    gap: 9px;
}
.nn {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
}
.nm {
    font-size: 10px;
    color: var(--grey-400);
    font-family: "DM Mono", monospace;
    margin-top: 1px;
}
.nr-r {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}
.mt {
    font-size: 9px;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    padding: 2px 7px;
    border-radius: 3px;
    font-family: "DM Mono", monospace;
}
.nlink {
    font-size: 11px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    font-family: "DM Mono", monospace;
    transition: color 0.2s;
}
.nlink:hover {
    color: var(--navy);
}
.nse {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 14px 17px;
    margin-top: 14px;
}
.nse-lbl {
    font-size: 9px;
    font-weight: 600;
    color: #1d4ed8;
    font-family: "DM Mono", monospace;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.nse blockquote {
    font-size: 12px;
    color: var(--grey-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 5px;
}
.nse-src {
    font-size: 10px;
    color: var(--grey-400);
    font-family: "DM Mono", monospace;
}
.nse-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 7px;
}
.nse-pill {
    font-size: 10px;
    font-weight: 600;
    color: #1d4ed8;
    background: #dbeafe;
    padding: 2px 7px;
    border-radius: 3px;
    font-family: "DM Mono", monospace;
}
/* DOMAIN TILES */
.dgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 4px;
}
.dtile {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 11px;
    padding: 18px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}
.dtile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transition: width 0.2s;
    background-color: #1a234a;
}
.dtile:hover {
    border-color: var(--grey-300);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
}
.dtile.open {
    border-color: var(--navy);
    box-shadow: 0 4px 18px rgba(15, 32, 68, 0.1);
}
.dt-afc::before {
    background: #1b3a6b;
}
.dt-or::before {
    background: #166534;
}
.dt-is::before {
    background: #0e7490;
}
.dt-ts::before {
    background: #92400e;
}
.dt-erm::before {
    background: var(--gold);
}
.dt-tprm::before {
    background: #4c1d95;
}
.dt-rc::before {
    background: #1e3a5f;
}
.dt-rcc::before {
    background: #334155;
}
.dt-aa::before {
    background: #7f1d1d;
}
.dt-ic {
    width: 36px;
    height: 36px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.dt-afc .dt-ic {
    background: #eff6ff;
}
.dt-or .dt-ic {
    background: #f0fdf4;
}
.dt-is .dt-ic {
    background: #ecfeff;
}
.dt-ts .dt-ic {
    background: #fff7ed;
}
.dt-erm .dt-ic {
    background: #fefce8;
}
.dt-tprm .dt-ic {
    background: #f5f3ff;
}
.dt-rc .dt-ic {
    background: #f0f9ff;
}
.dt-rcc .dt-ic {
    background: #f8fafc;
}
.dt-aa .dt-ic {
    background: #fff1f2;
}
.dt-inf {
    flex: 1;
    min-width: 0;
}
.dt-nm {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1px;
}
.dt-ct {
    font-size: 10px;
    color: var(--grey-400);
    font-family: "DM Mono", monospace;
}
.dt-ar {
    font-size: 14px;
    color: var(--grey-400);
    transition: transform 0.25s;
    flex-shrink: 0;
}
.dtile.open .dt-ar {
    transform: rotate(90deg);
    color: var(--navy);
}
/* DRAWER */
.drawer {
    display: none;
    margin-top: 4px;
    margin-bottom: 18px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 11px;
    overflow: hidden;
    animation: dIn 0.25s ease;
}
@keyframes dIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.drawer.open {
    display: block;
}
.dh {
    padding: 12px 18px;
    border-bottom: 1px solid var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dh-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
}
.dh-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--grey-400);
    cursor: pointer;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 4px;
}
.dh-close:hover {
    color: var(--navy);
}
.clist {
    padding: 4px 0;
}
.crow {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid var(--grey-50);
    gap: 10px;
}
.crow:last-child {
    border-bottom: none;
}
.crow:hover {
    background: var(--grey-50);
}
.cr-n {
    font-size: 10px;
    color: var(--grey-400);
    font-family: "DM Mono", monospace;
    width: 20px;
    flex-shrink: 0;
}
.cr-i {
    flex: 1;
    min-width: 0;
}
.cr-nm {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1px;
}
.cr-mt {
    font-size: 10px;
    color: var(--grey-400);
    font-family: "DM Mono", monospace;
}
.cr-ar {
    font-size: 12px;
    color: var(--grey-300);
    transition: color 0.15s;
}
.crow:hover .cr-ar {
    color: var(--teal);
}
/* PANEL */
.pov {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.pov.open {
    opacity: 1;
    pointer-events: all;
}
.spanel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 560px;
    background: var(--white);
    z-index: 500;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
.spanel.open {
    transform: translateX(0);
}
.phead {
    background: var(--navy);
    padding: 22px 26px 18px;
    position: sticky;
    top: 0;
    z-index: 10;
}
.pclose {
    position: absolute;
    top: 14px;
    right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.pclose:hover {
    background: rgba(255, 255, 255, 0.2);
}
.p-dom {
    font-size: 9px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 6px;
}
.p-ttl {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 8px;
}
.pbody {
    padding: 22px 26px;
}
.pov-ttl {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.pov-txt {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.75;
    margin-bottom: 16px;
}
.pnote {
    background: #fefce8;
    border: 1px solid #fde68a;
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 11px 14px;
    margin-bottom: 18px;
    font-size: 12px;
    color: var(--grey-700);
    line-height: 1.65;
}
.pnote strong {
    color: var(--navy);
}
.pmgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.pmi {
    background: var(--grey-50);
    border-radius: 7px;
    padding: 11px 13px;
}
.pml {
    font-size: 9px;
    font-weight: 600;
    color: var(--grey-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 3px;
}
.pmv {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
}
.pm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 3px;
}
.pm-tag {
    font-size: 10px;
    background: var(--grey-200);
    color: var(--grey-700);
    padding: 2px 7px;
    border-radius: 3px;
    font-family: "DM Mono", monospace;
}
.pinstr {
    background: var(--navy);
    border-radius: 9px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.pi-ph {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.pi-i {
    flex: 1;
}
.pi-rl {
    font-size: 9px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 3px;
}
.pi-nm {
    font-family: "Playfair Display", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}
.pi-ti {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 7px;
}
.pi-bi {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.7;
}
.pcta {
    display: block;
    width: 100%;
    padding: 13px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    text-decoration: none;
}
.pcta:hover {
    background: var(--gold-light);
}
.sec-blk.hidden {
    display: none;
}
.pc.hidden {
    display: none;
}
/* FOOTER */
footer {
    background: var(--navy);
    padding: 44px 48px 0;
    margin-top: 0;
}
.fg {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fb .fw {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}
.fb .fw span {
    color: var(--gold);
}
.fb .ft {
    font-size: 10px;
    color: var(--gold);
    font-family: "DM Mono", monospace;
    letter-spacing: 0.08em;
    margin: 3px 0 9px;
}
.fb p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.7;
    max-width: 210px;
}
.fc h5 {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: "DM Mono", monospace;
    margin-bottom: 11px;
}
.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.fc a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}
.fc a:hover {
    color: var(--gold-light);
}
.fa {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 8px 11px;
    margin-bottom: 6px;
}
.fa-l {
    font-size: 9px;
    color: var(--gold);
    font-family: "DM Mono", monospace;
    font-weight: 600;
    letter-spacing: 0.07em;
    margin-bottom: 1px;
}
.fa-v {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}
.fbot {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}
.fbot p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.18);
}

/* ── SITE-WIDE TICKER ── */
.ticker-bar {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 290;
    background: rgba(8, 15, 34, 0.96);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(8px);
    height: 34px;
    overflow: hidden;
}
.ticker-bar::before,
.ticker-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker-bar::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 15, 34, 0.98), transparent);
}
.ticker-bar::after {
    right: 0;
    background: linear-gradient(270deg, rgba(8, 15, 34, 0.98), transparent);
}
.ticker-track {
    display: flex;
    align-items: center;
    height: 34px;
    animation: tickerSlide 40s linear infinite;
    width: max-content;
}
.ticker-track:hover {
    animation-play-state: paused;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 48px 0 0;
    white-space: nowrap;
}
.ticker-tag {
    font-size: 8px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 3px;
    font-family: "DM Mono", monospace;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.ticker-tag.new {
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.25);
}
.ticker-tag.live {
    background: rgba(22, 163, 74, 0.12);
    color: #4ade80;
    border: 1px solid rgba(22, 163, 74, 0.25);
}
.ticker-tag.cpd {
    background: rgba(139, 92, 246, 0.12);
    color: #a78bfa;
    border: 1px solid rgba(139, 92, 246, 0.25);
}
.ticker-tag.info {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-tag.soon {
    background: rgba(14, 116, 144, 0.15);
    color: #0ea5c9;
    border: 1px solid rgba(14, 116, 144, 0.25);
}
.ticker-text {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.42);
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.ticker-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px 0 -32px;
    flex-shrink: 0;
}
@keyframes tickerSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Push page content down to account for ticker */
body.has-ticker nav ~ *:not(.ticker-bar) {
    margin-top: 0;
}

.cb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 key line */
    display: block;
}
