/*
Theme Name: Consultants Foot
Theme URI: https://example.com/consultants-foot
Author: Consultants Foot
Author URI: https://example.com
Description: Thème média modulaire pour citations de consultants foot, avec navigation par consultant, club, émission et thème.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: consultants-foot
*/

:root {
    --cf-accent: #68d83b;
    --cf-secondary: #5b2ac8;
    --cf-ink: #090d16;
    --cf-muted: #667085;
    --cf-line: #e8eaf0;
    --cf-soft: #f6f7fa;
    --cf-white: #fff;
    --cf-dark: #02070d;
    --cf-radius: 8px;
    --cf-shadow: 0 16px 38px rgba(16, 24, 40, 0.09);
    --cf-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: var(--cf-ink);
    font-family: var(--cf-font);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.cf-site-main {
    min-height: 70vh;
}

.cf-page {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
    padding: 34px 0 48px;
}

.cf-page-chat {
    padding-top: 28px;
}

.cf-page-content {
    max-width: 920px;
}

.cf-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 7, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.cf-header-inner,
.cf-footer-inner {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
}

.cf-header-inner {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 28px);
    min-height: 76px;
}

.cf-brand {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.cf-brand strong {
    color: var(--cf-accent);
}

.cf-brand-small {
    font-size: 18px;
}

.cf-main-nav {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.cf-menu,
.cf-footer-menu {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.45vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.cf-menu > li {
    position: relative;
}

.cf-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 76px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.cf-menu a:hover,
.cf-menu > .current-menu-item > a,
.cf-menu > .current-menu-parent > a,
.cf-menu > .current-menu-ancestor > a,
.cf-menu > .is-active > a {
    color: var(--cf-accent);
    box-shadow: inset 0 -3px 0 var(--cf-accent);
}

.cf-menu .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    z-index: 80;
    display: grid;
    min-width: 220px;
    margin: 0;
    padding: 8px;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--cf-radius);
    background: #02070d;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .16s ease, transform .16s ease;
}

.cf-menu > li:hover > .sub-menu,
.cf-menu > li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cf-menu .sub-menu a {
    display: flex;
    min-height: 38px;
    border-radius: 6px;
    padding: 0 10px;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.cf-menu .sub-menu a:hover,
.cf-menu .sub-menu .current-menu-item > a,
.cf-menu .sub-menu .current-menu-parent > a,
.cf-menu .sub-menu .current-menu-ancestor > a,
.cf-menu .sub-menu .is-active > a {
    background: rgba(117, 220, 60, 0.12);
    color: var(--cf-accent);
    box-shadow: none;
}

.cf-auth {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.cf-auth-link,
.cf-user-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--cf-radius);
    padding: 0 13px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.cf-auth-link:hover,
.cf-user-chip:hover {
    border-color: rgba(117, 220, 60, 0.46);
    background: rgba(117, 220, 60, 0.12);
    color: #fff;
}

.cf-auth-login {
    border-color: transparent;
    background: #75dc3c !important;
    color: #06110b !important;
    box-shadow: 0 10px 26px rgba(117, 220, 60, 0.18);
}

.cf-auth-login:hover {
    background: #8bf24b !important;
    color: #06110b !important;
}

.cf-user-menu {
    position: relative;
}

.cf-user-menu summary {
    cursor: pointer;
    list-style: none;
}

.cf-user-menu summary::-webkit-details-marker {
    display: none;
}

.cf-user-chip {
    gap: 9px;
    padding: 0 12px 0 5px;
    text-transform: none;
}

.cf-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.cf-user-name {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-user-caret {
    color: var(--cf-accent);
    font-size: 14px;
    line-height: 1;
}

.cf-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    min-width: 170px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--cf-radius);
    background: #02070d;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.cf-user-dropdown a {
    padding: 11px 13px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 800;
}

.cf-user-dropdown a:hover {
    background: rgba(117, 220, 60, 0.12);
    color: var(--cf-accent);
}

.cf-icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: var(--cf-radius);
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.cf-search-toggle {
    flex: 0 0 auto;
    color: #fff;
    font-size: 35px;
}

.cf-search-toggle[aria-expanded="true"] {
    background: rgba(117, 220, 60, 0.14);
    color: var(--cf-accent);
}

.cf-header-search-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 7, 13, 0.98);
}

.cf-header-search-panel[hidden] {
    display: none;
}

.cf-header-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px 42px;
    gap: 8px;
    width: min(900px, calc(100% - 36px));
    margin: 0 auto;
    padding: 14px 0;
}

.cf-header-search label {
    display: block;
    min-width: 0;
}

.cf-header-search input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    outline: 0;
}

.cf-header-search input:focus {
    border-color: rgba(117, 220, 60, 0.54);
    box-shadow: 0 0 0 3px rgba(117, 220, 60, 0.12);
}

.cf-header-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.cf-header-search-submit,
.cf-header-search-close {
    display: inline-grid;
    place-items: center;
    min-width: 0;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font: inherit;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.cf-header-search-submit {
    background: var(--cf-accent);
    color: #06110b;
}

.cf-header-search-close:hover {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
}

.cf-menu-toggle {
    display: none;
}

.cf-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    background: currentColor;
}

.cf-home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
    min-height: 0;
    overflow: hidden;
    border: 1px solid #17202c;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    background:
        radial-gradient(circle at 50% 38%, rgba(104, 216, 59, 0.20), transparent 27%),
        radial-gradient(circle at 88% 48%, rgba(91, 42, 200, 0.16), transparent 30%),
        linear-gradient(135deg, #02070d 0%, #07121c 52%, #02070d 100%);
    color: #fff;
    box-shadow: 0 26px 70px rgba(2, 7, 13, 0.22);
}

.cf-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, #02070d 0%, rgba(2, 7, 13, 0.98) 26%, rgba(2, 7, 13, 0.78) 38%, rgba(2, 7, 13, 0.22) 56%, rgba(2, 7, 13, 0) 72%),
        radial-gradient(circle at 37% 54%, rgba(104, 216, 59, 0.18), transparent 28%);
    pointer-events: none;
}

.cf-hero-main {
    position: relative;
    z-index: 2;
    display: block;
    height: clamp(250px, 24vw, 340px);
    min-height: 0;
    min-width: 0;
    overflow: hidden;
}

.cf-hero-main::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: 0;
    z-index: 4;
    width: 3px;
    border-radius: 999px;
    background: rgba(238, 199, 97, 0.58);
}

.cf-hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 26px 48px 26px;
}

.cf-kicker,
.cf-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    border-radius: 5px;
    padding: 5px 10px;
    background: var(--cf-accent);
    color: #08200a;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cf-hero-copy blockquote {
    display: -webkit-box;
    max-width: min(1360px, calc(100% - 520px));
    margin: 10px 0 15px;
    overflow: hidden;
    font-size: clamp(25px, 2.45vw, 38px);
    line-height: 1.04;
    font-weight: 700;
    text-wrap: balance;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cf-hero-copy blockquote::first-letter {
    color: var(--cf-accent);
}

