
.incom-tracks {
    --incom-blue: #006eb6;
    --incom-blue-dark: #005d9a;
    --incom-session-blue: #2187c7;
    --incom-session-blue-dark: #1978b5;
    --impaqt-green: #2f7d4d;
    --impaqt-green-dark: #276b41;
    --impaqt-session-green: #4b9565;
    --impaqt-session-green-dark: #3d8155;
    --impaqt-green-light: #edf7f0;
    --text-dark: #263648;
    --text-medium: #485769;
    --text-light: #697789;
    --border-light: #d6e0ea;

    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 20px 70px;
    font-family: inherit;
}

.incom-tracks-header {
    margin-bottom: 35px;
    text-align: center;
}

.incom-tracks-header h1 {
    margin: 0 0 12px;
    color: var(--incom-blue);
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.15;
}

.incom-tracks-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #536273;
    font-size: 17px;
    line-height: 1.6;
}

.incom-track-tools {
    margin-top: 30px;
}

.incom-main-search,
.impaqt-search {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #c8d3e1;
    border-radius: 9px;
    background: #ffffff;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 16px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.incom-main-search {
    max-width: 720px;
}

.incom-main-search:focus {
    border-color: var(--incom-blue);
    box-shadow: 0 0 0 3px rgba(0, 110, 182, 0.14);
}

.incom-track-filters,
.impaqt-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.incom-track-filters {
    justify-content: center;
    margin-top: 18px;
}

.incom-filter-button,
.impaqt-filter-button {
    padding: 10px 17px;
    border-radius: 999px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.incom-filter-button {
    border: 1px solid var(--incom-blue);
    color: var(--incom-blue);
}

.incom-filter-button:hover,
.impaqt-filter-button:hover {
    transform: translateY(-1px);
}

.incom-filter-button:hover {
    box-shadow: 0 4px 10px rgba(0, 110, 182, 0.12);
}

.incom-filter-button.active {
    background: var(--incom-blue);
    color: #ffffff;
}

.incom-impaqt-filter {
    border-color: var(--impaqt-green);
    color: var(--impaqt-green);
}

.incom-impaqt-filter.active {
    background: var(--impaqt-green);
    color: #ffffff;
}

.incom-track-list {
    display: grid;
    gap: 18px;
}

.incom-track-card {
    overflow: hidden;
    border: 1px solid #cad5e3;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(24, 50, 83, 0.08);
}

.incom-track-card-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 25px;
    border: 0;
    background: var(--incom-blue);
    color: #ffffff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.incom-track-card-header:hover {
    background: var(--incom-blue-dark);
}

.incom-track-card-header:focus-visible,
.impaqt-item-header:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: -5px;
}

.incom-track-heading,
.impaqt-item-heading {
    min-width: 0;
}

.incom-track-meta,
.impaqt-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
}

.incom-track-type,
.incom-track-code {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 11px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: #ffffff;
    color: var(--incom-blue);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.incom-track-type {
    letter-spacing: 0.08em;
}

.incom-track-code {
    letter-spacing: 0.045em;
}

.incom-code-label {
    margin-right: 4px;
    font-weight: 600;
}

.incom-track-card-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(20px, 3vw, 27px);
    line-height: 1.25;
}

.incom-track-arrow,
.impaqt-item-arrow {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #ffffff;
    line-height: 1;
}

.incom-track-arrow {
    width: 34px;
    height: 34px;
    font-size: 22px;
}

.incom-track-content {
    display: grid;
    grid-template-columns: minmax(240px, 330px) 1fr;
    gap: 42px;
    padding: 30px 28px 32px;
    background: #ffffff;
}

.incom-track-content[hidden],
.impaqt-item-content[hidden] {
    display: none;
}

.incom-track-left {
    padding-right: 30px;
    border-right: 1px solid var(--border-light);
    text-align: left;
}

.incom-track-section + .incom-track-section {
    margin-top: 28px;
}

.incom-track-content h3 {
    margin: 0 0 11px;
    color: var(--incom-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.incom-track-content p {
    margin: 0;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

.incom-track-right p,
.impaqt-item-right p {
    text-align: justify;
}

.incom-proposers,
.incom-proposers h3 {
    text-align: left;
}

.incom-proposer {
    margin-bottom: 21px;
}

.incom-proposer:last-child {
    margin-bottom: 0;
}

.incom-proposer-name,
.incom-proposer-affiliation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    text-align: left;
}

.incom-proposer-name {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.incom-proposer-affiliation {
    margin-top: 5px;
    color: var(--text-light);
    font-size: 13px;
    font-style: italic;
    line-height: 1.45;
}

.incom-person-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 17px;
    width: 17px;
    height: 18px;
}

.incom-person-icon::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--incom-blue);
}

.incom-person-icon::after {
    content: "";
    position: absolute;
    right: 1px;
    bottom: 0;
    left: 1px;
    height: 8px;
    border-radius: 8px 8px 3px 3px;
    background: var(--incom-blue);
}

.incom-affiliation-icon {
    position: relative;
    display: inline-block;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.incom-affiliation-icon::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 2px;
    width: 14px;
    height: 5px;
    background: #7d8997;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.incom-affiliation-icon::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 1px;
    left: 3px;
    height: 10px;
    border-top: 2px solid #7d8997;
    border-bottom: 2px solid #7d8997;
    background:
        linear-gradient(
            to right,
            #7d8997 0 2px,
            transparent 2px 5px,
            #7d8997 5px 7px,
            transparent 7px 10px,
            #7d8997 10px 12px
        );
}

.incom-downloads,
.impaqt-downloads {
    text-align: left;
}

.incom-downloads a,
.impaqt-downloads a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.incom-downloads a {
    color: var(--incom-blue);
}

.impaqt-downloads a {
    color: var(--impaqt-green);
}

.incom-downloads a::before,
.impaqt-downloads a::before {
    content: "↓";
    margin-right: 8px;
    font-size: 17px;
    line-height: 1;
}

.incom-downloads a:hover,
.impaqt-downloads a:hover {
    text-decoration: underline;
}

.incom-session-card .incom-track-card-header {
    background: var(--incom-session-blue);
}

.incom-session-card .incom-track-card-header:hover {
    background: var(--incom-session-blue-dark);
}

.incom-session-card .incom-track-type,
.incom-session-card .incom-track-code {
    color: var(--incom-session-blue-dark);
}

.incom-impaqt-card {
    border-color: #9ec9ae;
}

.incom-impaqt-card > .incom-track-card-header {
    background: var(--impaqt-green);
}

.incom-impaqt-card > .incom-track-card-header:hover {
    background: var(--impaqt-green-dark);
}

.incom-impaqt-card > .incom-track-card-header .incom-track-type {
    color: var(--impaqt-green);
}

.incom-impaqt-card .incom-person-icon::before,
.incom-impaqt-card .incom-person-icon::after {
    background: var(--impaqt-green);
}

.incom-impaqt-content {
    display: block;
    padding: 30px;
    background: #ffffff;
}

.incom-impaqt-content[hidden] {
    display: none;
}

.impaqt-introduction {
    padding: 0 0 25px;
    border-bottom: 1px solid #dbe8df;
}

.impaqt-introduction h3 {
    margin: 0 0 10px;
    color: var(--impaqt-green);
    font-size: 22px;
}

.impaqt-introduction p {
    max-width: 900px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

.impaqt-tools {
    padding: 25px 0;
}

.impaqt-search {
    max-width: 100%;
}

.impaqt-search:focus {
    border-color: var(--impaqt-green);
    box-shadow: 0 0 0 3px rgba(47, 125, 77, 0.14);
}

.impaqt-filters {
    justify-content: flex-start;
    margin-top: 15px;
}

.impaqt-filter-button {
    border: 1px solid var(--impaqt-green);
    color: var(--impaqt-green);
}

.impaqt-filter-button:hover {
    box-shadow: 0 4px 10px rgba(47, 125, 77, 0.14);
}

.impaqt-filter-button.active {
    background: var(--impaqt-green);
    color: #ffffff;
}

.impaqt-item-list {
    display: grid;
    gap: 14px;
}

.impaqt-item {
    overflow: hidden;
    border: 1px solid #a9cdb5;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(47, 125, 77, 0.07);
}

.impaqt-item-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border: 0;
    background: var(--impaqt-green);
    color: #ffffff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.impaqt-item-header:hover {
    background: var(--impaqt-green-dark);
}

.impaqt-item-type {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--impaqt-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1;
    text-transform: uppercase;
}

.impaqt-session-item .impaqt-item-header {
    background: var(--impaqt-session-green);
}

.impaqt-session-item .impaqt-item-header:hover {
    background: var(--impaqt-session-green-dark);
}

.impaqt-session-item .impaqt-item-type {
    color: var(--impaqt-session-green-dark);
}

.impaqt-item-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(18px, 2.5vw, 23px);
    line-height: 1.3;
}

.impaqt-item-arrow {
    width: 30px;
    height: 30px;
    font-size: 19px;
}

.impaqt-item-content {
    display: grid;
    grid-template-columns: minmax(230px, 310px) 1fr;
    gap: 35px;
    padding: 25px;
    background: var(--impaqt-green-light);
}

