.portal-toolbar {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-areas:
                'search'
                'count'
                'filters';
            gap: 1rem;
            margin-bottom: 1.75rem;
        }
        @media (min-width: 1024px) {
            .portal-toolbar {
                grid-template-columns: minmax(0, 1fr) auto;
                grid-template-areas:
                    'search count'
                    'filters filters';
                align-items: start;
            }
        }
        .portal-toolbar-main {
            grid-area: search;
        }
        .portal-search {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: rgba(255,255,255,0.98);
            outline: none;
        }
        .portal-search:focus {
            border-color: rgba(40,148,227,0.42);
            box-shadow: 0 0 0 4px rgba(40,148,227,0.1);
        }
        .portal-filters {
            grid-area: filters;
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            align-items: stretch;
            width: 100%;
        }
        .portal-filter {
            flex: 0 1 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0.7rem 0.95rem;
            border: 1px solid var(--line);
            border-radius: 999px;
            background: rgba(255,255,255,0.96);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .portal-filter:hover,
        .portal-filter[aria-pressed="true"] {
            background: linear-gradient(135deg, var(--vintage-blue), #1f78d1);
            color: #fff;
            border-color: var(--vintage-blue);
        }
        .portal-count {
            grid-area: count;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
            justify-self: start;
        }
        @media (min-width: 1024px) {
            .portal-count {
                justify-self: end;
            }
        }
        .portal-card {
            position: relative;
            scroll-margin-top: 7.5rem;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,246,242,0.98));
            box-shadow: var(--shadow-card);
        }
        .portal-fallback-card + .portal-fallback-card {
            margin-top: 1rem;
        }
        .portal-fallback-title {
            font-family: var(--font-heading);
            font-size: clamp(1.45rem, 2.8vw, 2rem);
            font-weight: 900;
            line-height: 1.12;
            color: var(--ink);
        }
        .portal-fallback-summary {
            max-width: 68ch;
            margin-top: 0.85rem;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.72;
        }
        .portal-fallback-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 1.15rem;
        }
        .portal-fallback-actions--compact {
            margin-top: 0;
        }
        .portal-link-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 0.72rem 0.95rem;
            border: 1px solid rgba(22, 49, 74, 0.15);
            border-radius: 999px;
            background: rgba(255,255,255,0.96);
            color: var(--ink);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        .portal-link-button--primary {
            border-color: var(--vintage-blue);
            background: linear-gradient(135deg, var(--vintage-blue), #1f78d1);
            color: #fff;
        }
        .portal-share-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.65rem;
            margin-top: 1rem;
        }
        .portal-share-label {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-share-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
        }
        .portal-share-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 38px;
            padding: 0.62rem 0.85rem;
            border: 1px solid rgba(22, 49, 74, 0.15);
            border-radius: 999px;
            background: rgba(255,255,255,0.96);
            color: var(--ink);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .portal-share-link:hover {
            transform: translateY(-1px);
            background: rgba(40,148,227,0.08);
        }
        .portal-card-header {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }
        @media (min-width: 900px) {
            .portal-card-header {
                grid-template-columns: minmax(0, 1fr) auto;
                gap: 1rem 1.25rem;
            }
        }
        .portal-meta-stack {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.65rem;
        }
        .portal-type-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.55rem 0.85rem;
            border-radius: 12px;
            background: rgba(255,255,255,0.94);
            border: 1px solid var(--line);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .portal-icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.2rem;
            height: 2.2rem;
            border-radius: 10px;
            font-size: 1rem;
        }
        .portal-icon-box--cantine { background: #ebf5ee; }
        .portal-icon-box--evenement { background: #eef0f9; }
        .portal-icon-box--alerte { background: #f9ece8; }
        .portal-icon-box--info { background: #f2ede9; }
        .portal-icon-box--coup-de-coeur { background: #faedf1; }
        .portal-date-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            max-width: 100%;
            padding: 0.7rem 0.9rem;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,0.92);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-date-pill span:last-child {
            overflow-wrap: anywhere;
        }
        .portal-stamp {
            display: flex;
            align-items: center;
            justify-content: center;
            width: max-content;
            max-width: 100%;
            margin: 0 0 1rem auto;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 0.4rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            background: rgba(255,255,255,0.98);
        }
        .portal-ribbon {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding-left: 0.15rem;
            font-weight: 800;
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-ribbon::before {
            content: '';
            width: 1.25rem;
            height: 1px;
            border-radius: 999px;
            background: currentColor;
            opacity: 0.35;
        }
        .editorial-meta-card {
            margin-top: 1rem;
            padding: 1rem;
            border: 1px solid rgba(22, 49, 74, 0.08);
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,251,0.94)),
                radial-gradient(circle at top left, rgba(127,191,37,0.08), transparent 35%);
        }
        .editorial-meta-title {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--vintage-green);
        }
        .editorial-meta-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
            gap: 0.75rem 1rem;
            margin-top: 0.85rem;
        }
        .editorial-meta-list div {
            min-width: 0;
        }
        .editorial-meta-list dt {
            font-size: 0.66rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .editorial-meta-list dd {
            margin-top: 0.2rem;
            color: var(--ink);
            font-size: 0.92rem;
            font-weight: 700;
            line-height: 1.45;
            overflow-wrap: anywhere;
        }
        .editorial-meta-list a {
            color: var(--vintage-blue);
            text-decoration: underline;
            text-underline-offset: 0.18em;
        }
        .portal-excerpt-card {
            width: 100%;
            padding: 0.95rem 1rem;
            border: 1px solid rgba(22, 49, 74, 0.08);
            border-radius: 18px;
            background:
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(243,248,251,0.94)),
                radial-gradient(circle at top left, rgba(40,148,227,0.08), transparent 35%);
        }
        .portal-excerpt-label {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--vintage-blue);
        }
        .portal-excerpt-text {
            margin-top: 0.35rem;
            font-size: 1rem;
            line-height: 1.72;
            color: var(--ink);
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .portal-excerpt-note {
            margin-top: 0.55rem;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-inline-facts {
            display: grid;
            gap: 1rem;
        }
        @media (min-width: 900px) {
            .portal-inline-facts {
                grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
                align-items: start;
            }
        }
        .portal-article-grid {
            display: grid;
            gap: 1.5rem;
            align-items: start;
        }
        @media (min-width: 1180px) {
            .portal-article-grid {
                grid-template-columns: minmax(0, 2.35fr) minmax(15rem, 18rem);
            }
        }
        .portal-article-main {
            min-width: 0;
        }
        @media (max-width: 767px) {
            .portal-article-grid {
                gap: 1rem;
                margin-top: 1.25rem;
            }
            .portal-article-main {
                padding: 0;
            }
        }
        .portal-support-grid {
            display: grid;
            gap: 1rem;
            align-content: start;
        }
        .portal-support-grid > * {
            min-width: 0;
        }
        .portal-note {
            color: var(--ink);
        }
        .portal-note > * + * {
            margin-top: 1.2rem;
        }
        .portal-note p,
        .portal-note li {
            color: #2f455b;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.86;
        }
        .portal-note h1,
        .portal-note h2,
        .portal-note h3 {
            font-family: var(--font-heading);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -0.02em;
            text-transform: none;
            color: var(--ink);
        }
        .portal-note h1 {
            font-size: clamp(1.9rem, 4vw, 2.4rem);
        }
        .portal-note h2 {
            font-size: clamp(1.45rem, 2.6vw, 1.9rem);
        }
        .portal-note h3 {
            font-size: clamp(1.2rem, 2vw, 1.45rem);
        }
        .portal-note ul,
        .portal-note ol {
            display: grid;
            gap: 0.75rem;
            padding-left: 1.25rem;
        }
        .portal-note li {
            line-height: 1.72;
        }
        .portal-note a {
            color: var(--vintage-blue);
            font-weight: 700;
            text-decoration: underline;
            text-decoration-thickness: 0.08em;
            text-underline-offset: 0.18em;
        }
        .portal-note strong {
            color: var(--ink);
            font-weight: 800;
        }
        .portal-note code {
            padding: 0.12rem 0.32rem;
            border-radius: 8px;
            background: rgba(22, 49, 74, 0.07);
            font-size: 0.92em;
        }
        .portal-note .notion-code {
            overflow-x: auto;
            padding: 1rem;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: rgba(22, 49, 74, 0.05);
            color: #22374b;
            font-size: 0.92rem;
            line-height: 1.65;
        }
        .portal-note .notion-code code {
            padding: 0;
            border-radius: 0;
            background: transparent;
            font-size: inherit;
        }
        .portal-note .notion-table-scroll {
            overflow-x: auto;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: rgba(255,255,255,0.96);
            box-shadow: 0 12px 28px rgba(22, 49, 74, 0.08);
        }
        .portal-note .notion-table {
            width: 100%;
            min-width: min(42rem, 100%);
            border-collapse: collapse;
            color: #385067;
            font-size: 0.95rem;
            line-height: 1.55;
        }
        .portal-note .notion-table th,
        .portal-note .notion-table td {
            min-width: 9rem;
            padding: 0.85rem 0.95rem;
            border-bottom: 1px solid var(--line);
            border-right: 1px solid var(--line);
            text-align: left;
            vertical-align: top;
        }
        .portal-note .notion-table th {
            color: var(--ink);
            font-weight: 800;
            background: rgba(40, 148, 227, 0.08);
        }
        .portal-note .notion-table tr:last-child > th,
        .portal-note .notion-table tr:last-child > td {
            border-bottom: 0;
        }
        .portal-note .notion-table th:last-child,
        .portal-note .notion-table td:last-child {
            border-right: 0;
        }
        .portal-note hr {
            border: 0;
            border-top: 1px solid var(--line);
        }
        .portal-note blockquote,
        .portal-note .notion-callout {
            padding: 1.1rem 1.2rem;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: rgba(255,255,255,0.92);
        }
        .portal-plain-list {
            display: grid;
            gap: 0.75rem;
            padding-left: 1.25rem;
        }
        .portal-plain-list li {
            color: #2f455b;
            line-height: 1.8;
        }
        .portal-note .notion-figure {
            display: grid;
            gap: 0.6rem;
            margin: 1rem 0;
        }
        .portal-note .notion-figure img {
            width: 100%;
            max-height: min(52vh, 24rem);
            height: auto;
            aspect-ratio: auto;
            object-fit: contain;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: transparent;
            box-shadow: var(--shadow-card);
            animation: none;
            cursor: zoom-in;
        }
        .portal-note .notion-figure figcaption {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-note .notion-video {
            display: grid;
            gap: 0.6rem;
            margin: 1rem 0;
        }
        .portal-note .notion-video-frame {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: #0f172a;
            box-shadow: var(--shadow-card);
        }
        .portal-note .notion-video-frame iframe,
        .portal-note .notion-video-frame video {
            width: 100%;
            aspect-ratio: 16 / 9;
            height: auto;
        }
        .portal-note .notion-video-frame iframe {
            border: 0;
        }
        .portal-note .notion-video-link {
            display: block;
            padding: 1rem;
            color: #ffffff;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
        }
        .portal-note .notion-video figcaption {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-note .notion-video-fallback {
            font-size: 0.84rem;
            font-weight: 800;
        }
        .portal-note .notion-video-fallback a {
            color: var(--vintage-blue);
            text-decoration: underline;
            text-underline-offset: 0.18em;
        }
        .portal-cantine-board {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            margin-top: 1.75rem;
        }
        .portal-cantine-day {
            --cantine-accent: var(--vintage-blue);
            --cantine-accent-soft: rgba(40, 148, 227, 0.12);
            --cantine-outline: rgba(40, 148, 227, 0.18);
            --cantine-rail: linear-gradient(180deg, #59b4e6, #3c79de);
            position: relative;
            display: grid;
            grid-template-columns: 7.2rem minmax(0, 1fr);
            overflow: hidden;
            border: 1px solid rgba(22, 49, 74, 0.08);
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,252,0.98));
            box-shadow: 0 18px 40px rgba(22, 49, 74, 0.08);
        }
        .portal-cantine-day--lundi {
            --cantine-accent: #3f82e4;
            --cantine-accent-soft: rgba(63, 130, 228, 0.12);
            --cantine-outline: rgba(63, 130, 228, 0.18);
            --cantine-rail: linear-gradient(180deg, #54b4dd, #4377e0);
        }
        .portal-cantine-day--mardi {
            --cantine-accent: #78c64d;
            --cantine-accent-soft: rgba(120, 198, 77, 0.12);
            --cantine-outline: rgba(120, 198, 77, 0.2);
            --cantine-rail: linear-gradient(180deg, #a9df55, #66b950);
        }
        .portal-cantine-day--mercredi {
            --cantine-accent: #f3b93f;
            --cantine-accent-soft: rgba(243, 185, 63, 0.14);
            --cantine-outline: rgba(243, 185, 63, 0.24);
            --cantine-rail: linear-gradient(180deg, #ffcc47, #f4b132);
        }
        .portal-cantine-day--jeudi {
            --cantine-accent: #ef7d45;
            --cantine-accent-soft: rgba(239, 125, 69, 0.14);
            --cantine-outline: rgba(239, 125, 69, 0.22);
            --cantine-rail: linear-gradient(180deg, #f39149, #ec714d);
        }
        .portal-cantine-day--vendredi {
            --cantine-accent: #d74e86;
            --cantine-accent-soft: rgba(215, 78, 134, 0.14);
            --cantine-outline: rgba(215, 78, 134, 0.22);
            --cantine-rail: linear-gradient(180deg, #df6786, #c93f83);
        }
        .portal-cantine-rail {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100%;
            padding: 1.5rem 0.9rem;
            background: var(--cantine-rail);
            box-shadow: inset -1px 0 0 rgba(255,255,255,0.22);
        }
        .portal-cantine-rail-label {
            color: rgba(255,255,255,0.98);
            font-family: var(--font-heading);
            font-size: 1.15rem;
            font-weight: 800;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
        }
        .portal-cantine-sheet {
            position: relative;
            padding: 1.35rem 1.4rem 1.3rem;
            background:
                radial-gradient(circle at top right, var(--cantine-accent-soft), transparent 32%),
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
        }
        .portal-cantine-sheet::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent 16%);
            pointer-events: none;
        }
        .portal-cantine-list {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
        }
        .portal-cantine-item {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 1rem;
            align-items: center;
            padding: 0.1rem 0;
        }
        .portal-cantine-item + .portal-cantine-item {
            padding-top: 1rem;
            border-top: 1px solid rgba(22, 49, 74, 0.08);
        }
        .portal-cantine-item-main {
            min-width: 0;
        }
        .portal-cantine-item-top {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem 0.7rem;
            align-items: center;
        }
        .portal-cantine-item-title {
            font-family: var(--font-heading);
            font-size: clamp(1.02rem, 2vw, 1.25rem);
            font-weight: 800;
            line-height: 1.25;
            color: var(--ink);
        }
        .portal-cantine-item-description {
            margin-top: 0.38rem;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.98rem;
            font-weight: 600;
            color: #76859a;
        }
        .portal-cantine-item-description-icon {
            color: var(--cantine-accent);
            opacity: 0.75;
        }
        .portal-cantine-note {
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.95rem;
            min-height: 9.5rem;
            padding: 1.15rem 1.2rem;
            border: 2px dashed var(--cantine-outline);
            border-radius: 24px;
            background:
                radial-gradient(circle at top center, rgba(255,255,255,0.95), rgba(255,255,255,0.92)),
                linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,252,0.98));
            color: #70819a;
            box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
        }
        .portal-cantine-note::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--cantine-accent-soft), transparent 38%);
            pointer-events: none;
        }
        .portal-cantine-note-icon,
        .portal-cantine-note-copy {
            position: relative;
        }
        .portal-cantine-note-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border: 1px solid rgba(22, 49, 74, 0.1);
            border-radius: 999px;
            background: rgba(255,255,255,0.9);
            color: var(--cantine-accent);
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: 0 10px 18px rgba(22, 49, 74, 0.08);
        }
        .portal-cantine-note-copy {
            font-size: 1.05rem;
            font-weight: 700;
            line-height: 1.6;
        }
        .portal-favorite-button {
            flex: 0 0 auto;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border: 1px solid rgba(22, 49, 74, 0.08);
            border-radius: 999px;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.96));
            color: #c5d2dd;
            font-size: 1.35rem;
            box-shadow: 0 10px 20px rgba(22, 49, 74, 0.08);
            transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .portal-favorite-button:hover {
            transform: translateY(-1px);
            color: #a5b7c7;
        }
        .portal-favorite-button[aria-pressed="true"] {
            background: linear-gradient(180deg, #fff2f6, #ffe7ee);
            color: #bb526b;
            border-color: rgba(187, 82, 107, 0.18);
            box-shadow: 0 12px 24px rgba(187, 82, 107, 0.18);
        }
        .portal-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            border: 1px solid var(--line);
            border-radius: 999px;
            padding: 0.22rem 0.58rem;
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
            background: rgba(255,255,255,0.96);
        }
        .portal-badge--bio { background: #eef7ef; color: #47624d; }
        .portal-badge--france { background: #eef3fb; color: #1f69a3; }
        .portal-badge--regional { background: #fbf0df; color: #8d6534; }
        .portal-badge--msc { background: #e8f5f8; color: #3c6d79; }
        .portal-badge--ce2,
        .portal-badge--certifié { background: #fff1e7; color: #92531f; }
        @media (max-width: 767px) {
            .portal-cantine-day {
                grid-template-columns: 1fr;
            }
            .portal-cantine-rail {
                justify-content: flex-start;
                padding: 1rem 1.2rem;
            }
            .portal-cantine-rail-label {
                font-size: 0.95rem;
                letter-spacing: 0.22em;
                writing-mode: horizontal-tb;
                transform: none;
            }
            .portal-cantine-sheet {
                padding: 1.1rem 1.1rem 1.05rem;
            }
            .portal-cantine-item {
                grid-template-columns: minmax(0, 1fr);
            }
            .portal-favorite-button {
                width: 2.8rem;
                height: 2.8rem;
                justify-self: start;
            }
            .portal-cantine-note {
                align-items: flex-start;
                min-height: 0;
            }
        }
        .portal-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            border-bottom: 1px solid rgba(40,148,227,0.35);
            font-weight: 700;
            color: var(--ink);
        }
        .portal-book-cover-card {
            position: relative;
            overflow: hidden;
            padding: 0.9rem;
            border: 1px solid rgba(246, 163, 24, 0.18);
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(251,246,238,0.98));
            box-shadow: 0 14px 26px rgba(22, 49, 74, 0.08);
        }
        .portal-book-cover-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(246,163,24,0.14), transparent 28%);
            pointer-events: none;
        }
        .portal-book-cover {
            position: relative;
            display: block;
            width: 100%;
            aspect-ratio: 2 / 3;
            object-fit: cover;
            border-radius: 14px;
            background: linear-gradient(180deg, rgba(227, 235, 241, 0.92), rgba(209, 220, 229, 0.92));
            box-shadow: 0 18px 30px rgba(22, 49, 74, 0.18);
            transform-origin: center;
            animation: bookFloat 4.8s ease-in-out infinite;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }
        .portal-book-cover.is-fallback {
            display: grid;
            place-items: center;
            padding: 1rem;
            color: var(--muted);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-align: center;
            line-height: 1.5;
        }
        .portal-book-cover-card:hover .portal-book-cover {
            transform: translateY(-3px) rotate(-1deg) scale(1.01);
            box-shadow: 0 24px 36px rgba(22, 49, 74, 0.22);
        }
        .portal-content-image-card {
            width: fit-content;
            max-width: min(100%, 34rem);
            margin: 0.65rem auto 1rem;
            overflow: visible;
            padding: 10px;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }
        .portal-content-image-card::before {
            display: none;
        }
        .portal-content-image-card .portal-book-cover {
            width: auto;
            max-width: 100%;
            max-height: min(50vh, 22rem);
            height: auto;
            aspect-ratio: auto;
            object-fit: contain;
            animation: none;
            background: transparent;
            box-shadow: 0 12px 22px rgba(22, 49, 74, 0.13);
            cursor: zoom-in;
        }
        .portal-content-image-card:hover .portal-book-cover {
            transform: none;
            box-shadow: 0 12px 22px rgba(22, 49, 74, 0.13);
        }
        .portal-image-carousel {
            display: grid;
            gap: 0.85rem;
        }
        .portal-image-carousel--inline {
            width: fit-content;
            max-width: min(100%, 34rem);
            justify-self: center;
            margin: 1rem auto 1.15rem;
            padding: 10px;
        }
        .portal-image-carousel--wide {
            width: fit-content;
            max-width: 100%;
            justify-self: center;
            padding: 10px;
        }
        .portal-image-carousel-viewport {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
        }
        .portal-image-carousel-track {
            display: flex;
            transition: transform 0.28s ease;
            will-change: transform;
        }
        .portal-image-carousel-slide {
            display: flex;
            flex-direction: column;
            min-height: 0;
            min-width: 100%;
            margin: 0;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
        }
        .portal-image-carousel-slide .portal-book-cover {
            animation: none;
            width: auto;
            max-width: 100%;
            max-height: min(50vh, 22rem);
            height: auto;
            box-shadow: 0 14px 24px rgba(22, 49, 74, 0.14);
            cursor: zoom-in;
            object-fit: contain;
        }
        @media (hover: hover) and (pointer: fine) {
            .portal-content-image-card:hover .portal-book-cover {
                transform: scale(1.08);
                box-shadow: 0 18px 34px rgba(22, 49, 74, 0.2);
            }
            .portal-image-carousel-slide:hover .portal-book-cover {
                transform: scale(1.06);
                box-shadow: 0 18px 30px rgba(22, 49, 74, 0.2);
            }
        }
        .portal-image-carousel--wide .portal-book-cover {
            aspect-ratio: auto;
            background: transparent;
        }
        [data-article-page] .portal-support-grid .portal-cover-card,
        [data-article-page] .portal-support-grid .portal-image-carousel--wide {
            width: fit-content;
            max-width: 100%;
            justify-self: center;
            padding: 10px;
        }
        [data-article-page] .portal-support-grid .portal-cover-card .portal-book-cover,
        [data-article-page] .portal-support-grid .portal-image-carousel--wide .portal-book-cover {
            display: block;
            width: auto;
            max-width: 100%;
            height: auto;
            max-height: min(58vh, 32rem);
            aspect-ratio: auto;
            object-fit: contain;
            margin-inline: auto;
        }
        [data-article-page] .portal-support-grid .portal-image-carousel--wide .portal-image-carousel-slide {
            min-height: 0;
        }
        .portal-image-carousel--inline .portal-image-carousel-slide.is-portrait .portal-book-cover {
            max-width: min(100%, 18rem);
            max-height: min(56vh, 24rem);
        }
        .portal-image-carousel--inline .portal-image-carousel-slide.is-landscape .portal-book-cover {
            width: auto;
            max-width: 100%;
            max-height: min(44vh, 20rem);
        }
        .portal-image-carousel--cover .portal-book-cover {
            aspect-ratio: 2 / 3;
        }
        .portal-image-carousel-controls {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 2.2rem 1fr 2.2rem;
            align-items: center;
            gap: 0.7rem;
        }
        .portal-image-carousel-button {
            display: grid;
            width: 2.2rem;
            height: 2.2rem;
            place-items: center;
            border: 1px solid rgba(22, 49, 74, 0.14);
            border-radius: 999px;
            background: rgba(255,255,255,0.92);
            color: var(--ink);
            font-size: 1.35rem;
            font-weight: 900;
            line-height: 1;
            box-shadow: 0 8px 16px rgba(22, 49, 74, 0.08);
            transition: transform 0.18s ease, border-color 0.18s ease;
        }
        .portal-image-carousel-button:hover {
            border-color: rgba(40, 148, 227, 0.45);
            transform: translateY(-1px);
        }
        .portal-image-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.42rem;
        }
        .portal-image-carousel-dot {
            width: 0.56rem;
            height: 0.56rem;
            border: 0;
            border-radius: 999px;
            background: rgba(22, 49, 74, 0.22);
        }
        .portal-image-carousel-dot[aria-pressed="true"] {
            background: var(--vintage-red);
            transform: scale(1.22);
        }
        .portal-image-carousel-counter {
            position: relative;
            z-index: 1;
            margin: 0;
            text-align: center;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-book-cover-caption {
            position: relative;
            margin-top: 0;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--vintage-red);
            text-align: center;
        }
        .portal-image-preview[hidden] {
            display: none;
        }
        .portal-image-preview {
            position: fixed;
            inset: 0;
            z-index: 80;
            display: grid;
            place-items: center;
            padding: 1.25rem;
        }
        .portal-image-preview-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(12, 24, 36, 0.72);
            backdrop-filter: blur(5px);
        }
        .portal-image-preview-panel {
            position: relative;
            z-index: 1;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            width: auto;
            max-width: calc(100vw - 2.5rem);
            max-height: calc(100vh - 2.5rem);
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }
        .portal-image-preview-image {
            display: block;
            width: auto;
            max-width: calc(100vw - 2.5rem);
            max-height: calc(100vh - 2.5rem);
            margin: 0 auto;
            border-radius: 12px;
            box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
            object-fit: contain;
        }
        .portal-image-preview-caption {
            justify-self: center;
            max-width: min(100%, 46rem);
            margin: 0;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.92);
            text-align: center;
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-image-preview-close {
            position: absolute;
            top: -1rem;
            right: -1rem;
            z-index: 2;
            display: grid;
            width: 2.4rem;
            height: 2.4rem;
            place-items: center;
            border: 1px solid rgba(22, 49, 74, 0.14);
            border-radius: 999px;
            background: rgba(255,255,255,0.94);
            color: var(--ink);
            font-size: 1.45rem;
            font-weight: 800;
            line-height: 1;
            box-shadow: 0 10px 24px rgba(22, 49, 74, 0.16);
        }
        .portal-image-preview-close:hover,
        .portal-image-preview-close:focus-visible {
            border-color: rgba(40, 148, 227, 0.45);
            outline: none;
            box-shadow: 0 0 0 4px rgba(40, 148, 227, 0.14);
        }
        body.portal-image-preview-open {
            overflow: hidden;
        }
        @media (max-width: 767px) {
            .portal-content-image-card,
            .portal-image-carousel--inline {
                width: 100%;
                max-width: 100%;
                margin: 0.75rem auto 1rem;
            }
            .portal-content-image-card {
                padding: 10px;
            }
            .portal-image-carousel--inline {
                padding: 10px;
            }
            .portal-content-image-card .portal-book-cover,
            .portal-image-carousel-slide .portal-book-cover {
                max-height: min(46vh, 18rem);
            }
            .portal-image-carousel-slide {
                min-height: 0;
            }
            .portal-image-carousel--inline .portal-image-carousel-slide.is-portrait .portal-book-cover {
                max-width: min(100%, 15rem);
                max-height: min(52vh, 20rem);
            }
            .portal-image-carousel--inline .portal-image-carousel-slide.is-landscape .portal-book-cover {
                max-height: min(38vh, 16rem);
            }
            .portal-image-preview {
                padding: 0.65rem;
            }
            .portal-image-preview-panel {
                width: auto;
                max-width: calc(100vw - 1.3rem);
                max-height: calc(100vh - 1.3rem);
                padding: 0;
            }
            .portal-image-preview-image {
                max-width: calc(100vw - 1.3rem);
                max-height: calc(100vh - 1.3rem);
                border-radius: 10px;
            }
        }
        .portal-status-box {
            margin-bottom: 1.2rem;
            padding: 1rem 1.1rem;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: rgba(255,255,255,0.94);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--muted);
        }
        .portal-status-box--error {
            background: #fff0ee;
            border-color: rgba(170, 76, 66, 0.24);
            color: #8a3d33;
        }
        .portal-fact-card {
            border: 1px solid var(--line);
            border-radius: 18px;
            background: rgba(255,255,255,0.94);
            padding: 1rem 1.05rem;
        }
        .portal-fact-title {
            margin-bottom: 0.45rem;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--vintage-blue);
        }
        .portal-feature-list {
            display: grid;
            gap: 0.6rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .portal-feature-list li {
            display: flex;
            gap: 0.65rem;
            align-items: flex-start;
            font-size: 0.95rem;
            line-height: 1.55;
        }
        .portal-feature-list li::before {
            content: '•';
            color: var(--vintage-red);
            font-weight: 900;
            margin-top: -0.05rem;
        }
        .portal-agenda-list {
            display: grid;
            gap: 0.75rem;
        }
        .portal-agenda-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.85rem 0.95rem;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: rgba(255,255,255,0.96);
        }
        .portal-agenda-meta {
            display: grid;
            gap: 0.15rem;
        }
        .portal-agenda-date {
            font-size: 0.92rem;
            font-weight: 800;
            color: var(--ink);
        }
        .portal-agenda-hours {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .portal-agenda-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.7rem 0.9rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--vintage-blue), #1f78d1);
            color: #fff;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .section-divider {
            height: 1px;
            width: 100%;
            background: var(--line);
        }
        @media (max-width: 767px) {
            .portal-card {
                border-radius: 14px;
                box-shadow: 0 10px 22px rgba(22, 49, 74, 0.08);
            }
            .portal-card-header {
                gap: 0.85rem;
                margin-bottom: 1rem;
            }
            .editorial-meta-card {
                margin-top: 0.8rem;
                padding: 0.9rem;
                border-radius: 14px;
            }
            .editorial-meta-list {
                grid-template-columns: 1fr;
                gap: 0.7rem;
            }
            .portal-article-grid {
                gap: 0.9rem;
                margin-top: 1rem;
            }
            .portal-excerpt-card {
                border-radius: 14px;
                padding: 0.9rem 0.95rem;
            }
            .portal-excerpt-text {
                -webkit-line-clamp: 5;
                font-size: 0.98rem;
                line-height: 1.62;
            }
            .portal-note > * + * {
                margin-top: 1rem;
            }
            .portal-note p,
            .portal-note li {
                font-size: 1rem;
                line-height: 1.72;
            }
            .portal-note h1 {
                font-size: clamp(1.55rem, 7vw, 1.95rem);
            }
            .portal-note h2 {
                font-size: clamp(1.3rem, 6vw, 1.6rem);
            }
            .portal-note h3 {
                font-size: clamp(1.1rem, 5vw, 1.35rem);
            }
            .portal-fallback-actions {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.55rem;
            }
            .portal-link-button {
                width: 100%;
                justify-content: center;
            }
            [data-article-page] .article-page-inner {
                padding: 0;
            }
            [data-article-page] .article-section-header {
                margin-bottom: 1.2rem;
            }
            [data-article-page] .article-header-copy {
                max-width: none;
            }
            [data-article-page] .article-title {
                font-size: clamp(1.65rem, 7.2vw, 2.05rem);
                line-height: 1.08;
                letter-spacing: -0.015em;
            }
            [data-article-page] .article-summary {
                font-size: 1rem;
                line-height: 1.65;
            }
            [data-article-page] .article-header-actions {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.55rem;
                width: 100%;
            }
            [data-article-page] .article-header-action {
                justify-content: center;
                width: 100%;
                min-height: 44px;
                padding: 0.75rem 0.95rem;
                font-size: 0.68rem;
                letter-spacing: 0.13em;
            }
            [data-article-page] .article-content-card {
                padding: 1rem;
            }
            [data-article-page] .portal-article-main > .mt-8 {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.55rem;
            }
            [data-article-page] .portal-article-main > .mt-8 > a {
                justify-content: center;
                width: 100%;
                min-height: 44px;
                padding: 0.75rem 0.95rem;
                letter-spacing: 0.13em;
            }
            [data-article-page] .portal-share-actions {
                margin-top: 0.8rem;
                display: grid;
                gap: 0.55rem;
            }
            [data-article-page] .portal-share-links {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.5rem;
            }
            [data-article-page] .portal-share-link {
                justify-content: center;
                width: 100%;
            }
        }
        @keyframes bookFloat {
            0%, 100% {
                transform: translateY(0) rotate(-1deg);
            }
            50% {
                transform: translateY(-6px) rotate(1deg);
            }
        }