.cf-consultant-name {
    color: var(--cf-accent);
    font-weight: 900;
    text-transform: uppercase;
}

.cf-hero-copy .cf-kicker {
    min-height: 0;
    padding: 0;
    background: transparent;
    color: var(--cf-accent);
    font-size: 11px;
}

.cf-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
}

.cf-hero-meta span {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.cf-hero-meta span::before {
    content: "•";
    margin-right: 9px;
    color: var(--cf-accent);
}

.cf-hero-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    isolation: isolate;
}

.cf-hero-image::before,
.cf-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cf-hero-image::before {
    background: linear-gradient(90deg, #02070d 0%, rgba(2, 7, 13, 0.98) 36%, rgba(2, 7, 13, 0.84) 46%, rgba(2, 7, 13, 0.52) 58%, rgba(2, 7, 13, 0.18) 70%, rgba(2, 7, 13, 0) 82%);
}

.cf-hero-image::after {
    background:
        linear-gradient(180deg, rgba(2, 7, 13, 0.12), rgba(2, 7, 13, 0.36)),
        radial-gradient(circle at 78% 52%, rgba(104, 216, 59, 0.18), transparent 34%);
}

.cf-hero-photo,
.cf-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cf-hero-photo {
    display: block;
    width: min(46%, 660px);
    height: 100%;
    margin-left: auto;
    min-height: 0;
    object-position: center;
    opacity: 0.90;
    filter: saturate(1.04) contrast(1.03);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, #000 31%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, #000 31%);
}

.cf-hero-side {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    padding: 10px 14px 12px;
    background: #02070d;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.cf-hero-side-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow-x: auto;
    padding: 0 0 2px;
}

.cf-hero-side-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 18px;
    gap: 4px 12px;
    align-items: center;
    min-width: 0;
    min-height: 82px;
    padding: 10px 13px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    background: transparent;
}

.cf-hero-side-item:last-child {
    border-right: 0;
}

.cf-hero-side-item::after {
    content: "›";
    grid-column: 3;
    grid-row: 1 / span 3;
    color: var(--cf-accent);
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
}

.cf-hero-side-item .cf-avatar {
    grid-row: span 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(104, 216, 59, 0.18);
}

.cf-hero-side-item span:not(.cf-avatar span) {
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.16;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cf-hero-side-item strong {
    grid-column: 2;
    color: var(--cf-accent);
    font-size: 10px;
    text-transform: uppercase;
}

.cf-hero-side-item small {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 700;
}

.cf-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 38px;
    border-radius: 7px;
    padding: 0 18px;
    background: var(--cf-accent);
    color: #0b2108;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(104, 216, 59, 0.18);
}

.cf-hero-cta span {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    font-size: 10px;
}

.cf-hero-all-link {
    margin: 0;
    border-color: rgba(238, 199, 97, 0.58);
    color: var(--cf-accent);
    justify-content: space-between;
    min-height: 38px;
    padding: 0 12px 0 14px;
    font-size: 11px;
    white-space: nowrap;
}

.cf-hero-all-link span {
    margin-left: 10px;
    font-size: 25px;
    line-height: 1;
}

.cf-outline-button,
.cf-button,
.cf-audio-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 6px;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cf-outline-button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.cf-button {
    background: var(--cf-secondary);
    color: #fff;
}

.cf-filter-browser,
.cf-category-band,
.cf-feature-band,
.cf-archive-head,
.cf-index-list {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
}

.cf-filter-browser {
    padding: 24px 0;
}

.cf-filter-search {
    display: block;
    max-width: 620px;
    margin-bottom: 14px;
    position: relative;
}

.cf-filter-search::before {
    content: "⌕";
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--cf-muted);
    font-size: 19px;
    line-height: 1;
}

.cf-filter-search input {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--cf-line);
    border-radius: 999px;
    padding: 0 18px 0 46px;
    background: linear-gradient(180deg, #fff, #f9fafc);
    color: var(--cf-ink);
    font: inherit;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
}

.cf-filter-rail {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--cf-line);
    border-radius: 14px;
    padding: 10px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(16, 24, 40, 0.08);
}

.cf-filter-arrow {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--cf-line);
    border-radius: 50%;
    background: #061426;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.16s ease, background 0.16s ease;
}

.cf-filter-arrow:hover {
    background: var(--cf-secondary);
    transform: translateY(-1px);
}

.cf-filter-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.cf-filter-strip::-webkit-scrollbar {
    display: none;
}

.cf-filter-strip a,
.cf-chip {
    flex: 0 0 auto;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 18px;
    background: #f3f5f8;
    color: #1f2937;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.cf-filter-strip a {
    display: inline-grid;
    align-content: center;
    gap: 2px;
    min-height: 54px;
    scroll-snap-align: start;
}

.cf-filter-strip a:hover {
    border-color: rgba(91, 42, 200, 0.22);
    box-shadow: 0 10px 22px rgba(16, 24, 40, 0.10);
    transform: translateY(-1px);
}

.cf-filter-strip a small {
    color: #7b8494;
    font-size: 10px;
    line-height: 1;
}

.cf-filter-strip a.is-active {
    background: var(--cf-accent);
    color: #0b2108;
}

.cf-filter-strip a.is-active small {
    color: rgba(8, 32, 10, 0.7);
}

.cf-filter-empty {
    display: none;
    margin: 8px 0 0;
    color: var(--cf-muted);
    font-size: 13px;
    font-weight: 700;
}

.cf-filter-empty.is-visible {
    display: block;
}

.cf-home-layout {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr) 310px;
    gap: 22px;
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
}

.cf-panel {
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    background: #fff;
    box-shadow: var(--cf-shadow);
}

.cf-panel,
.cf-category-band,
.cf-feature-band {
    padding: 24px;
}

.cf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.cf-section-head h2,
.cf-panel h2,
.cf-category-band h2,
.cf-feature-band h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    text-transform: uppercase;
}

.cf-section-head a,
.cf-panel > a:not(.cf-button) {
    color: var(--cf-secondary);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.cf-list {
    display: grid;
}

.cf-quote-row {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 100px;
    padding: 13px 0;
    border-bottom: 1px solid var(--cf-line);
}

.cf-list.compact .cf-quote-row {
    grid-template-columns: 64px 1fr;
    gap: 12px;
    min-height: 74px;
}

.cf-list.compact .cf-row-time {
    display: none;
}

.cf-quote-row:last-child {
    border-bottom: 0;
}

.cf-avatar {
    width: 74px;
    height: 74px;
    border-radius: 5px;
    object-fit: cover;
}

.cf-list.compact .cf-avatar {
    width: 58px;
    height: 58px;
}

.cf-thumb-fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #121b25, #2d3844);
    color: var(--cf-accent);
    font-weight: 900;
}

.cf-row-body h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.35;
}