.impaqt-item-left {
    padding-right: 25px;
    border-right: 1px solid #cbded1;
}

.impaqt-item-section + .impaqt-item-section {
    margin-top: 25px;
}

.impaqt-item-content h4 {
    margin: 0 0 10px;
    color: var(--impaqt-green);
    font-size: 15px;
    line-height: 1.3;
}

.impaqt-item-content p {
    margin: 0;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

.incom-no-results,
.impaqt-no-results {
    padding: 28px;
    border-radius: 10px;
    text-align: center;
}

.incom-no-results {
    border: 1px dashed #b7c5d6;
    color: #536273;
}

.impaqt-no-results {
    border: 1px dashed #9fc2aa;
    color: var(--impaqt-green);
    background: #f7fbf8;
}

@media (max-width: 720px) {

    .incom-tracks {
        padding: 30px 12px 50px;
    }

    .incom-track-card-header {
        padding: 18px;
    }

    .incom-track-meta,
    .impaqt-item-meta {
        gap: 7px;
    }

    .incom-track-type,
    .incom-track-code {
        min-height: 25px;
        padding: 4px 9px;
        font-size: 10px;
    }

    .incom-track-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 24px 20px;
    }

    .incom-track-left {
        padding-right: 0;
        padding-bottom: 24px;
        border-right: 0;
        border-bottom: 1px solid var(--border-light);
    }

    .incom-track-right p,
    .impaqt-item-right p {
        text-align: left;
    }

    .incom-track-arrow {
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .incom-impaqt-content {
        padding: 22px 16px;
    }

    .impaqt-item-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 22px 18px;
    }

    .impaqt-item-left {
        padding-right: 0;
        padding-bottom: 22px;
        border-right: 0;
        border-bottom: 1px solid #cbded1;
    }

}

@media (max-width: 480px) {

    .incom-track-card-header,
    .impaqt-item-header {
        align-items: flex-start;
        gap: 13px;
    }

    .incom-track-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .incom-track-filters,
    .impaqt-filters {
        align-items: stretch;
        flex-direction: column;
    }

    .incom-filter-button,
    .impaqt-filter-button {
        width: 100%;
    }

    .incom-proposer-name,
    .incom-proposer-affiliation {
        align-items: flex-start;
    }

}


