/* Creative Flair Listings v3.0.0 */

.cf-board {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 60px;
    box-sizing: border-box;
}
.cf-board *, .cf-board *::before, .cf-board *::after { box-sizing: border-box; }
.cf-board a { color: inherit; text-decoration: none; }

.cf-success {
    padding: 14px 18px;
    background: #e1f5ee;
    color: #085041;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.cf-error {
    padding: 14px 18px;
    background: #fcebeb;
    color: #791f1f;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}
.cf-empty {
    text-align: center;
    padding: 60px 20px;
    color: #5f5e5a;
    font-size: 15px;
}

/* Page header */
.cf-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 0.5px solid rgba(0,0,0,0.12);
    flex-wrap: wrap;
}
.cf-page-header-stack {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 28px;
}
.cf-page-header-title { min-width: 0; max-width: 720px; }
.cf-page-header-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cf-eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #888780;
    font-weight: 500;
}
.cf-title {
    font-family: "Playfair Display", "GT Sectra", Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    margin: 0 0 12px;
    letter-spacing: -1px;
    line-height: 1;
    color: #1a1a1a;
}
.cf-title em { font-style: italic; color: #888780; }
.cf-page-tagline {
    font-size: 15px;
    color: #5f5e5a;
    margin: 0;
    line-height: 1.5;
    max-width: 560px;
}

/* Stats strip */
.cf-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.cf-stat-card {
    padding: 18px 20px;
    background: #fafaf6;
    border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.08);
}
.cf-stat-card .cf-stat-num {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 4px;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -1px;
}
.cf-stat-card .cf-stat-num.cf-urgent { color: #A32D2D; }
.cf-stat-card .cf-stat-label {
    font-size: 12px;
    color: #5f5e5a;
    margin: 0;
    font-weight: 500;
}

/* Spotlight hero */
.cf-spotlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    padding: 24px;
    background: #fafaf6;
    border: 0.5px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    margin-bottom: 48px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.cf-spotlight:hover {
    border-color: rgba(0,0,0,0.25);
    transform: translateY(-2px);
}
.cf-spotlight-img {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #f1efe8;
}
.cf-spotlight-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-spotlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.cf-spotlight-eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: #5f5e5a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cf-spotlight-mark {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8593A, #C9A876);
    display: inline-block;
}
.cf-spotlight .cf-type-pill {
    margin-bottom: 14px;
    align-self: flex-start;
}
.cf-spotlight-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -0.8px;
    color: #1a1a1a;
}
.cf-spotlight-org {
    font-size: 14px;
    font-style: italic;
    color: #5f5e5a;
    margin: 0 0 14px;
}
.cf-spotlight-excerpt {
    font-size: 14px;
    color: #2c2c2a;
    margin: 0 0 20px;
    line-height: 1.6;
}
.cf-spotlight-stats {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: 0.5px solid rgba(0,0,0,0.12);
    border-bottom: 0.5px solid rgba(0,0,0,0.12);
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.cf-spotlight-stats .cf-ss-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888780;
    margin-bottom: 4px;
    font-weight: 500;
}
.cf-spotlight-stats .cf-ss-value {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}
.cf-spotlight-stats .cf-ss-value.cf-urgent { color: #A32D2D; }
.cf-spotlight-cta {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Section head */
.cf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}
.cf-section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.3px;
    color: #1a1a1a;
}