.cf-list.compact .cf-row-body h3 {
    font-size: 13px;
}

.cf-row-body p {
    margin: 0;
    color: var(--cf-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.cf-row-body strong {
    color: #178f2e;
}

.cf-row-time {
    color: #8b94a4;
    font-size: 13px;
}

.cf-latest-panel {
    transition: opacity .18s ease;
}

.cf-latest-panel.is-loading {
    opacity: .62;
    pointer-events: none;
}

.cf-ajax-pagination,
.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 18px;
}

.cf-ajax-pagination button,
.navigation.pagination .page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    border: 1px solid var(--cf-line);
    border-radius: 8px;
    padding: 0 10px;
    background: #fff;
    color: #263143;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.cf-ajax-pagination button:hover,
.navigation.pagination .page-numbers:hover,
.cf-ajax-pagination .is-active,
.navigation.pagination .page-numbers.current {
    border-color: var(--cf-accent);
    background: var(--cf-accent);
    color: #07130b;
}

.cf-ajax-pagination button:disabled {
    opacity: .36;
    cursor: default;
}

.cf-home-personal-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 22px;
    width: min(1480px, calc(100% - 36px));
    margin: 24px auto;
}

.cf-home-personal-row .cf-panel {
    min-width: 0;
}

.cf-personalized-block .cf-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
}

.cf-home-middle-stack {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.cf-home-middle-stack .cf-barometer-panel.is-active {
    grid-template-columns: 1fr;
}

.cf-followed-terms-list {
    display: grid;
    gap: 10px;
}

.cf-followed-terms-list a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 50px;
    border: 1px solid var(--cf-line);
    border-radius: 9px;
    padding: 7px 9px;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}

.cf-followed-terms-list .cf-avatar,
.cf-followed-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.cf-followed-icon {
    display: inline-grid;
    place-items: center;
    background: #06111d;
    color: var(--cf-accent);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.cf-followed-terms-list strong,
.cf-followed-terms-list small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-followed-terms-list small {
    color: var(--cf-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.cf-muted-text {
    margin: 0;
    color: var(--cf-muted);
    font-size: 14px;
    font-weight: 700;
}

.cf-consultant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 18px;
}

.cf-consultant-card {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
}

.cf-consultant-card .cf-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
}

.cf-rank,
.cf-rank-badge {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cf-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.cf-consultant-card .cf-rank {
    position: absolute;
    top: 12px;
    left: calc(50% - 60px);
}

.cf-consultant-card small {
    color: var(--cf-muted);
}

.cf-home-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.cf-daily blockquote {
    margin: 18px 0;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

.cf-period-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 6px 0 12px;
}

.cf-period-tabs button {
    min-height: 34px;
    border: 1px solid var(--cf-line);
    border-radius: 6px;
    background: var(--cf-soft);
    color: #253044;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.cf-period-tabs button.is-active {
    border-color: var(--cf-accent);
    background: var(--cf-accent);
    color: #0b2108;
}

.cf-period-panel {
    display: none;
}

.cf-period-panel.is-active {
    display: grid;
    gap: 12px;
}

.cf-top-row {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 0;
    border-bottom: 1px solid var(--cf-line);
}

.cf-top-row:last-child {
    border-bottom: 0;
}

.cf-top-row h3 {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.3;
}

.cf-top-row p {
    margin: 0;
    color: var(--cf-muted);
    font-size: 12px;
    font-weight: 800;
}

.cf-barometer {
    display: grid;
    gap: 8px;
}

.cf-barometer-head {
    align-items: center;
    margin-bottom: 4px;
}

.cf-barometer-head .cf-kicker {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
}

.cf-barometer-panel {
    display: none;
}

.cf-barometer-panel.is-active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.cf-barometer-panel article {
    display: grid;
    gap: 8px;
    min-width: 0;
    border: 1px solid var(--cf-line);
    border-radius: 9px;
    padding: 12px;
    background: #fafbfc;
}

.cf-barometer-panel h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cf-barometer-list {
    display: grid;
    gap: 6px;
}

.cf-barometer-row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    border-radius: 7px;
    padding: 5px 7px;
    background: #fff;
}

.cf-barometer-row span {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #06111d;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.cf-barometer-row strong {
    overflow: hidden;
    color: var(--cf-ink);
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-barometer-row small {
    color: var(--cf-muted);
    font-size: 11px;
    font-weight: 850;
    white-space: nowrap;
}

.cf-daily blockquote::first-letter {
    color: var(--cf-secondary);
}

.cf-topic-list {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.cf-topic-list li {
    display: flex;
    justify-content: space-between;
    color: #222b38;
}

.cf-topic-list span {
    color: #8c94a0;
}

.cf-category-band,
.cf-feature-band {
    margin-top: 28px;
    border-top: 1px solid var(--cf-line);
}

.cf-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.cf-category-panel h2 {
    margin-bottom: 14px;
}

.cf-category-grid-compact {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 0;
}

.cf-category-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 3px 12px;
    min-height: 74px;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    padding: 14px;
    background: #fff;
}

.cf-category-card span {
    grid-row: span 2;
    color: var(--cf-secondary);
    font-size: 28px;
    line-height: 1;
}

.cf-category-card strong {
    font-size: 13px;
    text-transform: uppercase;
}

.cf-category-card small {
    color: var(--cf-muted);
}

.cf-category-grid-compact .cf-category-card {
    min-height: 62px;
    padding: 12px;
}

.cf-category-grid-compact .cf-category-card span {
    font-size: 24px;
}

.cf-feature-grid,
.cf-related-grid,
.cf-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.cf-feature-card {
    overflow: hidden;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    background: #fff;
}

.cf-feature-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #07121c;
}

.cf-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cf-feature-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.64));
}

.cf-feature-image .cf-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.cf-feature-body {
    padding: 14px;
}

.cf-feature-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
}

.cf-feature-body p {
    margin: 0;
    color: var(--cf-muted);
    font-size: 14px;
}

.cf-directory-card {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-height: 190px;
    border: 1px solid var(--cf-line);
    border-radius: var(--cf-radius);
    padding: 24px;
    background: #fff;
    text-align: center;
}

.cf-directory-card .cf-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
}

.cf-directory-card strong {
    font-size: 18px;
}

.cf-directory-card small {
    color: var(--cf-muted);
}

.cf-article-shell {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 375px;
    gap: 18px;
    justify-content: stretch;
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 42px;
}

.cf-left-rail,
.cf-right-rail {
    position: sticky;
    top: 104px;
    align-self: start;
}

.cf-left-rail {
    display: grid;
    gap: 10px;
    margin-top: -28px;
    margin-bottom: 0;
    padding: 14px 10px 16px;
    background: #fff;
    color: var(--cf-ink);
    border: 1px solid var(--cf-line);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.08);
}

.cf-left-rail h2 {
    display: none;
}

.cf-rail-meta {
    display: grid;
}