/* ===== INCOM Content Manager additions ===== */
.incom-cm-richtext > :first-child { margin-top: 0 !important; }
.incom-cm-richtext > :last-child { margin-bottom: 0 !important; }
.incom-cm-richtext ul,
.incom-cm-richtext ol { color: var(--text-medium, #485769); font-size: 15px; line-height: 1.7; padding-left: 1.35em; }
.incom-cm-richtext a { color: var(--incom-blue, #006eb6); }

.incom-announcements {
    --incom-blue: #006eb6;
    --incom-blue-dark: #005d9a;
    --impaqt-green: #2f7d4d;
    --text-dark: #263648;
    --text-medium: #485769;
    max-width: 1180px;
    margin: 0 auto;
    font-family: inherit;
}
.incom-announcement-filters { display:flex; flex-wrap:wrap; gap:9px; margin:0 0 20px; }
.incom-announcement-filter { border:1px solid #c8d3e1; border-radius:999px; padding:8px 14px; background:#fff; color:#415164; font:inherit; font-size:13px; font-weight:700; cursor:pointer; }
.incom-announcement-filter.active { background:var(--incom-blue); border-color:var(--incom-blue); color:#fff; }
.incom-announcement-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.incom-announcement-card { position:relative; overflow:hidden; border:1px solid #d5dfe8; border-radius:12px; background:#fff; box-shadow:0 5px 18px rgba(24,50,83,.08); }
.incom-announcement-card.is-featured { grid-column:1 / -1; border-width:2px; box-shadow:0 8px 25px rgba(24,50,83,.12); }
.incom-announcement-card::before { content:""; display:block; height:5px; background:#6b7a8c; }
.incom-announcement-card.incom-announcement-style-info::before { background:#006eb6; }
.incom-announcement-card.incom-announcement-style-success::before { background:#2f7d4d; }
.incom-announcement-card.incom-announcement-style-deadline::before { background:#d58b00; }
.incom-announcement-card.incom-announcement-style-urgent::before { background:#c63c3c; }
.incom-announcement-image img { display:block; width:100%; max-height:280px; object-fit:cover; }
.incom-announcement-body { padding:22px 24px 24px; }
.incom-announcement-meta { display:flex; flex-wrap:wrap; gap:7px; align-items:center; margin-bottom:10px; }
.incom-announcement-meta span { display:inline-flex; align-items:center; min-height:24px; padding:4px 9px; border-radius:999px; font-size:10px; font-weight:800; letter-spacing:.055em; text-transform:uppercase; }
.incom-announcement-category { background:#eaf3f9; color:#005d9a; }
.incom-announcement-audience { background:#edf7f0; color:#276b41; }
.incom-announcement-featured { background:#fff2c7; color:#8a6200; }
.incom-announcement-card h3 { margin:0 0 10px; color:var(--text-dark); font-size:clamp(20px,2.4vw,27px); line-height:1.25; }
.incom-announcement-excerpt { margin:0 0 12px; color:#536273; font-size:16px; font-weight:600; line-height:1.55; }
.incom-announcement-content { color:var(--text-medium); font-size:15px; line-height:1.7; }
.incom-announcement-content p { color:var(--text-medium); font-size:15px; line-height:1.7; }
.incom-announcement-cta { display:inline-flex; align-items:center; gap:7px; margin-top:17px; color:var(--incom-blue); font-weight:800; text-decoration:none; }
.incom-announcement-cta:hover { text-decoration:underline; }

.incom-announcement-bar { --bar-accent:#006eb6; max-width:1180px; margin:18px auto; font-family:inherit; border:1px solid color-mix(in srgb, var(--bar-accent) 34%, #d6e0ea); border-radius:12px; background:#fff; box-shadow:0 7px 22px rgba(24,50,83,.10); overflow:hidden; }
.incom-announcement-bar.incom-announcement-style-success { --bar-accent:#2f7d4d; }
.incom-announcement-bar.incom-announcement-style-deadline { --bar-accent:#d58b00; }
.incom-announcement-bar.incom-announcement-style-urgent { --bar-accent:#c63c3c; }
.incom-announcement-bar-inner { display:grid; grid-template-columns:auto 1fr auto auto; gap:15px; align-items:center; padding:14px 16px; border-left:6px solid var(--bar-accent); }
.incom-announcement-bar-icon { display:flex; width:34px; height:34px; align-items:center; justify-content:center; border-radius:50%; background:var(--bar-accent); color:#fff; font-size:16px; }
.incom-announcement-bar-copy { min-width:0; color:#334458; }
.incom-announcement-bar-copy strong { display:block; color:#263648; font-size:16px; line-height:1.3; }
.incom-announcement-bar-copy span { display:block; margin-top:2px; color:#5f6e7e; font-size:13px; line-height:1.45; }
.incom-announcement-bar-meta { margin-bottom:3px; color:var(--bar-accent); font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.incom-announcement-bar-cta { white-space:nowrap; padding:9px 13px; border-radius:8px; background:var(--bar-accent); color:#fff !important; font-size:13px; font-weight:800; text-decoration:none !important; }
.incom-announcement-bar-close { display:flex; align-items:center; justify-content:center; width:32px; height:32px; border:0; background:transparent; color:#637284; font-size:24px; line-height:1; cursor:pointer; }

@media (max-width: 720px) {
    .incom-announcement-grid { grid-template-columns:1fr; }
    .incom-announcement-card.is-featured { grid-column:auto; }
    .incom-announcement-bar { margin-left:12px; margin-right:12px; }
    .incom-announcement-bar-inner { grid-template-columns:auto 1fr auto; }
    .incom-announcement-bar-cta { grid-column:2 / 3; justify-self:start; }
    .incom-announcement-bar-close { grid-column:3 / 4; grid-row:1 / 2; }
}
@media (max-width: 480px) {
    .incom-announcement-filters { flex-direction:column; }
    .incom-announcement-filter { width:100%; }
    .incom-announcement-body { padding:18px; }
}

/* ===== Programme enrichment v0.6: organizer e-mail + structured panels ===== */
.incom-proposer-email {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:9px;
    margin-top:5px;
    color:var(--text-light,#697789);
    font-size:13px;
    line-height:1.45;
    text-align:left;
}
.incom-proposer-email a {
    overflow-wrap:anywhere;
    color:var(--incom-blue,#006eb6);
    text-decoration:none;
}
.incom-proposer-email a:hover { text-decoration:underline; }
.incom-email-icon {
    display:inline-flex;
    flex:0 0 18px;
    width:18px;
    height:18px;
    align-items:center;
    justify-content:center;
    color:#7d8997;
    font-size:14px;
    font-style:normal;
    line-height:1;
}
.incom-impaqt-card .incom-proposer-email a { color:var(--impaqt-green,#2f7d4d); }

.incom-extra-panels {
    display:grid;
    gap:12px;
    margin-top:22px;
}
.incom-extra-panel {
    padding:15px 17px;
    border:1px solid #d8e4ed;
    border-left:4px solid var(--incom-blue,#006eb6);
    border-radius:8px;
    background:#f7fafc;
}
.incom-extra-panel h4 {
    margin:0 0 8px;
    color:var(--incom-blue,#006eb6);
    font-size:14px;
    font-weight:800;
    line-height:1.3;
}
.incom-extra-panel ul {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:5px 24px;
    margin:0;
    padding-left:18px;
    color:var(--text-medium,#485769);
    font-size:14px;
    line-height:1.55;
}
.incom-extra-panel-text,
.incom-extra-panel-text p {
    margin-top:0;
    color:var(--text-medium,#485769);
    font-size:14px;
    line-height:1.6;
}
.incom-extra-panel-text > :last-child { margin-bottom:0; }
.impaqt-extra-panels .incom-extra-panel {
    border-color:#cddfd3;
    border-left-color:var(--impaqt-green,#2f7d4d);
    background:#f6faf7;
}
.impaqt-extra-panels .incom-extra-panel h4 { color:var(--impaqt-green,#2f7d4d); }

@media (max-width:720px) {
    .incom-extra-panel ul { grid-template-columns:1fr; }
    .incom-proposer-email { align-items:flex-start; }
}

/* Visible proposal keywords: scientific metadata shown immediately after the summary. */
.incom-proposal-keywords {
    margin-top: 24px;
    padding-top: 19px;
    border-top: 1px solid #d7e4ef;
}

.incom-proposal-keywords h4 {
    margin: 0 0 13px;
    color: var(--incom-blue);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.incom-proposal-keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 9px;
}

.incom-proposal-keyword {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border: 1px solid #c5dced;
    border-radius: 999px;
    background: #eef7fc;
    color: #165f8f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.impaqt-proposal-keywords {
    border-top-color: #cfe2d5;
}

.impaqt-proposal-keywords h4 {
    color: var(--impaqt-green);
}

.impaqt-proposal-keywords .incom-proposal-keyword {
    border-color: #bfdac8;
    background: var(--impaqt-green-light);
    color: var(--impaqt-green-dark);
}

.incom-proposal-keywords + .incom-extra-panels {
    margin-top: 24px;
}

@media (max-width: 480px) {
    .incom-proposal-keywords {
        margin-top: 20px;
        padding-top: 16px;
    }

    .incom-proposal-keyword {
        font-size: 11px;
    }
}

/* ===== INCOM submission guides v0.10 ===== */
.incom-submit-guide {
    --sg-blue: #0074b9;
    --sg-blue-dark: #005d96;
    --sg-blue-soft: #edf7fc;
    --sg-blue-pale: #f5faff;
    --sg-navy: #263648;
    --sg-text: #47586b;
    --sg-muted: #6c7b8b;
    --sg-border: #d7e4ef;
    --sg-amber: #d48a00;
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 20px 64px;
    color: var(--sg-text);
    font-family: inherit;
}
.incom-submit-guide * { box-sizing: border-box; }
.incom-submit-hero {
    position: relative;
    overflow: hidden;
    margin: 0 0 34px;
    padding: 38px 42px;
    border: 1px solid #b9d8eb;
    border-radius: 18px;
    background:
        radial-gradient(circle at 94% 14%, rgba(0,116,185,.12), transparent 28%),
        linear-gradient(135deg, #fff 0%, #f7fbfe 55%, #edf7fc 100%);
    box-shadow: 0 12px 32px rgba(20,64,96,.09);
}
.incom-submit-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: var(--sg-blue);
}
.incom-submit-eyebrow {
    margin-bottom: 10px;
    color: var(--sg-blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
}
.incom-submit-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
    gap: 40px;
    align-items: center;
}
.incom-submit-hero h1 {
    margin: 0 0 12px;
    color: var(--sg-navy);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -.025em;
}
.incom-submit-lead {
    max-width: 750px;
    margin: 0;
    color: #526477;
    font-size: 18px;
    line-height: 1.65;
}
.incom-submit-actions { display:flex; flex-wrap:wrap; gap:11px; margin-top:24px; }
.incom-submit-btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:11px 17px;
    border:1px solid transparent;
    border-radius:10px;
    font-size:14px;
    font-weight:800;
    line-height:1.2;
    text-decoration:none !important;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.incom-submit-btn:hover { transform:translateY(-1px); }
.incom-submit-btn-primary { background:var(--sg-blue); color:#fff !important; box-shadow:0 6px 15px rgba(0,116,185,.16); }
.incom-submit-btn-primary:hover { background:var(--sg-blue-dark); }
.incom-submit-btn-secondary { border-color:#b9d8eb; background:#fff; color:var(--sg-blue-dark) !important; }
.incom-submit-btn-secondary:hover { box-shadow:0 6px 15px rgba(31,75,105,.09); }

.incom-submit-contact-btn {
    min-width:132px;
    flex-direction:column;
    gap:1px;
    padding:9px 18px 10px;
    white-space:nowrap;
    line-height:1;
}
.incom-submit-contact-kicker {
    display:block;
    font-size:10px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:.10em;
    text-transform:uppercase;
    opacity:.88;
}
.incom-submit-contact-name {
    display:block;
    font-size:15px;
    font-weight:900;
    line-height:1.15;
    letter-spacing:.01em;
}
.incom-submit-deadline-card,
.incom-submit-deadline-stack {
    border-radius:15px;
    background:var(--sg-blue);
    color:#fff;
    box-shadow:0 10px 24px rgba(0,95,155,.17);
}
.incom-submit-deadline-card { padding:24px 25px; }
.incom-submit-deadline-label,
.incom-submit-deadline-stack span { display:block; margin-bottom:6px; font-size:10px; font-weight:900; letter-spacing:.11em; opacity:.86; }
.incom-submit-deadline-card strong { display:block; margin-bottom:5px; font-size:27px; line-height:1.1; }
.incom-submit-deadline-card > span:last-child { font-size:13px; opacity:.88; }
.incom-submit-deadline-stack { overflow:hidden; }
.incom-submit-deadline-stack > div { padding:18px 22px; }
.incom-submit-deadline-stack > div + div { border-top:1px solid rgba(255,255,255,.24); }
.incom-submit-deadline-stack strong { font-size:20px; }
.incom-submit-choice-section,
.incom-submit-process,
.incom-submit-after,
.incom-submit-final-process { margin: 34px 0; }
.incom-submit-section-heading {
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:19px;
}
.incom-submit-section-number {
    display:inline-flex;
    flex:0 0 36px;
    width:36px;
    height:36px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--sg-blue);
    color:#fff;
    font-size:15px;
    font-weight:900;
    box-shadow:0 5px 12px rgba(0,116,185,.14);
}
.incom-submit-section-heading h2 { margin:0 0 3px; color:var(--sg-navy); font-size:24px; line-height:1.25; }
.incom-submit-section-heading p { margin:0; color:var(--sg-muted); font-size:15px; line-height:1.5; }
.incom-submit-choice-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:17px; }
.incom-submit-choice-card,
.incom-submit-paper-routes article {
    position:relative;
    padding:23px;
    border:1px solid var(--sg-border);
    border-radius:14px;
    background:#fff;
    box-shadow:0 6px 20px rgba(25,61,89,.06);
}
.incom-submit-choice-card-accent { border-color:#a8d3e9; background:var(--sg-blue-pale); }
.incom-submit-choice-icon {
    display:inline-flex;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    border-radius:10px;
    background:var(--sg-blue-soft);
    color:var(--sg-blue);
    font-size:16px;
    font-weight:900;
}
.incom-submit-choice-card h3,
.incom-submit-paper-routes h3 { margin:0 0 8px; color:var(--sg-navy); font-size:19px; }
.incom-submit-choice-card p,
.incom-submit-paper-routes p { margin:0; color:var(--sg-text); font-size:14px; line-height:1.6; }
.incom-submit-papercept-label {
    margin-top:16px;
    padding:11px 13px;
    border:1px solid #bedbed;
    border-radius:9px;
    background:#f3f9fd;
}
.incom-submit-papercept-label span { display:block; margin-bottom:3px; color:#6d7d8c; font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.incom-submit-papercept-label strong { color:var(--sg-blue-dark); font-size:14px; }
.incom-submit-note {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:12px 16px;
    margin-top:16px;
    padding:15px 17px;
    border-radius:10px;
    font-size:13px;
    line-height:1.55;
}
.incom-submit-note strong { color:var(--sg-navy); }
.incom-submit-note-blue { border:1px solid #c8dfed; background:#f4faff; }
.incom-submit-note-amber { border:1px solid #ecd29d; background:#fff8e8; }
.incom-submit-check-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.incom-submit-check-grid-three { grid-template-columns:repeat(3,minmax(0,1fr)); }
.incom-submit-check-grid > div {
    display:flex;
    gap:11px;
    padding:15px 16px;
    border:1px solid var(--sg-border);
    border-radius:11px;
    background:#fff;
}
.incom-submit-check-grid > div > span {
    display:inline-flex;
    flex:0 0 25px;
    width:25px;
    height:25px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--sg-blue-soft);
    color:var(--sg-blue);
    font-size:12px;
    font-weight:900;
}
.incom-submit-check-grid p { margin:0; color:var(--sg-text); font-size:13px; line-height:1.5; }
.incom-submit-check-grid strong { color:var(--sg-navy); }
.incom-submit-inline-actions,
.incom-submit-mini-actions { display:flex; flex-wrap:wrap; gap:12px 18px; margin-top:14px; }
.incom-submit-text-link,
.incom-submit-mini-link { color:var(--sg-blue-dark) !important; font-weight:800; text-decoration:none !important; }
.incom-submit-text-link { font-size:13px; }
.incom-submit-mini-link { font-size:12px; }
.incom-submit-text-link:hover,
.incom-submit-mini-link:hover { text-decoration:underline !important; }
.incom-submit-steps { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.incom-submit-steps > li {
    display:grid;
    grid-template-columns:42px 1fr;
    gap:15px;
    padding:17px 18px;
    border:1px solid var(--sg-border);
    border-radius:12px;
    background:#fff;
}
.incom-submit-step-no {
    display:flex;
    width:32px;
    height:32px;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    background:var(--sg-blue);
    color:#fff;
    font-size:13px;
    font-weight:900;
}
.incom-submit-steps h3 { margin:0 0 5px; color:var(--sg-navy); font-size:16px; }
.incom-submit-steps p { margin:0; color:var(--sg-text); font-size:14px; line-height:1.55; }
.incom-submit-papercept-mock {
    width:100%;
    max-width:700px;
    margin:12px 0 12px;
    overflow:hidden;
    border:1px solid #c7d8e4;
    border-radius:9px;
    background:#fff;
    box-sizing:border-box;
}
.incom-submit-papercept-mock > div {
    display:grid !important;
    grid-template-columns:minmax(0,1fr) 112px !important;
    column-gap:18px;
    align-items:center;
    width:100%;
    min-height:42px;
    padding:10px 13px;
    color:#34495d;
    font-size:12px;
    box-sizing:border-box;
}
.incom-submit-papercept-mock > div + div { border-top:1px solid #e2e8ee; }
.incom-submit-papercept-mock > div.is-highlight { background:#eef8fd; color:var(--sg-blue-dark); }
.incom-submit-papercept-mock > div > span {
    display:block;
    min-width:0;
    margin:0;
    line-height:1.35;
}
.incom-submit-papercept-mock b {
    display:block;
    justify-self:stretch;
    width:100%;
    min-width:0;
    margin:0;
    color:var(--sg-blue);
    line-height:1.35;
    text-align:right;
    white-space:nowrap;
}

.incom-submit-pc-figure {
    display:block;
    width:100%;
    max-width:100%;
    margin:18px 0 6px !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
}
.incom-submit-pc-kicker {
    display:flex;
    align-items:center;
    gap:7px;
    margin:0 0 7px;
    color:#68798a;
    font-size:11px;
    font-weight:800;
    letter-spacing:.045em;
    text-transform:uppercase;
}
.incom-submit-pc-kicker span {
    display:inline-flex;
    width:19px;
    height:19px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eaf5fb;
    color:var(--sg-blue);
    font-size:11px;
}
.incom-submit-pc-frame {
    display:block;
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    border:1px solid #aeb8c2;
    border-radius:7px;
    background:#fff;
    box-shadow:0 3px 9px rgba(32,53,70,.06);
}
.incom-submit-pc-entry {
    display:grid;
    grid-template-columns:82px minmax(0,1fr) minmax(250px,330px);
    min-width:0;
    background:#f5f5f5;
    color:#111;
    font-family:Arial,Helvetica,sans-serif;
    font-size:12px;
    line-height:1.35;
}
.incom-submit-pc-brand {
    display:flex;
    min-height:86px;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    padding:8px;
    background:#777;
    color:#fff;
    text-align:center;
    font-size:13px;
    font-weight:700;
    line-height:1.05;
}
.incom-submit-pc-brand strong { font-size:16px; }
.incom-submit-pc-conference {
    min-width:0;
    padding:13px 15px;
    border-right:1px solid #aeb8c2;
    background:#c9caf8;
}
.incom-submit-pc-conference .incom-submit-pc-faux-link {
    display:block;
    margin-bottom:4px;
    color:#0000cc !important;
    font-weight:700;
    text-decoration:underline !important;
}
.incom-submit-pc-conference span { display:block; color:#222; }
.incom-submit-pc-links {
    margin:0 !important;
    padding:11px 12px 11px 28px !important;
    background:#fff;
    color:#111;
    list-style:disc !important;
}
.incom-submit-pc-links li { margin:2px 0 !important; padding:0 !important; }
.incom-submit-pc-links .incom-submit-pc-faux-link { color:#0000ee !important; text-decoration:underline !important; }
.incom-submit-pc-frame-table { overflow-x:auto; }
.incom-submit-pc-table-wrap { min-width:650px; }
.incom-submit-pc-table {
    width:100% !important;
    margin:0 !important;
    border:0 !important;
    border-collapse:collapse !important;
    table-layout:fixed;
    background:#fff !important;
    color:#111 !important;
    font-family:Arial,Helvetica,sans-serif !important;
    font-size:13px !important;
    line-height:1.3 !important;
}
.incom-submit-pc-table th,
.incom-submit-pc-table td {
    height:auto !important;
    padding:8px 10px !important;
    border:1px solid #8f8f8f !important;
    background:#fff !important;
    color:#111 !important;
    text-align:left !important;
    vertical-align:middle !important;
}
.incom-submit-pc-table thead th {
    background:#c9caf8 !important;
    font-weight:700 !important;
}
.incom-submit-pc-table th:first-child,
.incom-submit-pc-table td:first-child { width:42%; }
.incom-submit-pc-table th:nth-child(2),
.incom-submit-pc-table td:nth-child(2) { width:20%; }
.incom-submit-pc-table th:nth-child(3),
.incom-submit-pc-table td:nth-child(3) { width:23%; }
.incom-submit-pc-table th:last-child,
.incom-submit-pc-table td:last-child { width:15%; text-align:center !important; }
.incom-submit-pc-table td .incom-submit-pc-faux-link { color:#0000ee !important; text-decoration:underline !important; }

.incom-submit-pc-faux-link {
    cursor:default !important;
    pointer-events:none !important;
}
.incom-submit-pc-demo-note {
    display:block;
    margin-top:4px;
    color:#7a8794;
    font-style:italic;
}
.incom-submit-pc-figure figcaption {
    display:block;
    width:100%;
    margin:7px 0 0 !important;
    padding:0 2px !important;
    border:0 !important;
    color:#667688;
    background:transparent !important;
    font-size:12px;
    line-height:1.45;
    text-align:left;
}
.incom-submit-pc-figure figcaption strong { color:var(--sg-navy); }
@media (max-width:760px) {
    .incom-submit-pc-entry { grid-template-columns:62px minmax(0,1fr); }
    .incom-submit-pc-links {
        grid-column:1 / -1;
        border-top:1px solid #aeb8c2;
    }
    .incom-submit-pc-conference { border-right:0; }
}

.incom-submit-code-flow,
.incom-submit-timeline { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:13px; align-items:center; }
.incom-submit-code-flow > div,
.incom-submit-timeline > div { padding:16px; border:1px solid var(--sg-border); border-radius:11px; background:#fff; text-align:center; }
.incom-submit-code-flow strong,
.incom-submit-code-flow span,
.incom-submit-timeline span,
.incom-submit-timeline strong { display:block; }
.incom-submit-code-flow strong { margin-bottom:4px; color:var(--sg-navy); font-size:14px; }
.incom-submit-code-flow span { color:var(--sg-muted); font-size:12px; }
.incom-submit-code-flow i,
.incom-submit-timeline i { color:#8fb2c9; font-style:normal; font-weight:900; }
.incom-submit-paper-routes { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.incom-submit-paper-routes article {
    display:grid;
    grid-template-rows:auto auto minmax(76px,auto) auto auto;
    align-content:start;
    min-height:300px;
    padding:30px 27px 27px;
}
.incom-submit-paper-routes .incom-submit-papercept-label { margin-top:22px; padding:14px 15px; }
.incom-submit-paper-routes small { display:block; margin-top:17px; color:#617285; line-height:1.5; }
.incom-submit-paper-routes h3 { margin-bottom:13px; }
.incom-submit-paper-routes p { line-height:1.7; }
.incom-submit-route-kicker { margin-bottom:11px; color:var(--sg-blue); font-size:9px; font-weight:900; letter-spacing:.08em; }
.incom-submit-code-callout {
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:16px;
    align-items:center;
    padding:18px;
    border:1px solid #b9d8eb;
    border-radius:13px;
    background:#f5fbff;
}
.incom-submit-code-badge { display:flex; width:52px; height:52px; align-items:center; justify-content:center; border-radius:12px; background:var(--sg-blue); color:#fff; font-size:11px; font-weight:900; letter-spacing:.06em; }
.incom-submit-code-callout h3 { margin:0 0 4px; color:var(--sg-navy); font-size:16px; }
.incom-submit-code-callout p { margin:0; color:var(--sg-text); font-size:13px; line-height:1.5; }
.incom-submit-warning-card {
    display:grid;
    grid-template-columns:auto 1fr;
    gap:15px;
    margin:32px 0;
    padding:20px;
    border:1px solid #edcb86;
    border-radius:13px;
    background:#fff8e7;
}
.incom-submit-warning-icon { display:flex; width:38px; height:38px; align-items:center; justify-content:center; border-radius:50%; background:var(--sg-amber); color:#fff; font-size:20px; font-weight:900; }
.incom-submit-warning-card h2 { margin:0 0 5px; color:#5e4a20; font-size:18px; }
.incom-submit-warning-card p { margin:0; color:#66583a; font-size:14px; line-height:1.55; }
.incom-submit-timeline span { margin-bottom:5px; color:var(--sg-blue); font-size:10px; font-weight:900; letter-spacing:.08em; }
.incom-submit-timeline strong { color:var(--sg-navy); font-size:13px; }
.incom-submit-help-card {
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
    margin-top:38px;
    padding:22px 24px;
    border-radius:14px;
    background:#263648;
    color:#fff;
}
.incom-submit-help-card > div { display:flex; gap:14px; align-items:center; }
.incom-submit-help-icon { display:flex; flex:0 0 38px; width:38px; height:38px; align-items:center; justify-content:center; border-radius:50%; background:#fff; color:var(--sg-blue); font-weight:900; }
.incom-submit-help-card h2 { margin:0 0 3px; color:#fff; font-size:18px; }
.incom-submit-help-card p { margin:0; color:#d3dce4; font-size:13px; line-height:1.5; }

@media (max-width: 800px) {
    .incom-submit-hero-grid { grid-template-columns:1fr; gap:24px; }
    .incom-submit-choice-grid,
    .incom-submit-paper-routes,
    .incom-submit-check-grid-three { grid-template-columns:1fr; }
    .incom-submit-paper-routes article { min-height:0; }
    .incom-submit-code-flow,
    .incom-submit-timeline { grid-template-columns:1fr; }
    .incom-submit-code-flow i,
    .incom-submit-timeline i { transform:rotate(90deg); justify-self:center; }
    .incom-submit-code-callout { grid-template-columns:auto 1fr; }
    .incom-submit-code-callout .incom-submit-btn { grid-column:1 / -1; justify-self:start; }
}
@media (max-width: 600px) {
    .incom-submit-guide { padding-left:12px; padding-right:12px; }
    .incom-submit-hero { padding:27px 22px; border-radius:14px; }
    .incom-submit-hero h1 { font-size:34px; }
    .incom-submit-lead { font-size:16px; }
    .incom-submit-choice-grid,
    .incom-submit-check-grid { grid-template-columns:1fr; }
    .incom-submit-steps > li { grid-template-columns:36px 1fr; padding:14px; }
    .incom-submit-papercept-mock > div { grid-template-columns:minmax(0,1fr) 94px !important; column-gap:10px; }
    .incom-submit-papercept-mock b { min-width:0; }
    .incom-submit-note { grid-template-columns:1fr; }
    .incom-submit-help-card { align-items:flex-start; flex-direction:column; }
    .incom-submit-help-card .incom-submit-btn { width:100%; }
    .incom-submit-help-card .incom-submit-contact-btn { min-width:0; }
}

/* ========================================================================
   Latest News v0.11 — INCOM 2027 homepage editorial cards
   ======================================================================== */
.incom-latest-news,
.incom-announcements {
    --incom-news-blue:#0878bd;
    --incom-news-blue-dark:#063b78;
    --incom-news-blue-mid:#0a70b4;
    --incom-news-text:#253b52;
    --incom-news-muted:#5b6e82;
    --incom-news-border:#d6e3ee;
    --incom-news-soft:#f4f9fd;
    box-sizing:border-box;
    max-width:1180px;
    margin:30px auto;
    font-family:inherit;
}
.incom-latest-news *,
.incom-announcements * { box-sizing:border-box; }

.incom-latest-news {
    padding:28px 24px 32px;
    border:1px solid #dce7f0;
    border-radius:16px;
    background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
    box-shadow:0 7px 26px rgba(25,55,85,.055);
}
.incom-latest-news-heading {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:22px;
    margin-bottom:28px;
}
.incom-latest-news-heading-copy h2 {
    margin:0;
    color:var(--incom-news-blue-dark);
    font-size:clamp(25px,3vw,32px);
    font-weight:800;
    letter-spacing:-.025em;
    line-height:1.12;
    text-transform:uppercase;
}
.incom-latest-news-heading-line {
    display:block;
    width:46px;
    height:3px;
    margin-top:13px;
    border-radius:999px;
    background:#1687da;
}
.incom-latest-news-view-all,
.incom-latest-news-cta {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:10px;
    background:var(--incom-news-blue-dark);
    color:#fff !important;
    font-weight:800;
    text-decoration:none !important;
    text-transform:uppercase;
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.incom-latest-news-view-all {
    flex:0 0 auto;
    min-height:42px;
    padding:10px 18px;
    font-size:12px;
    letter-spacing:.025em;
}
.incom-latest-news-view-all span,
.incom-latest-news-cta span { font-size:23px; font-weight:400; line-height:.7; }
.incom-latest-news-view-all:hover,
.incom-latest-news-cta:hover {
    background:#052f61;
    transform:translateY(-1px);
    box-shadow:0 7px 16px rgba(4,55,111,.17);
}

.incom-latest-news-grid,
.incom-announcement-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
    align-items:stretch;
}
.incom-latest-news-grid.has-one-item { grid-template-columns:minmax(0,1fr); }
.incom-latest-news-grid.has-one-item .incom-latest-news-card { max-width:760px; }

.incom-latest-news-card {
    position:relative;
    display:grid;
    grid-template-columns:minmax(190px,41%) minmax(0,59%);
    min-width:0;
    min-height:330px;
    overflow:hidden;
    border:1px solid #d7e3ed;
    border-radius:14px;
    background:#fff;
    box-shadow:0 6px 18px rgba(24,50,83,.075);
    transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.incom-latest-news-card:hover {
    transform:translateY(-2px);
    box-shadow:0 11px 27px rgba(24,50,83,.105);
}
.incom-latest-news-card.is-featured {
    grid-column:auto !important;
    border:2px solid #1789de;
    box-shadow:0 10px 27px rgba(10,113,190,.17),0 0 0 1px rgba(23,137,222,.04);
}
.incom-latest-news-card.is-featured:hover { box-shadow:0 14px 32px rgba(10,113,190,.21); }
.incom-latest-news-card::before,
.incom-announcement-card.incom-latest-news-card::before { display:none !important; content:none !important; }

.incom-latest-news-visual {
    position:relative;
    min-width:0;
    min-height:100%;
    overflow:hidden;
    border-right:1px solid #dbe6ef;
    background:linear-gradient(145deg,#f9fcff 0%,#eef7fe 100%);
}
.incom-latest-news-featured {
    position:absolute;
    z-index:3;
    top:18px;
    left:18px;
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:34px;
    padding:7px 12px;
    border-radius:8px;
    background:linear-gradient(135deg,#0b75c3,#0864ad);
    box-shadow:0 5px 13px rgba(8,100,173,.21);
    color:#fff;
    font-size:12px;
    font-weight:800;
    letter-spacing:.02em;
    text-transform:uppercase;
}
.incom-latest-news-photo,
.incom-latest-news-photo img { width:100%; height:100%; }
.incom-latest-news-photo img { display:block; object-fit:cover; }
.incom-latest-news-illustration {
    display:flex;
    width:100%;
    height:100%;
    min-height:330px;
    align-items:center;
    justify-content:center;
    padding:42px 18px 20px;
    background:
        radial-gradient(circle at 16% 17%,rgba(28,139,219,.12) 0 2px,transparent 3px) 0 0/24px 24px,
        linear-gradient(145deg,#fbfdff,#edf7fe);
}
.incom-latest-news-illustration svg { display:block; width:100%; max-width:290px; height:auto; filter:drop-shadow(0 8px 11px rgba(30,107,164,.10)); }

.incom-latest-news-copy {
    display:flex;
    min-width:0;
    flex-direction:column;
    align-items:flex-start;
    padding:34px 31px 30px;
}
.incom-latest-news-date {
    display:block;
    margin:0 0 17px;
    color:#225f98;
    font-size:13px;
    font-weight:800;
    line-height:1.3;
}
.incom-latest-news-copy h3 {
    margin:0;
    color:#07366f;
    font-size:clamp(22px,2.25vw,29px);
    font-weight:800;
    letter-spacing:-.02em;
    line-height:1.2;
}
.incom-latest-news-title-line {
    display:block;
    width:47px;
    height:3px;
    margin:18px 0 20px;
    border-radius:999px;
    background:#188bdc;
}
.incom-latest-news-copy p {
    margin:0;
    color:var(--incom-news-muted);
    font-size:15px;
    line-height:1.68;
}
.incom-latest-news-cta {
    min-height:42px;
    margin-top:auto;
    padding:10px 17px;
    font-size:12px;
    letter-spacing:.025em;
}
.incom-latest-news-copy p + .incom-latest-news-cta { margin-top:25px; }

/* Complete news listing keeps the same visual language. */
.incom-announcements { padding:0; }
.incom-announcement-filters { display:flex; flex-wrap:wrap; gap:9px; margin:0 0 22px; }
.incom-announcement-filter {
    min-height:38px;
    padding:8px 15px;
    border:1px solid #cadbea;
    border-radius:999px;
    background:#fff;
    color:#31536f;
    font:inherit;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}
.incom-announcement-filter.active { border-color:#0878bd; background:#0878bd; color:#fff; }

@media (max-width:980px) {
    .incom-latest-news-card { grid-template-columns:minmax(160px,38%) minmax(0,62%); }
    .incom-latest-news-copy { padding:29px 25px 26px; }
}
@media (max-width:820px) {
    .incom-latest-news,
    .incom-announcements { margin-left:14px; margin-right:14px; }
    .incom-latest-news-grid,
    .incom-announcement-grid { grid-template-columns:1fr; }
    .incom-latest-news-card { min-height:315px; }
}
@media (max-width:620px) {
    .incom-latest-news { padding:23px 16px 20px; border-radius:13px; }
    .incom-latest-news-heading { align-items:stretch; flex-direction:column; margin-bottom:22px; }
    .incom-latest-news-view-all { align-self:flex-start; }
    .incom-latest-news-card { display:block; min-height:0; }
    .incom-latest-news-visual { min-height:225px; border-right:0; border-bottom:1px solid #dbe6ef; }
    .incom-latest-news-illustration { min-height:225px; padding:28px 35px 12px; }
    .incom-latest-news-illustration svg { max-width:235px; }
    .incom-latest-news-copy { padding:25px 22px 24px; }
    .incom-latest-news-copy h3 { font-size:23px; }
    .incom-latest-news-cta { margin-top:23px; }
}

/* Latest News audience stamps v0.12 */
.incom-latest-news-audience {
    position:absolute;
    z-index:4;
    top:18px;
    right:18px;
    display:inline-flex;
    min-height:29px;
    align-items:center;
    justify-content:center;
    padding:6px 11px;
    border-radius:999px;
    color:#fff;
    font-size:10px;
    font-weight:900;
    letter-spacing:.075em;
    line-height:1;
    text-transform:uppercase;
    box-shadow:0 5px 14px rgba(24,50,83,.14);
}
.incom-latest-news-audience-incom { background:#0878bd; }
.incom-latest-news-audience-impaqt { background:#2f7d4d; }
.incom-latest-news-card.is-featured .incom-latest-news-audience { top:18px; }
@media (max-width:480px) {
    .incom-latest-news-audience { top:14px; right:14px; min-height:27px; padding:5px 9px; font-size:9px; }
}

/* ========================================================================
   Latest News v0.13 — homepage integration + individual news pages
   ======================================================================== */

/* The homepage shortcode must follow the width of the section in which it is
   inserted (Key Dates / Committees), not impose a second inner site width. */
.incom-latest-news {
    width: 100%;
    max-width: none;
    margin: 34px 0;
    padding: 31px 28px 34px;
    clear: both;
}

.incom-latest-news-grid.has-one-item {
    grid-template-columns: minmax(0, 1fr);
}
.incom-latest-news-grid.has-one-item .incom-latest-news-card {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(250px, 34%) minmax(0, 66%);
}

.incom-latest-news-copy h3 a {
    color: inherit !important;
    text-decoration: none !important;
}
.incom-latest-news-copy h3 a:hover,
.incom-latest-news-copy h3 a:focus {
    color: #07558f !important;
    text-decoration: none !important;
}

/* Stronger theme isolation: WordPress/site-builder heading and paragraph
   rules must not collapse the approved card layout. */
.incom-latest-news .incom-latest-news-heading-copy h2,
.incom-latest-news .incom-latest-news-copy h3 {
    padding: 0;
    border: 0;
}
.incom-latest-news .incom-latest-news-copy p {
    padding: 0;
}
.incom-latest-news .incom-latest-news-cta,
.incom-latest-news .incom-latest-news-view-all {
    border: 0;
    box-shadow: none;
}
.incom-latest-news .incom-latest-news-card.is-featured .incom-latest-news-cta,
.incom-latest-news .incom-latest-news-card.is-featured .incom-latest-news-view-all {
    box-shadow: none;
}

/* ---------------- Individual Latest News detail page ---------------- */
.incom-news-detail {
    --news-detail-blue: #0878bd;
    --news-detail-blue-dark: #063b78;
    --news-detail-text: #2c4055;
    --news-detail-muted: #617286;
    --news-detail-border: #d7e4ee;
    width: 100%;
    padding: 44px 20px 72px;
    background: #f7fafc;
    color: var(--news-detail-text);
    font-family: inherit;
    box-sizing: border-box;
}
.incom-news-detail * { box-sizing: border-box; }
.incom-news-detail.is-impaqt {
    --news-detail-blue: #2f7d4d;
    --news-detail-blue-dark: #245f3b;
    --news-detail-border: #cfe0d5;
}
.incom-news-detail-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.incom-news-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 20px;
    color: var(--news-detail-blue-dark) !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none !important;
}
.incom-news-detail-back span { font-size: 22px; line-height: .8; }
.incom-news-detail-back:hover { text-decoration: underline !important; }
.incom-news-detail-article {
    overflow: hidden;
    border: 1px solid var(--news-detail-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(24,50,83,.08);
}
.incom-news-detail-hero {
    display: grid;
    grid-template-columns: minmax(300px, 38%) minmax(0, 62%);
    min-height: 390px;
    border-bottom: 1px solid var(--news-detail-border);
}
.incom-news-detail-visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid var(--news-detail-border);
    background: linear-gradient(145deg,#fbfdff,#edf7fe);
}
.incom-news-detail.is-impaqt .incom-news-detail-visual {
    background: linear-gradient(145deg,#fbfefc,#edf7f0);
}
.incom-news-detail-photo,
.incom-news-detail-photo img {
    width: 100%;
    height: 100%;
}
.incom-news-detail-photo img {
    display: block;
    object-fit: cover;
}
.incom-news-detail-illustration {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 390px;
    align-items: center;
    justify-content: center;
    padding: 60px 35px 35px;
    background:
        radial-gradient(circle at 16% 17%,rgba(28,139,219,.10) 0 2px,transparent 3px) 0 0/24px 24px,
        linear-gradient(145deg,#fbfdff,#edf7fe);
}
.incom-news-detail.is-impaqt .incom-news-detail-illustration {
    background:
        radial-gradient(circle at 16% 17%,rgba(47,125,77,.09) 0 2px,transparent 3px) 0 0/24px 24px,
        linear-gradient(145deg,#fbfefc,#edf7f0);
}
.incom-news-detail-illustration svg {
    display: block;
    width: 100%;
    max-width: 330px;
    height: auto;
    filter: drop-shadow(0 10px 14px rgba(30,107,164,.10));
}
.incom-news-detail-heading {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 52px 52px 48px;
}
.incom-news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 17px;
    margin-bottom: 19px;
    color: var(--news-detail-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.incom-news-detail-meta span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #edf7fc;
}
.incom-news-detail.is-impaqt .incom-news-detail-meta span { background: #edf7f0; }
.incom-news-detail-heading h1 {
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--news-detail-blue-dark);
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
}
.incom-news-detail-title-line {
    display: block;
    width: 58px;
    height: 4px;
    margin: 23px 0 23px;
    border-radius: 999px;
    background: var(--news-detail-blue);
}
.incom-news-detail-lead {
    max-width: 760px;
    margin: 0;
    color: var(--news-detail-muted);
    font-size: 18px;
    line-height: 1.65;
}
.incom-news-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 45px 55px;
    color: var(--news-detail-text);
    font-size: 16px;
    line-height: 1.75;
}
.incom-news-detail-content > :first-child { margin-top: 0; }
.incom-news-detail-content > :last-child { margin-bottom: 0; }
.incom-news-detail-content h2,
.incom-news-detail-content h3,
.incom-news-detail-content h4 {
    color: var(--news-detail-blue-dark);
    line-height: 1.25;
}
.incom-news-detail-content a:not(.incom-latest-news-cta) {
    color: var(--news-detail-blue) !important;
}
.incom-news-detail-action {
    margin-top: 34px !important;
}
.incom-news-detail .incom-latest-news-cta {
    min-height: 45px;
    padding: 11px 19px;
    background: var(--news-detail-blue-dark);
}

@media (max-width: 920px) {
    .incom-latest-news-grid.has-one-item .incom-latest-news-card {
        grid-template-columns: minmax(190px, 38%) minmax(0, 62%);
    }
    .incom-news-detail-hero {
        grid-template-columns: minmax(245px, 36%) minmax(0, 64%);
    }
    .incom-news-detail-heading { padding: 42px 34px 39px; }
}
@media (max-width: 820px) {
    .incom-latest-news { margin: 30px 0; }
    .incom-latest-news-grid.has-one-item .incom-latest-news-card {
        display: block;
    }
    .incom-news-detail-hero { display: block; }
    .incom-news-detail-visual {
        min-height: 300px;
        border-right: 0;
        border-bottom: 1px solid var(--news-detail-border);
    }
    .incom-news-detail-illustration { min-height: 300px; padding: 48px 32px 25px; }
    .incom-news-detail-illustration svg { max-width: 270px; }
}
@media (max-width: 620px) {
    .incom-latest-news { padding: 24px 16px 22px; }
    .incom-news-detail { padding: 28px 12px 52px; }
    .incom-news-detail-article { border-radius: 14px; }
    .incom-news-detail-heading { padding: 30px 22px 30px; }
    .incom-news-detail-heading h1 { font-size: 34px; }
    .incom-news-detail-lead { font-size: 16px; }
    .incom-news-detail-content { padding: 32px 22px 38px; font-size: 15px; }
}


/* ========================================================================
   Latest News v0.14 — 3-card homepage grid + redesigned detail page
   ======================================================================== */

/* The user owns the section heading on the homepage.  The shortcode now
   behaves as a clean card grid by default and does not add a second "Latest
   News" title or enclosing visual panel. */
.incom-latest-news {
    width:100%;
    max-width:none;
    margin:18px 0 32px;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
}
.incom-latest-news-heading.heading-actions-only {
    justify-content:flex-end;
    margin-bottom:16px;
}
.incom-latest-news-grid {
    display:grid;
    gap:18px;
    align-items:stretch;
}
.incom-latest-news-grid.has-1-items { grid-template-columns:minmax(0,1fr); }
.incom-latest-news-grid.has-2-items { grid-template-columns:repeat(2,minmax(0,1fr)); }
.incom-latest-news-grid.has-3-items { grid-template-columns:repeat(3,minmax(0,1fr)); }

.incom-latest-news-grid.has-1-items .incom-latest-news-card {
    width:100%;
    max-width:none;
    grid-template-columns:minmax(260px,34%) minmax(0,66%);
}
.incom-latest-news-grid.has-2-items .incom-latest-news-card {
    grid-template-columns:minmax(170px,40%) minmax(0,60%);
}
.incom-latest-news-grid.has-3-items .incom-latest-news-card {
    grid-template-columns:minmax(130px,43%) minmax(0,57%);
    min-height:340px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-visual {
    min-width:0;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-illustration {
    min-height:340px;
    padding:34px 8px 14px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-illustration svg {
    width:118%;
    max-width:220px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-copy {
    padding:25px 20px 23px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-date {
    margin-bottom:12px;
    font-size:12px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-copy h3 {
    font-size:clamp(18px,1.45vw,23px);
}
.incom-latest-news-grid.has-3-items .incom-latest-news-title-line {
    margin:14px 0 15px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-copy p {
    font-size:13px;
    line-height:1.58;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-cta {
    min-height:39px;
    padding:9px 13px;
    font-size:10px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-featured {
    top:13px;
    left:13px;
    min-height:29px;
    padding:6px 9px;
    font-size:10px;
}
.incom-latest-news-grid.has-3-items .incom-latest-news-audience {
    top:13px;
    right:13px;
}
.incom-latest-news-card {
    border-radius:15px;
}
.incom-latest-news-illustration {
    background:linear-gradient(145deg,#fbfdff 0%,#eaf6ff 100%);
}
.incom-latest-news-illustration svg {
    filter:drop-shadow(0 12px 16px rgba(21,88,138,.11));
}

/* ---------------- Redesigned individual news page ---------------- */
.incom-news-detail-v2 {
    --news-detail-blue:#0b78bd;
    --news-detail-blue-dark:#07366f;
    --news-detail-hero:#082e67;
    --news-detail-hero2:#0a5a9c;
    --news-detail-soft:#f3f8fc;
    --news-detail-border:#d8e5ef;
    width:100%;
    padding:0;
    background:#f5f8fb;
    color:#283d52;
}
.incom-news-detail-v2.is-impaqt {
    --news-detail-blue:#2f7d4d;
    --news-detail-blue-dark:#225f3a;
    --news-detail-hero:#1c5635;
    --news-detail-hero2:#2f7d4d;
    --news-detail-soft:#f2f8f4;
    --news-detail-border:#d3e3d8;
}
.incom-news-detail-hero-v2 {
    position:relative;
    overflow:hidden;
    padding:36px 20px 58px;
    background:
        radial-gradient(circle at 68% 18%,rgba(86,176,238,.22),transparent 34%),
        linear-gradient(125deg,var(--news-detail-hero) 0%,var(--news-detail-hero2) 72%,#0876ba 100%);
    color:#fff;
}
.incom-news-detail-v2.is-impaqt .incom-news-detail-hero-v2 {
    background:
        radial-gradient(circle at 68% 18%,rgba(118,207,149,.18),transparent 34%),
        linear-gradient(125deg,var(--news-detail-hero) 0%,var(--news-detail-hero2) 78%,#3c9160 100%);
}
.incom-news-detail-hero-network {
    position:absolute;
    inset:0;
    opacity:.38;
    background-image:
        radial-gradient(circle at 20% 22%,rgba(255,255,255,.75) 0 1.5px,transparent 2px),
        radial-gradient(circle at 46% 37%,rgba(255,255,255,.7) 0 1.5px,transparent 2px),
        radial-gradient(circle at 75% 23%,rgba(255,255,255,.75) 0 1.5px,transparent 2px),
        radial-gradient(circle at 88% 48%,rgba(255,255,255,.55) 0 1.5px,transparent 2px);
}
.incom-news-detail-hero-network::before,
.incom-news-detail-hero-network::after {
    content:"";
    position:absolute;
    width:42%;
    height:1px;
    top:27%;
    right:8%;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.35),transparent);
    transform:rotate(-9deg);
}
.incom-news-detail-hero-network::after {
    top:42%;
    right:3%;
    transform:rotate(12deg);
}
.incom-news-detail-castle {
    position:absolute;
    right:-30px;
    bottom:-62px;
    width:min(460px,34vw);
    opacity:.13;
    mix-blend-mode:screen;
    pointer-events:none;
}
.incom-news-detail-v2 .incom-news-detail-inner {
    position:relative;
    z-index:2;
    width:min(1180px,100%);
    margin:0 auto;
}
.incom-news-detail-back-on-dark {
    margin-bottom:30px;
    color:#dceeff !important;
}
.incom-news-detail-back-on-dark:hover { color:#fff !important; }

.incom-news-detail-hero-grid {
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(290px,.75fr);
    gap:54px;
    align-items:center;
}
.incom-news-detail-hero-copy { min-width:0; }
.incom-news-detail-hero-badges {
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-bottom:19px;
}
.incom-news-detail-hero-badges > span {
    display:inline-flex;
    min-height:30px;
    align-items:center;
    gap:6px;
    padding:6px 11px;
    border:1px solid rgba(255,255,255,.26);
    border-radius:999px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:10px;
    font-weight:900;
    letter-spacing:.065em;
    text-transform:uppercase;
    backdrop-filter:blur(4px);
}
.incom-news-detail-featured { background:#0e83d5 !important; border-color:#39a2e5 !important; }
.incom-news-detail-hero-date {
    display:block;
    margin-bottom:14px;
    color:#cfe9fb;
    font-size:13px;
    font-weight:800;
}
.incom-news-detail-hero-copy h1 {
    max-width:820px;
    margin:0;
    padding:0;
    border:0;
    color:#fff;
    font-size:clamp(40px,5vw,64px);
    font-weight:850;
    letter-spacing:-.045em;
    line-height:1.02;
}
.incom-news-detail-v2 .incom-news-detail-title-line {
    width:64px;
    height:4px;
    margin:25px 0 23px;
    background:#42a8eb;
}
.incom-news-detail-v2.is-impaqt .incom-news-detail-title-line { background:#86d09e; }
.incom-news-detail-v2 .incom-news-detail-lead {
    max-width:760px;
    margin:0;
    color:#e7f2fa;
    font-size:18px;
    line-height:1.65;
}
.incom-news-detail-hero-art {
    position:relative;
    min-width:0;
    min-height:360px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.24);
    border-radius:22px;
    background:rgba(255,255,255,.92);
    box-shadow:0 24px 55px rgba(0,24,60,.27);
}
.incom-news-detail-hero-photo,
.incom-news-detail-hero-photo img {
    width:100%;
    height:100%;
    min-height:360px;
}
.incom-news-detail-hero-photo img {
    display:block;
    object-fit:cover;
}
.incom-news-detail-hero-illustration {
    display:flex;
    min-height:360px;
    align-items:center;
    justify-content:center;
    padding:14px;
}
.incom-news-detail-hero-illustration svg {
    width:100%;
    max-width:390px;
    height:auto;
}

.incom-news-detail-body-v2 {
    padding:56px 20px 76px;
}
.incom-news-detail-body-grid {
    display:grid;
    grid-template-columns:minmax(0,1fr);
    gap:28px;
    align-items:start;
}
.incom-news-detail-body-grid.has-actions {
    grid-template-columns:minmax(0,1fr) minmax(300px,340px);
}
.incom-news-detail-content-card,
.incom-news-detail-actions-panel {
    border:1px solid var(--news-detail-border);
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 30px rgba(26,51,79,.065);
}
.incom-news-detail-v2 .incom-news-detail-content {
    max-width:none;
    margin:0;
    padding:48px 52px 54px;
    color:#30465a;
    font-size:17px;
    line-height:1.78;
}
.incom-news-detail-v2 .incom-news-detail-content h2 {
    margin-top:1.8em;
    color:var(--news-detail-blue-dark);
    font-size:30px;
    letter-spacing:-.02em;
}
.incom-news-detail-v2 .incom-news-detail-content h3 {
    margin-top:1.6em;
    color:var(--news-detail-blue-dark);
    font-size:23px;
}
.incom-news-detail-v2 .incom-news-detail-content ul,
.incom-news-detail-v2 .incom-news-detail-content ol {
    padding-left:1.35em;
}
.incom-news-detail-actions-panel {
    position:sticky;
    top:28px;
    padding:28px 26px 26px;
    background:
        linear-gradient(180deg,#fff 0%,var(--news-detail-soft) 100%);
}
.incom-news-detail-actions-kicker {
    display:block;
    margin-bottom:8px;
    color:var(--news-detail-blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:.09em;
}
.incom-news-detail-actions-panel h2 {
    margin:0;
    color:var(--news-detail-blue-dark);
    font-size:27px;
    letter-spacing:-.025em;
    line-height:1.15;
}
.incom-news-detail-actions-panel > p {
    margin:10px 0 21px;
    color:#647689;
    font-size:14px;
    line-height:1.55;
}
.incom-news-detail-actions-list {
    display:grid;
    gap:10px;
}
.incom-news-detail-action-button {
    display:flex;
    min-height:50px;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:12px 15px;
    border:1px solid var(--news-detail-blue-dark);
    border-radius:10px;
    color:#fff !important;
    font-size:12px;
    font-weight:850;
    letter-spacing:.02em;
    line-height:1.3;
    text-decoration:none !important;
    text-transform:uppercase;
    transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}
.incom-news-detail-action-button b {
    font-size:24px;
    font-weight:400;
    line-height:.7;
}
.incom-news-detail-action-button.is-primary {
    background:var(--news-detail-blue-dark);
}
.incom-news-detail-action-button.is-secondary {
    border-color:var(--news-detail-blue);
    background:var(--news-detail-blue);
}
.incom-news-detail-action-button.is-outline {
    background:#fff;
    color:var(--news-detail-blue-dark) !important;
}
.incom-news-detail-action-button:hover {
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(8,72,124,.16);
}
.incom-news-detail-footer-nav {
    display:flex;
    justify-content:flex-end;
    margin-top:26px;
}
.incom-news-detail-footer-nav a {
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--news-detail-blue-dark) !important;
    font-size:13px;
    font-weight:800;
    text-decoration:none !important;
}
.incom-news-detail-footer-nav a:hover { text-decoration:underline !important; }

@media (max-width:1180px) {
    .incom-latest-news-grid.has-3-items {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .incom-latest-news-grid.has-3-items .incom-latest-news-card {
        grid-template-columns:minmax(160px,40%) minmax(0,60%);
    }
}
@media (max-width:900px) {
    .incom-news-detail-hero-grid {
        grid-template-columns:1fr;
        gap:34px;
    }
    .incom-news-detail-hero-art {
        min-height:300px;
        max-width:560px;
    }
    .incom-news-detail-body-grid.has-actions {
        grid-template-columns:1fr;
    }
    .incom-news-detail-actions-panel {
        position:static;
    }
}
@media (max-width:820px) {
    .incom-latest-news-grid.has-2-items,
    .incom-latest-news-grid.has-3-items {
        grid-template-columns:1fr;
    }
    .incom-latest-news-grid.has-2-items .incom-latest-news-card,
    .incom-latest-news-grid.has-3-items .incom-latest-news-card {
        grid-template-columns:minmax(180px,38%) minmax(0,62%);
    }
}
@media (max-width:620px) {
    .incom-latest-news {
        margin:12px 0 26px;
        padding:0;
    }
    .incom-latest-news-grid.has-1-items .incom-latest-news-card,
    .incom-latest-news-grid.has-2-items .incom-latest-news-card,
    .incom-latest-news-grid.has-3-items .incom-latest-news-card {
        display:block;
    }
    .incom-latest-news-grid.has-3-items .incom-latest-news-illustration {
        min-height:225px;
    }
    .incom-news-detail-hero-v2 {
        padding:24px 12px 40px;
    }
    .incom-news-detail-castle { width:300px; opacity:.09; }
    .incom-news-detail-hero-copy h1 { font-size:37px; }
    .incom-news-detail-v2 .incom-news-detail-lead { font-size:16px; }
    .incom-news-detail-hero-art,
    .incom-news-detail-hero-photo,
    .incom-news-detail-hero-photo img,
    .incom-news-detail-hero-illustration { min-height:250px; }
    .incom-news-detail-body-v2 { padding:34px 12px 52px; }
    .incom-news-detail-v2 .incom-news-detail-content { padding:31px 22px 36px; font-size:15px; }
    .incom-news-detail-actions-panel { padding:24px 20px 22px; }
}

/* ========================================================================
   Latest News v0.14.2 — high-contrast editorial typography
   ------------------------------------------------------------------------
   The site owner requested no grey body copy on individual Read More pages.
   Light surfaces use true black; secondary copy over the dark hero uses
   pure white. Brand headings, metadata accents and action buttons retain the
   INCOM / IMPAQT palette.
   ======================================================================== */
.incom-news-detail-v2 {
    color:#000;
}

/* Dark hero: replace pale grey/blue secondary text by clean white. */
.incom-news-detail-v2 .incom-news-detail-back-on-dark,
.incom-news-detail-v2 .incom-news-detail-hero-date,
.incom-news-detail-v2 .incom-news-detail-lead {
    color:#fff !important;
}

/* Editorial article: all reading copy is black on white. */
.incom-news-detail-v2 .incom-news-detail-content,
.incom-news-detail-v2 .incom-news-detail-content p,
.incom-news-detail-v2 .incom-news-detail-content li,
.incom-news-detail-v2 .incom-news-detail-content blockquote,
.incom-news-detail-v2 .incom-news-detail-content figcaption,
.incom-news-detail-v2 .incom-news-detail-content td,
.incom-news-detail-v2 .incom-news-detail-content th,
.incom-news-detail-v2 .incom-news-detail-content strong,
.incom-news-detail-v2 .incom-news-detail-content em {
    color:#000 !important;
}

/* Useful-links panel: explanatory text should not fall back to muted grey. */
.incom-news-detail-v2 .incom-news-detail-actions-panel > p {
    color:#000 !important;
}


/* ========================================================================
   Programme v0.15.2 — evolving programme notice
   ======================================================================== */
.incom-programme-update-notice {
    display:grid;
    grid-template-columns:46px minmax(0,1fr);
    gap:15px;
    max-width:920px;
    margin:25px auto 0;
    padding:18px 20px;
    border:1px solid #b9d9ed;
    border-left:4px solid var(--incom-blue);
    border-radius:11px;
    background:linear-gradient(135deg,#f8fcff 0%,#eef7fd 100%);
    box-shadow:0 4px 15px rgba(21,84,126,.06);
    color:#1f3142;
    text-align:left;
}
.incom-programme-update-notice-icon {
    display:flex;
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--incom-blue);
    color:#fff;
    font-family:Georgia,serif;
    font-size:23px;
    font-style:italic;
    font-weight:700;
    line-height:1;
    box-shadow:0 3px 10px rgba(0,110,182,.18);
}
.incom-programme-update-notice-topline {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
    margin-bottom:6px;
}
.incom-programme-update-notice-topline > strong {
    color:#005d9a;
    font-size:16px;
    line-height:1.3;
}
.incom-programme-update-notice-topline > span {
    display:inline-flex;
    align-items:center;
    min-height:23px;
    padding:4px 9px;
    border-radius:999px;
    background:#fff;
    color:#006eb6;
    font-size:9px;
    font-weight:800;
    letter-spacing:.055em;
    line-height:1;
    text-transform:uppercase;
    box-shadow:inset 0 0 0 1px #c5dfee;
}
.incom-tracks-header .incom-programme-update-notice p {
    max-width:none;
    margin:0;
    color:#263648;
    font-size:14px;
    line-height:1.62;
}
.incom-programme-update-notice-deadline {
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:10px;
    color:#42596d;
    font-size:12px;
    line-height:1.35;
}
.incom-programme-update-notice-deadline strong { color:#1d415e; }
.incom-programme-update-calendar {
    position:relative;
    display:inline-block;
    width:14px;
    height:13px;
    border:1.5px solid #1678b7;
    border-radius:3px;
    background:#fff;
}
.incom-programme-update-calendar::before {
    content:"";
    position:absolute;
    top:2px;
    left:-1.5px;
    right:-1.5px;
    border-top:2px solid #1678b7;
}
.incom-programme-update-calendar::after {
    content:"";
    position:absolute;
    top:-3px;
    left:3px;
    width:6px;
    height:4px;
    border-left:1.5px solid #1678b7;
    border-right:1.5px solid #1678b7;
}
@media (max-width:620px) {
    .incom-programme-update-notice { grid-template-columns:36px minmax(0,1fr); gap:11px; padding:15px 14px; }
    .incom-programme-update-notice-icon { width:34px; height:34px; font-size:19px; }
    .incom-programme-update-notice-topline { align-items:flex-start; flex-direction:column; gap:6px; }
}