/* View toggle pills */
.cf-views {
    display: inline-flex;
    border: 0.5px solid rgba(0,0,0,0.2);
    border-radius: 999px;
    padding: 3px;
    background: #fff;
}
.cf-board .cf-vbtn {
    font-size: 12px;
    padding: 7px 16px;
    border: none;
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    color: #5f5e5a;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.15s ease;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
    min-height: auto;
}
.cf-board .cf-vbtn:hover { color: #1a1a1a; background: transparent; }
.cf-board .cf-vbtn-active { background: #1a1a1a; color: #fff; }
.cf-board .cf-vbtn-active:hover { color: #fff; background: #1a1a1a; }

/* Buttons */
.cf-board .cf-btn,
.cf-board a.cf-btn,
.cf-board button.cf-btn {
    display: inline-block;
    padding: 9px 18px;
    background: transparent;
    color: #1a1a1a;
    border: 0.5px solid rgba(0,0,0,0.25);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    line-height: 1.4;
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
    min-height: auto;
}
.cf-board .cf-btn:hover { background: #f1efe8; color: #1a1a1a; }
.cf-board .cf-btn-dark,
.cf-board a.cf-btn-dark,
.cf-board button.cf-btn-dark {
    background: #1a1a1a !important;
    color: #fff !important;
    border-color: #1a1a1a !important;
}
.cf-board .cf-btn-dark:hover { background: #333 !important; color: #fff !important; }
.cf-board .cf-btn-primary,
.cf-board a.cf-btn-primary,
.cf-board button.cf-btn-primary {
    background: #1a1a1a !important;
    color: #fff !important;
    border-color: #1a1a1a !important;
    padding: 14px 28px !important;
    font-size: 13px !important;
}
.cf-board .cf-btn-primary:hover { background: #333 !important; color: #fff !important; }

/* Search bar */
.cf-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 0.5px solid rgba(0,0,0,0.2);
    border-radius: 999px;
    margin-bottom: 12px;
    background: #fff;
    color: #888780;
    transition: border-color 0.15s ease;
}
.cf-search:focus-within { border-color: #1a1a1a; }
.cf-board .cf-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 13px;
    outline: none;
    padding: 0;
    color: #1a1a1a;
    font-family: inherit;
    min-height: auto;
    height: auto;
    box-shadow: none;
}
.cf-search input::placeholder { color: #888780; }

/* Quick filter chips */
.cf-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.cf-board .cf-chip {
    font-size: 12px;
    padding: 8px 14px;
    border: 0.5px solid rgba(0,0,0,0.2);
    border-radius: 999px;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.15s ease;
    line-height: 1.2;
    min-height: auto;
}
.cf-board .cf-chip:hover { background: #f1efe8; }
.cf-board .cf-chip-active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.cf-board .cf-chip-active:hover { background: #333; color: #fff; }

/* Filters */
.cf-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cf-board .cf-filters select {
    font-size: 12px;
    padding: 8px 32px 8px 14px;
    border: 0.5px solid rgba(0,0,0,0.2);
    border-radius: 999px;
    background: #fff;
    font-family: inherit;
    color: #1a1a1a;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    font-weight: 500;
    min-height: auto;
    height: auto;
}
.cf-board .cf-filter-reset {
    font-size: 12px;
    padding: 8px 14px;
    border: none;
    background: transparent;
    color: #888780;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    min-height: auto;
}
.cf-board .cf-filter-reset:hover { color: #1a1a1a; background: transparent; }

/* Two-column layout */
.cf-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 36px;
    align-items: start;
}
.cf-layout.cf-layout-full { grid-template-columns: minmax(0, 1fr); }
.cf-layout.cf-layout-full .cf-sidebar { display: none; }
.cf-main { min-width: 0; }

/* Date headers */
.cf-date-header {
    font-size: 13px;
    color: #5f5e5a;
    margin: 28px 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.cf-date-header:first-child { margin-top: 0; }
.cf-dot { width: 6px; height: 6px; border-radius: 50%; background: #B4B2A9; }
.cf-date-sub { color: #888780; font-weight: 400; }

/* List card */
.cf-list-card {
    display: flex;
    gap: 18px;
    padding: 16px;
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.15s ease;
    background: #fff;
}
.cf-list-card:hover {
    border-color: rgba(0,0,0,0.3);
    transform: translateY(-1px);
}
.cf-list-thumb {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1efe8;
    flex-shrink: 0;
}
.cf-list-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-list-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.cf-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.cf-status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cf-status-closing { color: #A32D2D; }
.cf-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A32D2D;
    display: inline-block;
    animation: cf-pulse 2s ease-in-out infinite;
}
@keyframes cf-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.9); }
}
.cf-type-pill {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: 0.2px;
    display: inline-block;
}

/* Coloured placeholder (when no featured image) */
.cf-thumb-placeholder {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cf-thumb-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
    pointer-events: none;
}
.cf-placeholder-glyph {
    font-family: "Playfair Display", "GT Sectra", Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    opacity: 0.85;
    position: relative;
    letter-spacing: -2px;
}
.cf-placeholder-glyph-lg { font-size: 72px; letter-spacing: -3px; }
.cf-placeholder-glyph-xl { font-size: 140px; letter-spacing: -5px; }
.cf-type-pill-lg {
    font-size: 12px;
    padding: 5px 14px;
    margin-bottom: 16px;
}
.cf-fs-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #FFF4D6;
    color: #6B4D00;
    font-weight: 600;
    letter-spacing: 0.2px;
    border: 0.5px solid #F2D981;
}
.cf-list-title {
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.3;
    color: #1a1a1a;
}
.cf-list-loc {
    font-size: 12px;
    color: #5f5e5a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cf-list-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 0.5px solid rgba(0,0,0,0.1);
}
.cf-source {
    font-size: 12px;
    color: #5f5e5a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.cf-source-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8593A, #C9A876);
    display: inline-block;
    flex-shrink: 0;
}
.cf-tag {
    font-size: 11px;
    padding: 3px 9px;
    background: #f1efe8;
    color: #5f5e5a;
    border-radius: 4px;
    font-weight: 500;
}
.cf-tag-prize { background: #E1F5EE; color: #085041; }

/* Grid view */
.cf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.cf-card {
    display: block;
    background: #fff;
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.15s ease;
}
.cf-card:hover { border-color: rgba(0,0,0,0.3); transform: translateY(-2px); }
.cf-card-img {
    aspect-ratio: 4 / 3;
    background: #f1efe8;
    position: relative;
    overflow: hidden;
}
.cf-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #A32D2D;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cf-card-fs {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FFF4D6;
    color: #6B4D00;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    border: 0.5px solid #F2D981;
}
.cf-card-body { padding: 16px; }
.cf-card-body .cf-type-pill { margin-bottom: 10px; }
.cf-card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 1.3;
    color: #1a1a1a;
}
.cf-card-org { font-size: 12px; color: #5f5e5a; margin: 0 0 12px; }
.cf-card-foot {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #5f5e5a;
    padding-top: 10px;
    border-top: 0.5px solid rgba(0,0,0,0.1);
    font-weight: 500;
}

/* Map view */
#cf-map {
    height: 600px;
    border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.12);
    overflow: hidden;
    background: #f1efe8;
}
.leaflet-popup-content-wrapper { border-radius: 8px !important; padding: 4px !important; }
.leaflet-popup-content { font-family: inherit !important; margin: 12px 14px !important; font-size: 13px !important; }
.leaflet-popup-content strong { font-weight: 500; font-size: 14px; display: block; margin-bottom: 4px; }
.leaflet-popup-content a { color: #1a1a1a; text-decoration: underline; font-size: 12px; }

/* Sidebar */
.cf-sidebar { position: sticky; top: 24px; }
.cf-mini-cal {
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}
.cf-mini-cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.cf-mini-cal-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
}
.cf-mini-cal-title:hover { text-decoration: underline; }
.cf-cal-nav {
    font-size: 14px;
    padding: 2px 8px;
    color: #5f5e5a;
    text-decoration: none;
    border-radius: 4px;
    line-height: 1;
}
.cf-cal-nav:hover { background: #f1efe8; color: #1a1a1a; }
.cf-mini-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    text-align: center;
}
.cf-cal-dow { font-size: 10px; color: #888780; padding: 4px 0; font-weight: 500; }
.cf-board .cf-cal-day {
    font-size: 11px;
    padding: 6px 0;
    border: none;
    background: transparent;
    color: #1a1a1a;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    min-height: auto;
    line-height: 1.3;
}
.cf-board .cf-cal-day:hover { background: #f1efe8; }
.cf-cal-empty { visibility: hidden; }
.cf-cal-day-active { font-weight: 600; }
.cf-cal-day-selected {
    background: #1a1a1a !important;
    color: #fff !important;
}
.cf-cal-marker {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #A32D2D;
}
.cf-cal-marker-static {
    position: static;
    transform: none;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 6px;
    vertical-align: middle;
}
.cf-mini-cal-foot {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 0.5px solid rgba(0,0,0,0.1);
    font-size: 11px;
    color: #5f5e5a;
}

/* Fair Signal callout (sidebar) - light cream version for readability */
.cf-fs-callout {
    margin-top: 16px;
    padding: 24px;
    background: #FFF8E7;
    border-radius: 14px;
    border: 1px solid #F2D981;
    position: relative;
    overflow: hidden;
}
.cf-fs-callout::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,212,77,0.35), transparent 70%);
    pointer-events: none;
}
.cf-fs-eyebrow {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: #8B6914;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cf-fs-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 14px;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -0.3px;
    position: relative;
}
.cf-fs-title em {
    font-style: italic;
    color: #8B6914;
}
.cf-fs-desc {
    font-size: 14px;
    color: #2c2c2a;
    margin: 0 0 18px;
    line-height: 1.55;
    position: relative;
}
.cf-board a.cf-fs-cta {
    display: inline-block;
    padding: 11px 20px;
    background: #1a1a1a;
    color: #fff !important;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
    border: none;
}
.cf-board a.cf-fs-cta:hover {
    background: #333 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Fair Signal listing card (single page) - matching cream version */
.cf-board a.cf-fs-listing {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    background: #FFF8E7;
    border-radius: 14px;
    margin-bottom: 36px;
    color: #1a1a1a !important;
    text-decoration: none !important;
    border: 1px solid #F2D981;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
}
.cf-board a.cf-fs-listing::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,212,77,0.3), transparent 70%);
    pointer-events: none;
}
.cf-board a.cf-fs-listing:hover {
    border-color: #E5C24A;
    transform: translateY(-1px);
}
.cf-fs-listing-icon {
    font-size: 26px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #1a1a1a;
    color: #FFD477;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cf-fs-listing-body { flex: 1; min-width: 0; position: relative; }
.cf-fs-listing-eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8B6914;
    margin: 0 0 4px;
    font-weight: 700;
}
.cf-fs-listing-title {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px;
}
.cf-fs-listing-desc {
    font-size: 13px;
    color: #5f5e5a;
    margin: 0;
    line-height: 1.45;
}
.cf-fs-listing-arrow {
    font-size: 24px;
    color: #1a1a1a;
    flex-shrink: 0;
    position: relative;
}

/* Single listing page */
.cf-single { padding-top: 24px; }
.cf-breadcrumb {
    font-size: 12px;
    color: #888780;
    margin: 0 0 28px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-weight: 500;
}
.cf-breadcrumb a { color: #888780; }
.cf-breadcrumb a:hover { color: #1a1a1a; }
.cf-bc-sep { margin: 0 6px; opacity: 0.5; }
.cf-single-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.cf-single-left { position: sticky; top: 24px; }
.cf-single-image {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #f1efe8;
    margin-bottom: 20px;
}
.cf-single-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-side-card {
    padding: 16px 18px;
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
}
.cf-side-eyebrow {
    font-size: 11px;
    color: #888780;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.cf-side-row { display: flex; align-items: center; gap: 10px; }
.cf-side-name { font-size: 14px; font-weight: 500; color: #1a1a1a; }
.cf-single-right { min-width: 0; }
.cf-single-title {
    font-family: "Playfair Display", "GT Sectra", Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin: 0 0 28px;
    color: #1a1a1a;
    font-style: italic;
}
.cf-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 0;
    border-top: 0.5px solid rgba(0,0,0,0.12);
    border-bottom: 0.5px solid rgba(0,0,0,0.12);
    margin-bottom: 28px;
}
.cf-meta-item { display: flex; gap: 14px; align-items: flex-start; }
.cf-meta-item svg { color: #888780; flex-shrink: 0; margin-top: 2px; }
.cf-meta-main { font-size: 15px; font-weight: 500; margin: 0 0 2px; color: #1a1a1a; }
.cf-meta-sub { font-size: 13px; color: #888780; margin: 0; }
.cf-urgent { color: #A32D2D !important; font-weight: 500; }

.cf-apply-card {
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 24px;
    background: #fafaf6;
}
.cf-apply-eyebrow {
    font-size: 11px;
    color: #888780;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.cf-apply-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
}
.cf-apply-stat { display: flex; flex-direction: column; }
.cf-as-label {
    font-size: 11px;
    color: #888780;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.cf-as-value { font-size: 18px; font-weight: 500; color: #1a1a1a; }
.cf-apply-desc {
    font-size: 14px;
    color: #5f5e5a;
    margin: 0 0 18px;
    line-height: 1.5;
}
.cf-board a.cf-apply-btn,
.cf-board .cf-apply-btn {
    display: block !important;
    width: 100% !important;
    padding: 16px 20px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
    transition: background 0.15s ease;
    box-sizing: border-box;
}
.cf-board a.cf-apply-btn:hover { background: #333 !important; color: #fff !important; }

.cf-single-section { margin-bottom: 36px; }
.cf-single-section:last-child { margin-bottom: 0; }
.cf-single-h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: -0.3px;
    color: #1a1a1a;
}
.cf-single-body { font-size: 15px; line-height: 1.7; color: #2c2c2a; }
.cf-single-body p { margin: 0 0 1em; }
.cf-single-body p:last-child { margin-bottom: 0; }
#cf-single-map {
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid rgba(0,0,0,0.15);
    background: #f1efe8;
    margin-top: 14px;
}

/* ================================
   SUBMIT FORM - editorial layout
   ================================ */

.cf-submit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}

.cf-submit-form {
    max-width: none;
    min-width: 0;
}

/* Roman numeral sections */
.cf-section {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
}
.cf-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.cf-section-num {
    font-family: "Playfair Display", "GT Sectra", Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    font-style: italic;
    color: #B4B2A9;
    line-height: 0.85;
    text-align: right;
    padding-top: 4px;
}
.cf-section-content { min-width: 0; }
.cf-section-h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 6px;
    color: #1a1a1a;
    letter-spacing: -0.4px;
    line-height: 1.05;
}
.cf-section-sub {
    font-size: 14px;
    color: #888780;
    margin: 0 0 22px;
    line-height: 1.5;
}

.cf-submit-foot {
    margin-top: 8px;
    padding-top: 8px;
}
.cf-submit-disclaimer {
    font-size: 12px;
    color: #888780;
    margin: 14px 0 0;
    line-height: 1.5;
}

/* Live preview sidebar */
.cf-preview-sidebar {
    position: sticky;
    top: 24px;
}
.cf-preview-card {
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 20px;
    background: #fafaf6;
    margin-bottom: 16px;
}
.cf-preview-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #1a1a1a;
    margin: 0 0 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cf-preview-desc {
    font-size: 12px;
    color: #888780;
    margin: 0 0 16px;
    line-height: 1.5;
}
.cf-preview-mock {
    background: #fff;
    border-radius: 12px;
    border: 0.5px solid rgba(0,0,0,0.12);
    padding: 14px;
    transition: all 0.2s ease;
}
.cf-preview-thumb {
    aspect-ratio: 5 / 4;
    background: #f1efe8;
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cf-preview-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cf-preview-thumb-icon {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 48px;
    color: #B4B2A9;
    font-style: italic;
    line-height: 1;
}
.cf-preview-body {}
.cf-preview-badges {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.cf-preview-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.3;
    color: #1a1a1a;
    word-wrap: break-word;
}
.cf-preview-loc {
    font-size: 12px;
    color: #5f5e5a;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cf-preview-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    border-top: 0.5px solid rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

/* Tips card */
.cf-tips-card {
    border: 0.5px solid rgba(0,0,0,0.12);
    border-radius: 14px;
    padding: 20px;
    background: #fff;
}
.cf-tips-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #888780;
    margin: 0 0 14px;
    font-weight: 600;
}
.cf-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cf-tips-list li {
    font-size: 13px;
    line-height: 1.55;
    color: #5f5e5a;
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.cf-tips-list li:first-child { padding-top: 0; }
.cf-tips-list li:last-child { padding-bottom: 0; border-bottom: none; }
.cf-tips-list li strong {
    color: #1a1a1a;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}
.cf-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-form-grid label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5f5e5a;
}
.cf-form-grid label span { display: block; margin-bottom: 6px; }
.cf-form-grid label em {
    font-style: normal;
    color: #a32d2d;
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 0;
}
.cf-form-grid label small {
    font-size: 10px;
    color: #888780;
    text-transform: lowercase;
    font-weight: 400;
    letter-spacing: 0;
}
.cf-form-full { grid-column: 1 / -1; }
.cf-board .cf-form-grid input[type="text"],
.cf-board .cf-form-grid input[type="url"],
.cf-board .cf-form-grid input[type="email"],
.cf-board .cf-form-grid input[type="date"],
.cf-board .cf-form-grid input[type="datetime-local"],
.cf-board .cf-form-grid input[type="number"],
.cf-board .cf-form-grid input[type="file"],
.cf-board .cf-form-grid select,
.cf-board .cf-form-grid textarea {
    width: 100%;
    padding: 12px 14px;
    border: 0.5px solid rgba(0,0,0,0.25);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    box-shadow: none;
    min-height: auto;
    height: auto;
}
.cf-board .cf-form-grid textarea { resize: vertical; min-height: 80px; }
.cf-board .cf-form-grid input:focus,
.cf-board .cf-form-grid select:focus,
.cf-board .cf-form-grid textarea:focus { outline: none; border-color: #1a1a1a; }

/* Address autocomplete */
.cf-address-search { position: relative; }
.cf-address-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 0.5px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 100;
}
.cf-addr-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
    transition: background 0.1s ease;
}
.cf-addr-result:last-child { border-bottom: none; }
.cf-addr-result:hover { background: #fafaf6; }
.cf-addr-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    background: #f1efe8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cf-addr-text { flex: 1; min-width: 0; }
.cf-addr-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cf-addr-sub {
    display: block;
    font-size: 12px;
    color: #888780;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cf-addr-loading,
.cf-addr-empty {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #888780;
    text-transform: none;
    letter-spacing: 0;
}
.cf-address-hint {
    font-size: 12px;
    color: #085041;
    margin: 8px 0 0;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

/* Submit form intro */
.cf-submit-intro {
    font-size: 14px;
    color: #5f5e5a;
    max-width: 560px;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* Responsive */
@media (max-width: 980px) {
    .cf-stats { grid-template-columns: repeat(2, 1fr); }
    .cf-spotlight { grid-template-columns: 1fr; gap: 24px; }
    .cf-spotlight-title { font-size: 28px; }
    .cf-layout { grid-template-columns: minmax(0, 1fr); }
    .cf-sidebar { position: static; }
    .cf-mini-cal { max-width: 360px; }
    .cf-fs-callout { max-width: 360px; }
    .cf-submit-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .cf-preview-sidebar { position: static; max-width: 480px; }
    .cf-single-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
    .cf-single-left { position: static; max-width: 480px; }
    .cf-single-title { font-size: 36px; }
    .cf-title { font-size: 32px; }
}
@media (max-width: 700px) {
    .cf-board { padding: 16px 14px 40px; }
    .cf-page-header { flex-direction: column; align-items: flex-start; }
    .cf-page-header-actions { width: 100%; }
    .cf-title { font-size: 26px; }
    .cf-section-head { flex-direction: column; align-items: flex-start; }
    .cf-section { grid-template-columns: 56px minmax(0, 1fr); gap: 16px; margin-bottom: 36px; padding-bottom: 28px; }
    .cf-section-num { font-size: 44px; }
    .cf-section-h2 { font-size: 22px; }
    .cf-list-card { flex-direction: column; gap: 14px; padding: 14px; }
    .cf-list-thumb { width: 100%; height: 180px; }
    .cf-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .cf-form-grid { grid-template-columns: 1fr; }
    .cf-single-title { font-size: 30px; }
    .cf-single-image { aspect-ratio: 4 / 3; }
    .cf-apply-stats { gap: 24px; }
    .cf-spotlight { padding: 18px; }
    .cf-spotlight-title { font-size: 24px; }
    .cf-fs-listing { flex-direction: column; text-align: center; }
}