.cf-rail-info {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 1px 8px;
    align-items: center;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid var(--cf-line);
    color: var(--cf-ink);
    text-align: left;
}

.cf-rail-info svg,
.cf-stat-card svg,
.cf-rail-share svg,
.cf-source-button svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-rail-info svg {
    grid-row: span 2;
    justify-self: center;
    width: 18px;
    height: 18px;
    padding: 8px;
    border-radius: 50%;
    background: rgba(240, 202, 88, 0.14);
    color: #f0ca58;
    box-sizing: content-box;
}

.cf-rail-info strong {
    overflow: hidden;
    color: var(--cf-ink);
    font-size: 12px;
    font-weight: 950;
    line-height: 1.06;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-rail-info small {
    color: var(--cf-muted);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.15;
}

.cf-rail-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.cf-stat-card {
    display: grid;
    justify-items: center;
    gap: 3px;
    min-height: 58px;
    border: 1px solid var(--cf-line);
    border-radius: 10px;
    padding: 8px 4px;
    background: #fff;
    color: var(--cf-ink);
    text-align: center;
}

.cf-stat-wide {
    grid-column: 1 / -1;
    grid-template-columns: 30px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    min-height: 48px;
    padding: 8px 12px;
    text-align: left;
}

.cf-stat-wide svg {
    grid-row: span 2;
}

.cf-stat-card svg {
    color: #f0ca58;
}

.cf-stat-card strong {
    font-size: 18px;
    font-weight: 950;
    line-height: 0.95;
}

.cf-stat-card small {
    color: var(--cf-muted);
    font-size: 9px;
    font-weight: 750;
    line-height: 1.1;
}

.cf-like-button {
    border: 1px solid var(--cf-line);
    cursor: pointer;
    font-family: inherit;
}

.cf-like-button:hover,
.cf-like-button.is-liked {
    border-color: rgba(104, 216, 59, 0.48);
    background: rgba(104, 216, 59, 0.13);
}

.cf-like-button.is-loading {
    pointer-events: none;
    opacity: 0.72;
}

.cf-like-button.is-liked svg {
    fill: var(--cf-accent);
}

.cf-rail-share {
    display: grid;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--cf-line);
}

.cf-rail-share > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--cf-muted);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.cf-rail-share > span svg {
    display: none;
}

.cf-rail-share .cf-share {
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.cf-rail-share .cf-share button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    box-shadow: 0 8px 16px rgba(2, 7, 13, 0.22);
}

.cf-rail-share .cf-share button.cf-share-linkedin {
    font-size: 11px;
}

.cf-article {
    min-width: 0;
}

.cf-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    margin: 12px 0 24px;
    color: var(--cf-muted);
    font-size: 14px;
    font-weight: 600;
}

.cf-breadcrumb-trail {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    gap: 8px;
}

.cf-breadcrumb .cf-kicker {
    flex: 0 0 auto;
}

.cf-article-header,
.cf-article .cf-content,
.cf-article-footer,
.cf-related-section {
    border-radius: var(--cf-radius);
    background: #fff;
}

.cf-article-header {
    padding: 0;
}

.cf-article-header h1 {
    max-width: 860px;
    margin: 0 0 18px;
    font-size: clamp(42px, 5.1vw, 50px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: 0;
    text-wrap: balance;
}

.cf-chapo {
    max-width: 760px;
    margin: 0;
    color: #566173;
    font-size: 19px;
    line-height: 1.45;
}

.cf-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    color: #667085;
    font-size: 13px;
}

.cf-title-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.cf-title-meta .cf-meta-line {
    margin-top: 0;
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.cf-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    border: 1px solid var(--cf-line);
    border-radius: 999px;
    padding: 0 12px;
    background: #fff;
    color: #667085;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
}

.cf-meta-pill::before {
    color: var(--cf-muted);
    font-size: 13px;
    line-height: 1;
}

.cf-meta-author::before {
    content: "♙";
}

.cf-meta-date::before {
    content: "◷";
}

.cf-meta-reading::before {
    content: "◴";
}

.cf-quote-visual {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    margin: 34px 0 18px;
    border-radius: 10px;
    background: #07121c;
    color: #fff;
    box-shadow: 0 24px 70px rgba(2, 7, 13, 0.12);
}

.cf-quote-visual .cf-article-image {
    width: 100%;
    min-height: 520px;
    max-height: 620px;
    opacity: 0.94;
    object-position: 68% center;
    filter: saturate(1.04) contrast(1.04);
}

.cf-quote-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 7, 13, 0.98) 0%, rgba(2, 7, 13, 0.88) 27%, rgba(2, 7, 13, 0.40) 58%, rgba(2, 7, 13, 0.10) 100%),
        radial-gradient(circle at 28% 75%, rgba(104, 216, 59, 0.18), transparent 28%);
    pointer-events: none;
}

.cf-quote-visual figcaption {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: min(68%, 760px);
    margin-left: 0;
    padding: 70px 72px;
}

.cf-quote-visual figcaption > span {
    color: var(--cf-accent);
    font-size: 116px;
    font-weight: 900;
    line-height: 0.55;
    margin-bottom: 52px;
}

.cf-quote-visual blockquote {
    margin: 0 0 30px;
    font-size: clamp(30px, 2.6vw, 54px);
    font-weight: 950;
    line-height: 1.08;
    text-wrap: balance;
}

.cf-quote-visual strong {
    color: var(--cf-accent);
    font-size: 22px;
    line-height: 1.15;
    text-transform: uppercase;
}

.cf-quote-visual small {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
}

.cf-image-credit {
    margin: -8px 0 18px;
    color: var(--cf-muted);
    font-size: 12px;
}

.cf-mobile-article-meta {
    display: none;
}

.cf-mobile-article-meta span {
    display: grid;
    gap: 3px;
    justify-items: center;
    min-width: 0;
    border: 1px solid var(--cf-line);
    border-radius: 8px;
    padding: 10px 6px;
    background: #fff;
    text-align: center;
}

.cf-mobile-article-meta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--cf-muted);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cf-mobile-article-meta strong {
    overflow: hidden;
    max-width: 100%;
    color: var(--cf-ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cf-mobile-article-meta small {
    color: var(--cf-muted);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.cf-share {
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    gap: 8px;
}

.cf-share span {
    font-size: 14px;
    font-weight: 700;
}

.cf-share button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 7px;
    background: #061426;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.1);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.cf-share button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.15);
}

.cf-share button.is-copied {
    outline: 3px solid rgba(104, 216, 59, 0.32);
}

.cf-share button.cf-share-facebook {
    background: #1877f2;
}

.cf-share button.cf-share-x {
    background: #111;
}

.cf-share button.cf-share-whatsapp {
    background: #25d366;
}

.cf-share button.cf-share-linkedin {
    background: #0a66c2;
    font-size: 11px;
}

.cf-share button.cf-share-telegram {
    background: #229ed9;
}

.cf-share button.cf-share-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
}

.cf-source-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--cf-line);
    border-radius: 9px;
    background: #fff;
    color: #3168b8;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
    text-align: left;
    box-shadow: 0 8px 18px rgba(2, 7, 13, 0.14);
}

.cf-source-button svg,
.cf-source-button .cf-google-mark {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #3168b8;
}

.cf-source-button .cf-google-mark {
    display: inline-grid;
    place-items: center;
    font-size: 16px;
    font-weight: 950;
    line-height: 1;
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 45%, #fbbc05 0 65%, #ea4335 0 82%, #4285f4 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cf-source-button span {
    min-width: 0;
}

.cf-content {
    color: #17202c;
    font-size: 18px;
}

.cf-content p {
    margin: 0 0 22px;
}

.cf-content blockquote {
    margin: 28px 0;
    border-left: 3px solid var(--cf-accent);
    padding: 8px 0 8px 22px;
    color: #121826;
    font-size: 20px;
    font-style: italic;
}

.cf-article-footer {
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
}

.cf-tags {
    width: 100%;
}

.cf-tags,
.cf-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cf-chip {
    padding: 10px 16px;
    background: rgba(91, 42, 200, 0.08);
    color: #061426;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 999px;
}

.cf-chip-wrap {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(91, 42, 200, 0.08);
    color: #061426;
    overflow: hidden;
}

.cf-chip-wrap .cf-chip {
    padding-right: 8px;
    background: transparent;
    color: inherit;
}

.cf-chip-toggle {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-right: 7px;
    border: 1px solid rgba(6, 20, 38, 0.10);
    border-radius: 50%;
    background: #fff;
    color: #061426;
    font: inherit;
    font-size: 17px;
    font-weight: 950;
    line-height: 1;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.cf-chip-toggle:hover {
    transform: translateY(-1px);
}

.cf-chip-wrap.is-following {
    background: rgba(104, 216, 59, 0.16);
    color: #137b24;
    box-shadow: inset 0 0 0 1px rgba(104, 216, 59, 0.42);
}

.cf-chip-wrap.is-following .cf-chip-toggle {
    border-color: transparent;
    background: #137b24;
    color: #fff;
}

.cf-related-section {
    margin-top: 34px;
}

.cf-related-section h2 {
    margin: 0 0 14px;
    font-size: 22px;
}

.cf-related-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cf-right-rail {
    display: grid;
    gap: 18px;
}

.cf-right-rail .cf-panel {
    padding: 20px;
}

.cf-consultant-box {
    text-align: left;
}

.cf-consultant-box-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cf-consultant-box-head h2 {
    margin: 0;
}

.cf-consultant-box-head .cf-follow-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 11px;
    box-shadow: 0 10px 22px rgba(104, 216, 59, 0.18);
}

.cf-consultant-profile {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}

.cf-consultant-box .cf-avatar {
    width: 74px;
    height: 74px;
    margin: 0;
    border-radius: 50%;
    object-fit: cover;
}

.cf-consultant-box h3 {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.2;
}

.cf-consultant-box p {
    margin: 0;
    color: var(--cf-muted);
    font-size: 12px;
    line-height: 1.35;
}

.cf-consultant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 18px 0 16px;
    border-top: 1px solid var(--cf-line);
    border-bottom: 1px solid var(--cf-line);
}

.cf-consultant-stats span {
    display: grid;
    justify-items: center;
    gap: 1px;
    padding: 12px 8px;
    text-align: center;
}

.cf-consultant-stats span + span {
    border-left: 1px solid var(--cf-line);
}

.cf-consultant-stats strong {
    color: var(--cf-ink);
    font-size: 15px;
    line-height: 1;
}

.cf-consultant-stats small {
    color: var(--cf-muted);
    font-size: 10px;
    line-height: 1.1;
}

.cf-ranked-list {
    display: grid;
}

.cf-ranked-row {
    display: grid;
    grid-template-columns: 36px 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--cf-line);
}

.cf-ranked-row:last-child {
    border-bottom: 0;
}

.cf-ranked-row .cf-rank-badge {
    width: 30px;
    height: 30px;
    background: #061426;
}

.cf-ranked-row .cf-avatar {
    width: 58px;
    height: 58px;
}

.cf-ranked-body h3 {
    margin: 0 0 5px;
    font-size: 13px;
    line-height: 1.28;
}

.cf-ranked-body p {
    margin: 0;
    color: var(--cf-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.cf-ranked-body strong {
    color: #178f2e;
}

.cf-archive-head {
    padding: 42px 0 20px;
}

.cf-archive-head h1 {
    margin: 14px 0 8px;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1;
}

.cf-archive-head p {
    max-width: 740px;
    color: var(--cf-muted);
    font-size: 18px;
}

.cf-archive-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.cf-follow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 9px;
    padding: 0 22px;
    background: var(--cf-accent);
    color: #06110b;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(104, 216, 59, 0.22);
}

.cf-follow-button::before {
    content: "+";
    margin-right: 7px;
    font-size: 15px;
    line-height: 1;
}

.cf-follow-button.is-following {
    background: #06111d;
    color: #fff;
}

.cf-follow-button.is-following::before {
    content: "✓";
}

.cf-follow-button.is-loading {
    opacity: .6;
    pointer-events: none;
}

.cf-archive-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto 44px;
}

.cf-tax-filter {
    align-self: start;
}

.cf-my-feed-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.cf-tax-filter h3 {
    margin: 18px 0 8px;
    font-size: 13px;
    text-transform: uppercase;
}

.cf-footer {
    margin-top: 44px;
    padding: 42px 0 92px;
    background: #02070d;
    color: #fff;
}

.cf-footer-inner {
    display: grid;
    gap: 24px;
}

.cf-footer-layout-2_equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cf-footer-layout-2_2_1 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.cf-footer-layout-2_1_2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.cf-footer-layout-3_equal {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cf-footer-layout-3_2_1_1 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
}

.cf-footer-layout-3_1_2_1 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
}

.cf-footer-layout-3_1_1_2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 2fr);
}

.cf-footer-layout-4_equal {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cf-footer-block {
    min-width: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.cf-footer-block h2,
.cf-footer-block h3,
.cf-footer-block h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.12;
    text-transform: uppercase;
}

.cf-footer-block h2 {
    font-size: 22px;
}

.cf-footer-block h2 span,
.cf-footer-block strong {
    color: var(--cf-accent);
}

.cf-footer-block p,
.cf-footer-block ul,
.cf-footer-block ol {
    margin: 0 0 10px;
}

.cf-footer-block a {
    color: rgba(255, 255, 255, 0.82);
}

.cf-footer-block a:hover {
    color: var(--cf-accent);
}

.cf-footer-menu a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
}

.cf-footer-menu {
    display: grid;
    align-items: start;
    gap: 8px;
}

.cf-mobile-bar {
    display: none;
}

.cf-vote-box {
    position: relative;
    display: grid;
    gap: 10px;
    margin: 22px 0 18px;
    border: 1px solid rgba(239, 199, 96, 0.38);
    border-radius: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #06101c 0%, #0b1724 58%, #07111d 100%);
    box-shadow: 0 18px 42px rgba(1, 8, 18, 0.16);
    color: #fff;
    overflow: hidden;
}

.cf-vote-box::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--cf-accent);
}

.cf-vote-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 900;
}

.cf-vote-topline .cf-kicker {
    border-radius: 7px;
    padding: 6px 10px;
    background: var(--cf-accent);
    color: var(--cf-ink);
    font-size: 11px;
}

.cf-vote-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.cf-vote-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cf-vote-button strong {
    font-size: 14px;
    font-weight: 950;
    line-height: 1.1;
}

.cf-vote-button small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.cf-vote-button:hover {
    border-color: rgba(239, 199, 96, 0.6);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.cf-vote-button.is-selected {
    border-color: rgba(104, 216, 59, 0.65);
    background: rgba(104, 216, 59, 0.16);
}

.cf-vote-button[data-vote-choice="disagree"].is-selected {
    border-color: rgba(220, 38, 38, 0.64);
    background: rgba(220, 38, 38, 0.16);
}

.cf-vote-button.is-selected small {
    color: #8ff07a;
}

.cf-vote-button[data-vote-choice="disagree"].is-selected small {
    color: #ff9b9b;
}

.cf-vote-box.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.cf-vote-meter {
    display: grid;
    gap: 6px;
}

.cf-vote-meter-track {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

.cf-vote-meter-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cf-accent), #41d44f);
    transition: width .22s ease;
}

.cf-vote-meta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 850;
}

.cf-vote-meta [data-vote-state] {
    justify-self: center;
    color: #8ff07a;
}

.cf-consultant-engagement {
    width: min(1480px, calc(100% - 36px));
    margin: 0 auto 24px;
}

.cf-consultant-engagement .cf-section-head {
    margin-bottom: 16px;
}

.cf-consultant-insights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cf-consultant-insights .cf-panel {
    padding: 20px;
}

.cf-consultant-insights h3 {
    margin: 0 0 14px;
    color: var(--cf-ink);
    font-size: 17px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cf-insight-cloud {
    align-content: start;
}

.cf-topic-cloud {
    display: grid;
    gap: 18px;
}

.cf-topic-cloud > div {
    display: grid;
    gap: 9px;
}

.cf-topic-cloud > div > strong {
    color: var(--cf-muted);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.cf-chip small {
    margin-left: 5px;
    color: var(--cf-muted);
}

.cf-muted-text {
    margin: 0;
    color: var(--cf-muted);
    font-size: 13px;
}

@media (max-width: 1180px) {
    .cf-menu {
        gap: 16px;
    }

    .cf-home-hero,
    .cf-home-layout,
    .cf-home-personal-row,
    .cf-article-shell {
        width: calc(100% - 24px);
    }

    .cf-home-hero {
        grid-template-columns: 1fr;
    }

    .cf-hero-main {
        height: clamp(240px, 26vw, 320px);
    }

    .cf-hero-image {
        margin: 0;
    }

    .cf-hero-side {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        padding: 10px 14px 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .cf-hero-side-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .cf-hero-side-item {
        grid-template-columns: 48px minmax(0, 1fr) 18px;
        min-height: 84px;
        padding: 10px 12px;
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 0;
    }

    .cf-hero-side-item:nth-child(3n),
    .cf-hero-side-item:last-child {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .cf-hero-side-item:nth-child(2n),
    .cf-hero-side-item:last-child {
        border-right: 0;
    }

    .cf-hero-side-item .cf-avatar {
        width: 44px;
        height: 44px;
    }

    .cf-hero-side-item span:not(.cf-avatar span) {
        font-size: 12px;
    }

    .cf-hero-all-link {
        margin-top: 0;
    }

    .cf-home-layout {
        grid-template-columns: 1fr 1fr;
    }

    .cf-home-personal-row {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .cf-personalized-block .cf-list {
        grid-template-columns: 1fr 1fr;
    }

    .cf-home-sidebar {
        grid-column: 1 / -1;
        grid-template-columns: 1fr 1fr;
    }

    .cf-article-shell {
        grid-template-columns: minmax(0, 1fr) 280px;
        justify-content: stretch;
    }

    .cf-left-rail {
        display: none;
    }

    .cf-mobile-article-meta {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin: 12px 0 18px;
    }

    .cf-breadcrumb {
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .cf-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cf-category-grid-compact {
        grid-template-columns: 1fr;
    }

    .cf-feature-grid,
    .cf-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 860px) {
    body {
        padding-bottom: 78px;
        font-size: 15px;
    }

    .cf-header-inner {
        min-height: 68px;
        justify-content: space-between;
    }

    .cf-menu-toggle {
        display: inline-grid;
    }

    .cf-brand {
        font-size: 18px;
        text-align: center;
    }

    .cf-main-nav {
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        display: none;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--cf-radius);
        padding: 8px;
        background: #02070d;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
    }

    .cf-main-nav.is-open {
        display: block;
    }

    .cf-menu {
        display: grid;
        gap: 0;
    }

    .cf-menu a {
        min-height: 44px;
        padding: 0 10px;
        box-shadow: none;
    }

    .cf-menu .sub-menu {
        position: static;
        min-width: 0;
        margin: -2px 0 6px;
        border: 0;
        border-left: 2px solid rgba(117, 220, 60, 0.32);
        border-radius: 0;
        padding: 0 0 0 10px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .cf-menu .sub-menu a {
        min-height: 36px;
        padding-inline: 10px;
        color: rgba(255, 255, 255, 0.72);
        font-size: 11px;
    }

    .cf-auth {
        gap: 6px;
    }

    .cf-auth-link,
    .cf-user-chip {
        min-height: 38px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .cf-user-chip {
        padding-left: 4px;
    }

    .cf-user-name {
        max-width: 82px;
    }

    .cf-home-hero {
        width: 100%;
        min-height: 0;
        border-radius: 0;
    }

    .cf-hero-main {
        height: 430px;
    }

    .cf-hero-copy {
        position: relative;
        z-index: 3;
        justify-content: flex-end;
        padding: 28px 22px 24px;
    }

    .cf-hero-copy blockquote {
        max-width: 100%;
        font-size: 29px;
        -webkit-line-clamp: 3;
    }

    .cf-hero-image {
        position: absolute;
        inset: 0;
        height: 100%;
        margin: 0;
        opacity: 0.84;
    }

    .cf-hero-side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
        background: #020b14;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
    }

    .cf-hero-side-list {
        grid-template-columns: 1fr;
    }

    .cf-hero-side-item {
        grid-template-columns: 56px 1fr 18px;
        min-height: 106px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
    }

    .cf-hero-side-item span:not(.cf-avatar span) {
        font-size: 13px;
    }

    .cf-hero-all-link {
        margin: 2px 0 0;
        width: fit-content;
    }

    .cf-home-personal-row,
    .cf-home-layout,
    .cf-category-band,
    .cf-feature-band,
    .cf-archive-head,
    .cf-index-list,
    .cf-archive-layout,
    .cf-article-shell {
        width: min(100% - 24px, 620px);
    }

    .cf-home-layout,
    .cf-home-personal-row,
    .cf-home-sidebar,
    .cf-archive-layout,
    .cf-article-shell {
        grid-template-columns: 1fr;
    }

    .cf-personalized-block .cf-list,
    .cf-barometer-panel.is-active,
    .cf-my-feed-layout {
        grid-template-columns: 1fr;
    }

    .cf-archive-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .cf-panel,
    .cf-category-band,
    .cf-feature-band {
        padding: 18px;
    }

    .cf-quote-row {
        grid-template-columns: 72px 1fr auto;
        gap: 12px;
        min-height: 84px;
    }

    .cf-avatar {
        width: 64px;
        height: 64px;
    }

    .cf-row-body h3 {
        font-size: 14px;
    }

    .cf-consultant-grid,
    .cf-category-grid,
    .cf-feature-grid,
    .cf-related-grid,
    .cf-directory-grid,
    .cf-consultant-insights {
        grid-template-columns: 1fr 1fr;
    }

    .cf-category-grid-compact {
        grid-template-columns: 1fr;
    }

    .cf-right-rail {
        position: static;
    }

    .cf-rail-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .cf-article-header {
        padding: 10px 0 0;
    }

    .cf-article-header h1 {
        font-size: 36px;
    }

    .cf-chapo {
        font-size: 17px;
    }

    .cf-quote-visual {
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 0;
        min-height: 0;
    }

    .cf-quote-visual .cf-article-image {
        min-height: 320px;
        max-height: none;
    }

    .cf-quote-visual::after {
        background:
            linear-gradient(180deg, rgba(2, 7, 13, 0.12) 0%, rgba(2, 7, 13, 0.82) 100%),
            radial-gradient(circle at 18% 80%, rgba(104, 216, 59, 0.18), transparent 34%);
    }

    .cf-quote-visual figcaption {
        position: absolute;
        inset: auto 0 0;
        width: auto;
        padding: 28px 22px 30px;
        background: transparent;
    }

    .cf-quote-visual figcaption > span {
        margin-bottom: 18px;
        font-size: 64px;
    }

    .cf-quote-visual blockquote {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .cf-quote-visual strong {
        font-size: 15px;
    }

    .cf-quote-visual small {
        font-size: 13px;
    }

    .cf-article-footer,
    .cf-footer-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .cf-share {
        flex-wrap: wrap;
    }

    .cf-source-button {
        width: 100%;
    }

    .cf-content {
        font-size: 16px;
    }

    .cf-tax-filter {
        order: 2;
    }

    .cf-footer {
        padding-bottom: 112px;
    }

    .cf-footer-inner {
        grid-template-columns: 1fr;
    }

    .cf-mobile-bar {
        position: fixed;
        right: 12px;
        bottom: 10px;
        left: 12px;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border: 1px solid var(--cf-line);
        border-radius: 14px;
        padding: 8px 4px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 42px rgba(16, 24, 40, 0.18);
        backdrop-filter: blur(12px);
    }

    .cf-mobile-bar a {
        display: grid;
        justify-items: center;
        gap: 2px;
        color: #273142;
        font-size: 11px;
    }

    .cf-mobile-bar span {
        font-size: 19px;
        line-height: 1;
    }

    .cf-mobile-bar .is-active {
        color: var(--cf-accent);
        font-weight: 900;
    }
}

@media (max-width: 520px) {
    .cf-header-inner {
        width: calc(100% - 20px);
        gap: 8px;
    }

    .cf-auth-link {
        min-height: 36px;
        padding-inline: 9px;
        font-size: 10px;
    }

    .cf-user-name {
        max-width: 64px;
    }

    .cf-home-layout,
    .cf-category-band,
    .cf-feature-band,
    .cf-archive-layout,
    .cf-article-shell {
        width: calc(100% - 18px);
    }

    .cf-filter-browser,
    .cf-archive-head,
    .cf-index-list {
        width: calc(100% - 18px);
    }

    .cf-consultant-grid,
    .cf-category-grid,
    .cf-feature-grid,
    .cf-related-grid,
    .cf-directory-grid,
    .cf-consultant-insights {
        grid-template-columns: 1fr;
    }

    .cf-consultant-engagement {
        width: calc(100% - 18px);
    }

    .cf-vote-box {
        padding: 12px;
    }

    .cf-vote-actions {
        gap: 7px;
    }

    .cf-vote-button {
        display: grid;
        justify-items: start;
        min-height: 50px;
        padding: 9px;
    }

    .cf-vote-button strong {
        font-size: 13px;
    }

    .cf-vote-button small {
        font-size: 11px;
        white-space: normal;
    }

    .cf-vote-meta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cf-vote-meta span:first-child,
    .cf-vote-meta span:last-child {
        display: none;
    }

    .cf-quote-row {
        grid-template-columns: 64px 1fr;
    }

    .cf-row-time {
        grid-column: 2;
        justify-self: start;
    }

    .cf-home-sidebar {
        grid-template-columns: 1fr;
    }

    .cf-rail-meta {
        grid-template-columns: 1fr;
    }

    .cf-rail-share .cf-share {
        flex-wrap: wrap;
    }
}

/* Homepage timeline and compact follow feed. */
.cf-home-personal-v2 {
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: stretch;
    gap: 18px;
}
.cf-home-personal-v2 .cf-panel { padding: 20px; margin: 0; }
.cf-home-personal-v2 h2 { margin: 0; font-size: 21px; line-height: 1.2; text-transform: uppercase; letter-spacing: -.6px; }
.cf-timeline-header, .cf-follow-header, .cf-manager-head { display: flex; align-items: center; gap: 14px; }
.cf-timeline-header { flex-wrap: wrap; margin-bottom: 22px; }
.cf-timeline-header h2 { position: relative; padding-bottom: 10px; }
.cf-timeline-header h2::after { content: ""; position: absolute; bottom: 0; left: 0; width: 48px; height: 2px; background: var(--cf-accent); }
.cf-home-filters { display: flex; gap: 5px; min-width: 0; max-width: 100%; overflow-x: auto; padding: 3px; scrollbar-width: thin; }
.cf-home-personal-v2 button { font: inherit; cursor: pointer; }
.cf-home-filters button { flex-shrink: 0; min-height: 36px; padding: 7px 10px; border: 1px solid var(--cf-line); border-radius: 9px; background: var(--cf-soft); color: var(--cf-muted); font-size: 11px; font-weight: 650; white-space: nowrap; }
.cf-home-filters button[aria-pressed="true"] { background: var(--cf-accent); color: var(--cf-ink); border-color: var(--cf-accent); }
.cf-timeline-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.cf-timeline-actions a, .cf-follow-all, .cf-follow-header button { font-size: 12px; font-weight: 650; white-space: nowrap; }
.cf-timeline-actions a { margin-right: 5px; }
.cf-timeline-actions button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--cf-line); background: #fff; color: var(--cf-ink); font-size: 27px; line-height: 1; box-shadow: 0 2px 8px #10182808; }
.cf-timeline-actions button:disabled { opacity: .3; cursor: default; }
.cf-timeline-track { display: flex; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--cf-line) transparent; padding: 0 0 12px; }
.cf-timeline-item { flex: 0 0 clamp(172px, 17vw, 210px); min-width: 0; scroll-snap-align: start; display: flex; flex-direction: column; }
.cf-timeline-time { display: block; position: relative; margin: 0 -14px 18px 0; padding: 0 0 18px 15px; border-bottom: 2px solid var(--cf-line); color: var(--cf-muted); font-size: 11px; white-space: nowrap; }
.cf-timeline-time::before { content: ""; position: absolute; bottom: -6px; left: 15px; width: 10px; height: 10px; border: 2px solid var(--cf-ink); background: var(--cf-accent); border-radius: 50%; }
.cf-timeline-time::after { content: ""; position: absolute; left: 19px; top: 4px; bottom: 6px; width: 1px; background: var(--cf-line); }
.cf-timeline-card { display: flex; flex: 1; flex-direction: column; border: 1px solid var(--cf-line); border-radius: var(--cf-radius); background: #fff; overflow: hidden; transition: border-color .18s, box-shadow .18s; }
.cf-timeline-card:hover { border-color: var(--cf-accent); box-shadow: 0 3px 12px #1018280a; }
.cf-timeline-photo { aspect-ratio: 16 / 10; background: var(--cf-soft); overflow: hidden; }
.cf-timeline-photo .cf-card-image { width: 100%; height: 100%; object-fit: cover; }
.cf-timeline-copy { display: flex; flex-direction: column; flex: 1; padding: 11px; }
.cf-timeline-copy h3 { margin: 0 0 16px; font-size: 14px; line-height: 1.4; font-weight: 800; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.cf-timeline-copy strong { margin-top: auto; font-size: 11px; text-transform: uppercase; color: var(--cf-ink); }
.cf-timeline-copy small { margin-top: 5px; color: var(--cf-muted); font-size: 11px; }
.cf-follow-header { justify-content: space-between; margin-bottom: 12px; }
.cf-follow-header button { padding: 6px 0; border: 0; background: none; color: var(--cf-muted); }
.cf-follow-filters { gap: 0; background: var(--cf-soft); border-radius: 8px; }
.cf-follow-filters button { flex: 1; padding: 7px 8px; border: 0; border-radius: 6px; }
.cf-follow-avatars { display: flex; gap: 13px; overflow-x: auto; padding: 18px 2px 14px; scrollbar-width: thin; }
.cf-follow-avatars > a, .cf-follow-add { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 0 0 49px; width: 49px; min-width: 0; text-align: center; font-size: 10px; }
.cf-follow-avatars .cf-avatar, .cf-follow-add > span { display: grid; place-items: center; flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; object-fit: contain; background: var(--cf-soft); box-shadow: 0 0 0 1px var(--cf-line); }
.cf-follow-avatars a > span:last-child { width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cf-home-personal-v2 .cf-follow-add { padding: 0; border: 0; background: none; font-size: 10px; color: var(--cf-muted); }
.cf-follow-add > span { font-size: 25px; color: var(--cf-ink); background: #fff; }
.cf-follow-news-item { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto 7px; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--cf-line); }
.cf-follow-news-item .cf-avatar { width: 34px; height: 34px; object-fit: cover; border-radius: 6px; }
.cf-follow-news-copy { min-width: 0; font-size: 11px; line-height: 1.4; }
.cf-follow-news-copy strong, .cf-follow-news-copy > span { display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cf-follow-news-copy > span { color: var(--cf-muted); }
.cf-follow-news-item time { color: var(--cf-muted); font-size: 10px; white-space: nowrap; }
.cf-news-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cf-accent); }
.cf-follow-all { display: block; margin-top: 13px; text-align: right; color: var(--cf-muted); }
.cf-home-empty { padding: 24px 0; margin: 0; color: var(--cf-muted); font-size: 13px; line-height: 1.7; }
.cf-home-personal-v2 [aria-busy="true"] { opacity: .65; }
.cf-home-personal-v2 :focus-visible { outline: 2px solid var(--cf-secondary); outline-offset: 3px; }
.cf-home-personal-v2 .cf-home-status:not(.screen-reader-text) { font-size: 12px; color: var(--cf-muted); }
.cf-follow-manager { width: min(600px, calc(100% - 28px)); max-height: 82vh; padding: 24px; border: 1px solid var(--cf-line); border-radius: 12px; color: var(--cf-ink); background: #fff; }
.cf-follow-manager::backdrop { background: #02070d80; }
.cf-manager-head { justify-content: space-between; }
.cf-manager-head h2 { font-size: 19px; }
.cf-manager-head h3 { font-size: 15px; }
.cf-manager-head a { font-size: 12px; color: var(--cf-muted); }
.cf-manager-head > button { background: var(--cf-soft); border: 0; border-radius: 50%; width: 36px; height: 36px; font-size: 24px; }
.cf-follow-manager > p { font-size: 13px; color: var(--cf-muted); }
.cf-manager-term { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--cf-line); padding: 8px 0; font-size: 13px; }
.cf-manager-term .cf-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: contain; }
.cf-manager-term > a { flex: 1; }
.cf-manager-term .cf-follow-button { flex-shrink: 0; font-size: 10px; }
@media (min-width: 1800px) { .cf-home-personal-v2 { width: min(1880px, calc(100% - 48px)); grid-template-columns: minmax(0, 1fr) 380px; } }
@media (max-width: 1100px) { .cf-home-personal-v2 { grid-template-columns: minmax(0, 1fr) 310px; gap: 14px; } .cf-home-personal-v2 .cf-panel { padding: 16px; } .cf-timeline-header .cf-home-filters { order: 3; width: 100%; } }
@media (max-width: 760px) { .cf-home-personal-v2 { grid-template-columns: minmax(0, 1fr); width: calc(100% - 24px); gap: 14px; } .cf-home-personal-v2 h2 { font-size: 19px; } .cf-timeline-item { flex-basis: 180px; } .cf-timeline-header { gap: 12px; margin-bottom: 16px; } .cf-follow-avatars { gap: 16px; } .cf-follow-news-item { grid-template-columns: 38px minmax(0, 1fr) auto 7px; } .cf-follow-news-item .cf-avatar { width: 38px; height: 38px; } .cf-follow-news-copy { font-size: 12px; } }
@media (prefers-reduced-motion: reduce) { .cf-timeline-card { transition: none; } }
