/* ═══════════════════════════════════════════════════════════════
   KCUI Theme — Additional CSS (beyond theme.json)
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

html {
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* ─── Helpers ─── */
.alignfull { margin-left: calc(50% - 50vw) !important; /*width: 100vw !important;*/ max-width: 100vw; }
.max-w-7xl { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .max-w-7xl { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .max-w-7xl { padding: 0 2rem; } }

/* ─── Header — sticky & responsive ─── */
.site-header { position: sticky; top: 0; z-index: 50; width: 100%; min-height: 5rem; }
.header-inner { max-width: 80rem; width: 100%; }
@media (max-width: 600px) { .site-header .wp-block-buttons.kcui-header-cta { display: none; } }
@media (max-width: 639px) { .top-bar-tagline { display: none; } }

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.15s;
    cursor: pointer;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: background 0.15s;
    text-align: center;
    text-decoration: none;
}
.btn-primary:hover { background: var(--wp--preset--color--primary-hover, #c82d18); }

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: background 0.15s;
    text-align: center;
    width: 100%;
}
@media (min-width: 640px) { .btn-primary-lg { width: auto; } }
.btn-primary-lg:hover { background: var(--wp--preset--color--primary-hover, #c82d18); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--wp--preset--color--foreground, #111827);
    background: var(--wp--preset--color--white, #ffffff);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.15s;
    text-align: center;
    width: 100%;
}
@media (min-width: 640px) { .btn-outline { width: auto; } }
.btn-outline:hover { background: var(--wp--preset--color--surface, #f9fafb); }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--wp--preset--color--primary, #e63920);
    transition: color 0.15s;
    text-align: center;
    width: 100%;
}
@media (min-width: 640px) { .btn-ghost { width: auto; } }
.btn-ghost:hover { color: var(--wp--preset--color--primary-hover, #c82d18); text-decoration: underline; }

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    background: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
    cursor: pointer;
    border: none;
}
.btn-cta:hover {
    background: var(--wp--preset--color--primary-hover, #c82d18);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-0.125rem);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--wp--preset--color--white, #ffffff);
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}
.hero-bg .blob-1 {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(230,57,32,0.05);
    filter: blur(64px);
}
.hero-bg .blob-2 {
    position: absolute;
    top: 12rem;
    right: -3rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    border: 1px solid rgba(230,57,32,0.1);
}
.hero-bg .dot-1 { position: absolute; top: 3rem; right: 6rem; width: 1rem; height: 1rem; border-radius: 50%; background: rgba(230,57,32,0.2); }
.hero-bg .dot-2 { position: absolute; top: 18rem; right: 14rem; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: rgba(230,57,32,0.4); }
.hero-bg .dot-3 { position: absolute; top: 9rem; right: 18rem; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: rgba(230,57,32,0.3); }

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1rem 6rem;
    position: relative;
    z-index: 10;
}
@media (min-width: 640px) { .hero-content { padding: 5rem 1.5rem 6rem; } }
@media (min-width: 1024px) { .hero-content { padding: 5rem 2rem 6rem; } }
.hero-text { max-width: 48rem; }
.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-wrap: balance;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.5rem; } }
.hero-desc {
    font-size: 1rem;
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 2.5rem;
    max-width: 42rem;
    line-height: 1.625;
    text-wrap: balance;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; align-items: center; flex-wrap: wrap; } }

/* ─── Readiness Banner ─── */
.readiness-banner {
    background: var(--wp--preset--color--surface, #f9fafb);
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    overflow: hidden;
}
.readiness-card {
    background: var(--wp--preset--color--white, #ffffff);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .readiness-card { padding: 3rem; } }
.readiness-card .glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(230,57,32,0.05);
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
    transform: translate(25%, -25%);
}
.readiness-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
@media (min-width: 768px) { .readiness-inner { flex-direction: row; } }
.readiness-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(230,57,32,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.readiness-text { flex-grow: 1; text-align: center; }
@media (min-width: 768px) { .readiness-text { text-align: left; } }
.readiness-text h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.readiness-text p {
    font-size: 1.125rem;
    color: var(--wp--preset--color--muted, #6b7280);
    max-width: 32rem;
}
.readiness-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
    margin-top: 0.75rem;
}
.readiness-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    min-width: 240px;
}
@media (min-width: 768px) { .readiness-actions { align-items: flex-end; } }

/* ─── Sections ─── */
section.kcui-section { padding: 5rem 0; }
.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding-bottom: 1.5rem;
}
@media (min-width: 768px) { .section-header { flex-direction: row; align-items: flex-end; } }
.section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-header-left { max-width: 42rem; }
.section-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
    transition: color 0.15s;
    margin-top: 1.5rem;
}
@media (min-width: 768px) { .section-link { margin-top: 0; } }
.section-link:hover { color: var(--wp--preset--color--primary-hover, #c82d18); }
.section-link .arrow-circle {
    margin-left: 0.5rem;
    background: var(--wp--preset--color--surface, #f9fafb);
    padding: 0.375rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.section-link:hover .arrow-circle { background: rgba(230,57,32,0.1); }
.section-link .arrow-circle-border {
    margin-left: 0.5rem;
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 0.375rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}
.section-link:hover .arrow-circle-border { background: rgba(230,57,32,0.1); border-color: rgba(230,57,32,0.3); }

.bg-surface { background: var(--wp--preset--color--surface, #f9fafb); }
.bg-white { background: var(--wp--preset--color--white, #ffffff); }
.bg-cta { background: rgba(230,57,32,0.05); border-top: 1px solid rgba(230,57,32,0.1); }

/* ─── Grids ─── */
.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-providers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .grid-providers { grid-template-columns: repeat(3, 1fr); } }

/* ─── Cards Grid — equal height ─── */
.wp-block-columns.cards-grid .wp-block-column {
    display: flex;
}
.wp-block-columns.cards-grid .wp-block-column > .wp-block-group {
    width: 100%;
}
.wp-block-columns.cards-grid .stack-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ─── Pillar Card ─── */
.card {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.card:hover { border-color: var(--wp--preset--color--primary-hover, #e63920); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: var(--wp--preset--color--surface, #f9fafb);
    border-radius: 0 0 0 100%;
    margin-right: -2rem;
    margin-top: -2rem;
    transition: background 0.3s;
}
.card:hover .card-corner { background: rgba(230,57,32,0.05); }
.card-icon {
    margin-bottom: 1rem;
    color: var(--wp--preset--color--primary, #e63920);
    transition: transform 0.3s;
    transform-origin: left;
}
.card:hover .card-icon { 
	transform: scale(1.1); 
	color: var(--wp--preset--color--primary-hover, #e63920);
}
.card:hover .card-icon .icon-container { color: var(--wp--preset--color--primary-hover, #e63920) !important; }
.card-icon svg { width: 2rem; height: 2rem; }
.card-icon .wp-block-outermost-icon-block .has-icon-color svg,
.readiness-icon .wp-block-outermost-icon-block .has-icon-color svg { fill: none; }
.readiness-icon { width: 5rem; height: 5rem; border-radius: 50%; background: rgba(230,57,32,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.15s;
}
.card:hover h3 { color: var(--wp--preset--color--primary-hover, #e63920); }
.card p {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 1.5rem;
    line-height: 1.625;
}
.card p.stack-desc {
    flex-grow: 1;
}
.card-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
}
.card-cta svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.375rem;
    transition: transform 0.3s;
}
.card:hover .card-cta svg { 
	transform: translateX(0.25rem); 
	color: var(--wp--preset--color--primary-hover, #e63920);
}

.card:hover .card-cta {
	color: var(--wp--preset--color--primary-hover, #e63920);
}

/* ─── News Card ─── */
.news-card {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}
.news-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }

.news-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.news-card-link:hover h3 {
    color: var(--wp--preset--color--primary, #e63920);
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.news-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(230,57,32,0.1);
    color: var(--wp--preset--color--primary, #e63920);
	border:1px solid var(--wp--preset--color--primary, #e63920);
}
.news-date {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
}
.news-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card h3 {
    color: var(--wp--preset--color--foreground, #111827);
}

.news-card p {
    font-size: 1rem;
    color: var(--wp--preset--color--muted, #6b7280);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
    flex: 1 1 auto;
    line-height: 1.625;
}
.news-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.news-footer a {
    color: var(--wp--preset--color--primary, #e63920);
    font-weight: 600;
    text-decoration: none;
}

.news-footer:hover {
    text-decoration: underline;
    color: var(--wp--preset--color--primary, #e63920);
}


/* ─── Event Card ─── */
.event-card {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.event-card:hover { border-color: var(--wp--preset--color--primary-hover, #e63920); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.event-header {
    display: flex;
    align-items: center;
    background: var(--wp--preset--color--surface, #f9fafb);
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 1rem;
}
.event-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.375rem;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    flex-shrink: 0;
    transition: border-color 0.3s;
}
.event-card:hover .event-date-box { border-color: var(--wp--preset--color--primary-hover, #e63920); }
.event-date-month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--wp--preset--color--primary, #e63920);
    letter-spacing: 0.05em;
}
.event-card:hover .event-date-month { color: var(--wp--preset--color--primary-hover, #e63920); }

.event-date-day {
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1;
}
.event-meta {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
}
.event-type {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wp--preset--color--muted, #6b7280);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.event-location {
    font-size: 0.75rem;
    color: var(--wp--preset--color--muted, #6b7280);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.event-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.event-body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.event-card:hover .event-body h3 { color: var(--wp--preset--color--primary-hover, #e63920); }
.event-body p {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 1;
}
.event-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.event-level {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 10px;
    font-weight: 500;
    background: var(--wp--preset--color--surface, #f9fafb);
    color: var(--wp--preset--color--muted, #6b7280);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.event-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary-hover, #e63920);
    opacity: 0;
    transform: translateX(0.5rem);
    transition: all 0.3s;
    display: flex;
    align-items: center;
}
.event-card:hover .event-cta { opacity: 1; transform: translateX(0); }

.kcui-no-events {
    text-align: center;
    padding: 3rem 0;
    color: var(--wp--preset--color--muted, #6b7280);
    grid-column: 1 / -1;
}

/* ─── Knowledge Card ─── */
.knowledge-card {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.knowledge-card:hover { border-color: var(--wp--preset--color--primary-hover, #e63920); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.knowledge-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.knowledge-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.knowledge-card:hover h3 { color: var(--wp--preset--color--primary-hover, #e63920); }
.knowledge-card p {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 1;
}
.knowledge-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.knowledge-author {
    font-size: 0.75rem;
    color: var(--wp--preset--color--muted, #6b7280);
    font-weight: 500;
}
.knowledge-arrow {
    color: var(--wp--preset--color--primary, #e63920);
    opacity: 0;
    transform: translateX(0.5rem);
    transition: all 0.3s;
}
.knowledge-card:hover .knowledge-arrow { opacity: 1; transform: translateX(0); }

/* ─── Provider Card ─── */
.provider-card {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    position: relative;
}
.provider-card:hover { border-color: var(--wp--preset--color--primary-hover, #e63920); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
a.provider-card { text-decoration: none; color: inherit; }
.provider-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.provider-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--wp--preset--color--muted, #6b7280);
    flex-shrink: 0;
    transition: border-color 0.3s;
}
.provider-card:hover .provider-avatar { border-color: rgba(230,57,32,0.3); }
.badge-verified {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 600;
    color: #008138;
    background: #f0fdf4;
    border: 1px solid #b9f8cf;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}
.provider-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.provider-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}
.provider-card:hover h3 { color: var(--wp--preset--color--primary-hover, #e63920); }
.provider-card p {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 1;
}
.provider-arrow {
    font-size: 0.875rem;
    color: var(--wp--preset--color--primary, #e63920);
    opacity: 0;
    transform: translateX(0.5rem);
    transition: opacity 0.3s, transform 0.3s;
    margin-top: auto;
    align-self: flex-end;
}
.provider-card:hover .provider-arrow {
    opacity: 1;
    transform: translateX(0);
}
.provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: auto;
}
.provider-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 10px;
    font-weight: 500;
    background: var(--wp--preset--color--surface, #f9fafb);
    color: var(--wp--preset--color--muted, #6b7280);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
}

/* ─── Tag styles (scoped to knowledge header) ─── */
.kcui-knowledge-header-row .tag {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.625rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ─── O KCUI Page — Badge ─── */
.badge {
    display: inline-flex;
    width: fit-content;
    border-radius: 9999px;
    border: 1px solid rgba(230,57,32,0.1);
    background: rgba(230,57,32,0.05);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wp--preset--color--primary, #e63920);
    margin-bottom: 1rem;
}

/* ─── O KCUI Page — Section Labels ─── */
.section-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wp--preset--color--primary, #e63920);
    margin-bottom: 0.75rem;
}
.section-label-light {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wp--preset--color--primary, #e63920);
    margin-bottom: 0.75rem;
}

/* ─── O KCUI Page — bg-slate-900 ─── */
/* ─── O KCUI Page — Full-width sections with background ─── */
.page-id-411 .wp-block-post-content .bg-surface,
.page-id-411 .wp-block-post-content .bg-white,
.page-id-411 .wp-block-post-content .bg-slate-900,
.page-id-411 .wp-block-post-content .bg-cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: var(--wp--style--root--padding-left, 1rem);
    padding-right: var(--wp--style--root--padding-right, 1rem);
    box-sizing: border-box;
}
.bg-slate-900 { background: #0f172a; }
.has-slate-300-color { color: #94a3b8; }

/* ─── O KCUI Page — Card Quick Links (4-grid) ─── */
.card-quick {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 100%;
}
.card-quick:hover { border-color: var(--wp--preset--color--primary-hover, #e63920); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.card-quick .card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: var(--wp--preset--color--surface, #f9fafb);
    border-radius: 0 0 0 100%;
    margin-right: -2rem;
    margin-top: -2rem;
    transition: background 0.3s;
}
.card-quick:hover .card-corner { background: rgba(230,57,32,0.05); }
.card-quick .card-icon {
    margin-bottom: 1rem;
    color: var(--wp--preset--color--primary, #e63920);
    transition: transform 0.3s;
    transform-origin: left;
}
.card-quick:hover .card-icon { transform: scale(1.1); }
.card-quick h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.15s;
}
.card-quick:hover h3 { color: var(--wp--preset--color--primary-hover, #e63920); }
.card-quick p {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.625;
}
.card-quick .card-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
}
.card-quick .card-cta svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.375rem;
    transition: transform 0.3s;
}
.card-quick:hover .card-cta svg { transform: translateX(0.25rem); }

/* ─── O KCUI Page — Dark Cards (user profiles) ─── */
.card-dark {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: background 0.2s;
    min-height: 100%;
}
.card-dark:hover { background: rgba(255,255,255,0.1); }
.card-dark h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.card-dark p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* ─── O KCUI Page — Partner Cards ─── */
.card-partner {
    padding: 2rem;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 1rem;
    background: var(--wp--preset--color--white, #ffffff);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.card-partner:hover { border-color: var(--wp--preset--color--primary-hover, #c5003e); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.card-partner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.15s;
}
.card-partner:hover h3 { color: var(--wp--preset--color--primary-hover, #e63920); }
.card-partner p {
    font-size: 1rem;
    color: var(--wp--preset--color--muted, #6b7280);
    line-height: 1.625;
    flex-grow: 1;
}

/* ─── O KCUI Page — Logos Row ─── */
.logos-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) { .logos-row { gap: 2.5rem; } }
.logo-grayscale {
    height: 2rem;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: filter 0.3s, opacity 0.3s;
}
@media (min-width: 768px) { .logo-grayscale { height: 2.5rem; } }
.logo-grayscale:hover { filter: grayscale(0%); opacity: 1; }
.logo-grayscale img { height: 100%; width: auto; object-fit: contain; }

/* ─── O KCUI Page — Knowledge Items ─── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.card-knowledge {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.75rem;
    background: var(--wp--preset--color--white, #ffffff);
    padding: 1.25rem;
    transition: border-color 0.2s;
}
.card-knowledge:hover { border-color: var(--wp--preset--color--primary-hover, #e63920); }
.card-knowledge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(230,57,32,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--primary, #e63920);
    flex-shrink: 0;
    transition: background 0.2s;
}
.card-knowledge:hover .card-knowledge-icon { 
    background: rgba(230,57,32,0.1); 
    color: var(--wp--preset--color--primary-hover, #c5003e);
}
.card-knowledge p {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
}

/* ─── O KCUI Page — Waitlist CTA Button ─── */
.btn-waitlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
    transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
    cursor: pointer;
    border: none;
}
.btn-waitlist:hover {
    background: var(--wp--preset--color--primary-hover, #c82d18);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.25);
    transform: translateY(-0.25rem);
}

/* ─── CTA Section ─── */
.cta-section {
    text-align: center;
    padding: 5rem 0;
    max-width: 80rem;
    margin: 0 auto;
    padding-left: var(--wp--style--root--padding-right, 1rem);
    padding-right: var(--wp--style--root--padding-right, 1rem);
}
.cta-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-size: 1.125rem;
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 2.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--wp--preset--color--surface, #f9fafb);
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.footer-grid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
        text-align: left;
        padding: 0 1.5rem;
    }
}
@media (min-width: 1024px) { .footer-grid { padding: 0 2rem; } }
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
@media (min-width: 768px) { .footer-logo-row { justify-content: flex-start; } }
.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.25rem;
    background: var(--wp--preset--color--primary, #e63920);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}
.footer-brand-name {
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: -0.025em;
}
.footer-desc {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    max-width: 28rem;
}
@media (min-width: 768px) { .footer-desc { margin-top: 0.5rem; } }
.footer-col h3 {
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; list-style: none; padding: 0; margin: 0; }
.footer-col ul li a {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--wp--preset--color--primary-hover, #e63920); }

.institutional {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    text-align: center;
}
.institutional h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.institutional-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .institutional-logos { gap: 2rem; } }
.inst-logo {
    height: 1.5rem;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: filter 0.3s, opacity 0.3s;
}
@media (min-width: 768px) { .inst-logo { height: 2rem; } }
.inst-logo:hover { filter: grayscale(0%); opacity: 1; }
.institutional p {
    font-size: 0.75rem;
    color: var(--wp--preset--color--muted, #6b7280);
    max-width: 48rem;
}
@media (min-width: 768px) { .institutional p { font-size: 0.875rem; } }

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(107,114,128,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.archive-header {
    padding: 5rem 0 3rem;
    text-align: center;
    background: var(--wp--preset--color--surface, #f9fafb);
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.archive-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .archive-header h1 { font-size: 3rem; } }

 /* ─── Footer logos — equal width, stack on mobile ─── */
   .wp-block-group.footer-logos {
       display: flex;
       flex-wrap: wrap !important;
       justify-content: center;
       align-items: center;
       gap: 2rem;
   }
   .wp-block-group.footer-logos .wp-block-image {
       flex: 1 1 0;
       min-width: 0;
       display: flex;
       justify-content: center;
   }
   .wp-block-group.footer-logos .wp-block-image img {
       max-height: 4rem;
       width: auto;
       object-fit: contain;
   }
   @media (max-width: 768px) {
       .wp-block-group.footer-logos {
           flex-direction: column;
           gap: 1.5rem;
       }
       .wp-block-group.footer-logos .wp-block-image {
           flex: none;
           width: 100%;
           max-width: 280px;
       }
       .wp-block-group.footer-logos .wp-block-image img {
           max-height: 3.5rem;
       }
   }

/* ─── Single post ─── */
.single-content {
    max-width: 48rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}
.single-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.single-content .entry-meta {
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 2rem;
}
.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

/* ─── Flex utility ─── */
.flex-1 { flex: 1; }

/* ─── Small utility classes ─── */
.hover\:text-primary:hover { color: var(--wp--preset--color--primary-hover, #e63920); }
.transition-colors { transition: color 0.15s; }

/* ═══════════════════════════════════════════════════════════════
   Event page (single-kcui_event.html)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tag pills (scoped to event content) ─── */
.knowledge-card .knowledge-top .tag {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wp--preset--color--primary, #e63920);
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
}

.knowledge-card .knowledge-top .read-time {
	font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
}

.tag-primary {
    background: rgba(230,57,32,0.1);
    color: var(--wp--preset--color--primary, #e63920);
    font-weight: 700;
}
.tag-outline {
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    color: var(--wp--preset--color--muted, #6b7280);
    font-weight: 600;
}
.tag-green {
    background: #dcfce7;
    color: #166534;
    font-weight: 600;
}
.tag-level {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    font-weight: 600;
}

/* ─── Terms Query (Ciljna publika pills) ─── */
.kcui-event-body .wp-block-term-template {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.kcui-event-body .wp-block-term-template li {
    margin: 0;
}
.kcui-event-body .wp-block-term-template li p {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    color: var(--wp--preset--color--foreground, #111827);
    margin: 0;
}
.kcui-event-body .wp-block-term-template li p a {
    color: inherit;
    text-decoration: none;
}

/* ─── Breadcrumb ─── */
.kcui-breadcrumb {
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    background: var(--wp--preset--color--white, #ffffff);
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}
.kcui-breadcrumb .max-w-7xl {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
}
.kcui-breadcrumb a { transition: color 0.15s; }
.kcui-breadcrumb a:hover { color: var(--wp--preset--color--primary-hover, #e63920); }
.kcui-breadcrumb-sep { margin: 0 0.5rem; }
.kcui-breadcrumb-current {
    color: var(--wp--preset--color--foreground, #111827);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.kcui-breadcrumb-current h1,
.kcui-breadcrumb-current .wp-block-post-title {
    display: inline;
    font-size: inherit;
    font-weight: 700;
    margin: 0;
    padding: 0;
    border: none;
    letter-spacing: normal;
    line-height: inherit;
}
@media (min-width: 640px) {
    .kcui-breadcrumb-current { max-width: none; }
}

/* ─── Event hero ─── */
.kcui-event-hero {
    background: var(--wp--preset--color--white, #fff);
    /*border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);*/
    padding: 2rem 0;
}
@media (min-width: 768px) {
    .kcui-event-hero { padding: 2rem 0; }
}
/* hero uses default max-w-7xl (80rem, centered) */

.hero-label,
.section-label {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--wp--preset--color--primary, #e63920);
	margin-bottom: 0.75rem;
}

.kcui-event-hero h1 {
	font-size: clamp(2.5rem, 5vw, 3.75rem);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 0 0 1rem;
}

.kcui-event-hero .kcui-event-hero-desc {
	font-size: 1.25rem;
	color: var(--wp--preset--color--muted, #6b7280);
	max-width: 36rem;
}

.kcui-event-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.kcui-event-tags > *,
.kcui-event-tags mfb-meta-field-block {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(230, 57, 32, 0.05);
    color: var(--wp--preset--color--primary, #e63920);
    border: 1px solid rgba(230, 57, 32, 0.1);
    line-height: 1.4;
}

.kcui-event-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    text-wrap: balance;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--wp--preset--color--primary, #e63920);
    padding-left: 1.5rem;
    line-height: 1.25;
}
@media (min-width: 768px) {
    .kcui-event-title { font-size: 3rem; }
}

.kcui-event-excerpt {
    font-size: 1.25rem;
    color: var(--wp--preset--color--muted, #6b7280);
    text-wrap: balance;
    margin-bottom: 2rem;
}

/* ─── Event info row (Kdaj / Kje / Prijavi se) ─── */
.kcui-event-info {
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

/* ─── 50/50 grid for date + location ─── */
.kcui-event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

/* ─── Register button row ─── */
.kcui-event-info-btn {
    margin-top: 1rem;
}

/* ─── Event info item (each Kdaj / Kje block) ─── */
.kcui-event-info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}
.kcui-event-info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: rgba(230,57,32,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.kcui-event-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-event-info-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
    color: var(--wp--preset--color--foreground, #111827);
}
.kcui-event-info-value {
    font-size: 1rem;
    color: var(--wp--preset--color--muted, #6b7280);
}

.kcui-event-register-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    color: #fff;
    background: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: background-color 0.2s;
}
.kcui-event-register-btn:hover {
    background: var(--wp--preset--color--primary-hover, #c9301a);
}
@media (min-width: 640px) {
    .kcui-event-register-btn { width: auto; }
}

/* ─── Event body (content + sidebar) ─── */
.kcui-event-body {
    padding: 4rem 0 6rem;
    background: var(--wp--preset--color--surface, #f9fafb);
}
@media (min-width: 768px) {
    .kcui-event-body { padding: 4rem 0 6rem; }
}

.kcui-event-columns {
    display: block;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .kcui-event-columns { display: flex; }
}

.kcui-event-main {
    margin-bottom: 3rem;
}
@media (min-width: 1024px) {
    .kcui-event-main { flex-basis: 66.66%; margin-bottom: 0; }
}

.kcui-event-description {
    margin-bottom: 2rem;
}
.kcui-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin-bottom: 1.5rem;
}
.kcui-section-title--sm {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin-bottom: 1.5rem;
}

/* ─── Event description content (post-content prose) ─── */
.kcui-event-description .entry-content,
.kcui-event-description .wp-block-post-content {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--wp--preset--color--muted, #6b7280);
}
.kcui-event-description p { margin-bottom: 1.25rem; }
.kcui-event-description h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.kcui-event-description ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.kcui-event-description hr {
    border: none;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    margin: 2rem 0;
}
.kcui-event-description a {
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: underline;
}
.kcui-event-description strong {
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
}

/* ─── Speakers ─── */
.kcui-event-speakers {
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .kcui-speakers-grid { grid-template-columns: repeat(2, 1fr); }
}
.kcui-speakers-grid .wp-block-post-terms a {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}
.kcui-speakers-grid .wp-block-post-terms a:hover {
    border-color: var(--wp--preset--color--primary, #e63920);
}
.kcui-speakers-grid .wp-block-post-terms .wp-block-post-terms__separator { display: none; }

.kcui-speaker-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1rem;
}
.kcui-speaker-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wp--preset--color--primary, #e63920);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}
.kcui-speaker-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--wp--preset--color--foreground, #111827);
}

/* ─── Sidebar ─── */
.kcui-event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .kcui-event-sidebar { flex-basis: 33.33%; }
}

.kcui-sidebar-card {
    background: var(--wp--preset--color--white, #ffffff);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
}
.kcui-sidebar-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin-bottom: 0.5rem;
}
.kcui-sidebar-value {
    font-size: 0.95rem;
    color: var(--wp--preset--color--muted, #6b7280);
    margin: 0;
    line-height: 1.5;
}
.kcui-sidebar-value a {
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: none;
}
.kcui-sidebar-value a:hover {
    text-decoration: underline;
}
.kcui-sidebar-card-title-sm {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 1rem;
}

.kcui-sidebar-item {
    margin-bottom: 1rem;
}
.kcui-sidebar-item:last-child { margin-bottom: 0; }
.kcui-sidebar-item .kcui-sidebar-label {
    display: block;
    font-size: 0.875rem;
    color: var(--wp--preset--color--foreground, #111827);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.kcui-sidebar-item .mfb-meta-field-block,
.kcui-sidebar-item .wp-block-mfb-meta-field-block {
    font-size: 0.9rem;
    color: var(--wp--preset--color--foreground, #111827);
}
.kcui-sidebar-item .wp-block-post-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.kcui-sidebar-item .wp-block-post-terms a {
    display: inline-block;
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--wp--preset--color--foreground, #111827);
    text-transform: lowercase;
    text-decoration: none;
}
.kcui-sidebar-item .wp-block-post-terms a::first-letter { text-transform: uppercase; }
.kcui-sidebar-item .wp-block-post-terms a:hover { color: var(--wp--preset--color--primary-hover, #e63920); }
.kcui-sidebar-item .wp-block-post-terms .wp-block-post-terms__separator { display: none; }
/* event_level (MFB) - blue pill */
.kcui-sidebar-item .mfb-meta-field-block,
.kcui-sidebar-item .wp-block-mfb-meta-field-block {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.kcui-sidebar-action {
    padding: 0 !important;
    border: none !important;
    background: none !important;
    color: var(--wp--preset--color--primary, #e63920);
}

.kcui-sidebar-partner-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wp--preset--color--foreground, #111827);
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
}

.kcui-register-btn {
    display: block;
    width: 100%;
    background: var(--wp--preset--color--primary, #e63920);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: 0.5rem;
    transition: opacity 0.15s;
}
.kcui-register-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.kcui-sidebar-placeholder {
    color: var(--wp--preset--color--muted, #6b7280);
    font-size: 0.875rem;
}

.kcui-sidebar-partners {
    font-weight: 500;
    color: var(--wp--preset--color--foreground, #111827);
}
.kcui-sidebar-partners .value {
    display: inline;
    color: var(--wp--preset--color--foreground, #111827);
    font-weight: 500;
}

/* ─── Knowledge Single Page (kcui.si/zbirka-znanja) ─── */

/* Prose typography */
.prose { max-width: none; }
.prose-lg p { margin-bottom: 1rem; line-height: 1.75; }
.prose-lg h3 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; }
.prose-lg ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-lg ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-lg li { margin-bottom: 0.5rem; }
.prose-lg hr { border: none; border-top: 1px solid var(--wp--preset--color--border, #e5e7eb); margin: 2rem 0; }
.prose-lg a { color: var(--wp--preset--color--primary, #e63920); text-decoration: underline; }
.prose-lg strong { font-weight: 700; }
.prose-slate { color: var(--wp--preset--color--muted, #6b7280); }

/* Text utilities */
.text-balance { text-wrap: balance; }
.text-border { color: var(--wp--preset--color--border, #e5e7eb); }
.text-primary { color: var(--wp--preset--color--primary, #e63920); }
.text-muted { color: var(--wp--preset--color--muted, #6b7280); }
.text-foreground { color: var(--wp--preset--color--foreground, #111827); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cursor-pointer { cursor: pointer; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mr-1\\.5 { margin-right: 0.375rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-8 { padding-top: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-6 { padding-left: 1.5rem; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.border-l-4 { border-left-width: 4px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-border { border-color: var(--wp--preset--color--border, #e5e7eb); }
.bg-surface { background: var(--wp--preset--color--surface, #f9fafb); }
.bg-white { background: #ffffff; }
.bg-black { background: #000000; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.aspect-video { aspect-ratio: 16 / 9; }
.w-4 { width: 1rem; }
.w-12 { width: 3rem; }
.h-4 { height: 1rem; }
.h-12 { height: 3rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.overflow-hidden { overflow: hidden; }
.hover\:text-primary:hover { color: var(--wp--preset--color--primary-hover, #e63920); }
.hover\:bg-white:hover { background: #ffffff; }
.transition-colors { transition: color 0.15s, background-color 0.15s; }
.max-w-\[200px\] { max-width: 200px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-4 { padding-bottom: 1rem; }
.mt-16 { margin-top: 4rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.uppercase { text-transform: uppercase; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.min-h-screen { min-height: 100vh; }
.max-w-4xl { max-width: 56rem; }
.max-w-none { max-width: none; }
.mr-1\.5 { margin-right: 0.375rem; }
@media (min-width: 640px) {
    .sm\:max-w-none { max-width: none; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
    .md\:text-5xl { font-size: 3rem; }
}
@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* Prose link colors (for specific prose variants) */
.prose-a\:text-primary a { color: var(--wp--preset--color--primary, #e63920); }
.hover\:prose-a\:text-primary-hover a:hover { color: var(--wp--preset--color--primary-hover, #c82d18); }
.prose-headings\:text-foreground h1,
.prose-headings\:text-foreground h2,
.prose-headings\:text-foreground h3,
.prose-headings\:text-foreground h4,
.prose-headings\:text-foreground h5,
.prose-headings\:text-foreground h6 { color: var(--wp--preset--color--foreground, #111827); }

/* ─── Knowledge Single Page (HTML block template) ─── */

/* Knowledge article wrapper — white bg, no decoration */
.kcui-knowledge-article {
    background: #ffffff;
}

/* Knowledge type badge via MFB */
.kcui-knowledge-type .value {
    display: inline;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.125rem 0.75rem;
    color: var(--wp--preset--color--primary, #e63920);
    background: rgba(230,57,32,0.1);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 9999px;
}

/* Reading time via MFB — format "5 min branja" */
.kcui-knowledge-readtime .value {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    display: inline;
}
.kcui-knowledge-readtime .value::after {
    content: " min";
}

/* Author avatar initial — show first letter only via overflow clip */
.kcui-knowledge-avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.kcui-knowledge-avatar-initial .value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--wp--preset--color--primary, #e63920);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    max-width: 1.5rem;
}
.kcui-knowledge-avatar-initial .value::first-letter {
    text-transform: uppercase;
}

/* Knowledge tags — pill style via post-terms (same as event sidebar) */
.kcui-knowledge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-knowledge-tags .wp-block-post-terms a {
    display: inline-block;
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wp--preset--color--foreground, #111827);
    text-decoration: none;
    transition: background 0.15s;
}
.kcui-knowledge-tags .wp-block-post-terms a:hover {
    background: #ffffff;
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-knowledge-tags .wp-block-post-terms .wp-block-post-terms__separator {
    display: none;
}

/* Knowledge content — prose overrides */
.kcui-knowledge-article .prose-lg p { margin-bottom: 1rem; line-height: 1.75; }
.kcui-knowledge-article .prose-lg h2 { font-size: 1.5rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; }
.kcui-knowledge-article .prose-lg h3 { font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 1rem; }
.kcui-knowledge-article .prose-lg ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.kcui-knowledge-article .prose-lg ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }

/* Fix default paragraph margin inside MFB values */
.kcui-knowledge-type p, .kcui-knowledge-readtime p { margin-bottom: 0; }

/* ─── Primary color tag pills (for categories on knowledge etc.) ─── */
.kcui-tag-pills-primary .wp-block-post-terms a {
    background: rgba(230,57,32,0.06);
    color: var(--wp--preset--color--primary, #e63920);
    font-size: 0.75rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(230,57,32,0.15);
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, border-color 0.2s;
}
.kcui-tag-pills-primary .wp-block-post-terms a:hover {
    background: var(--wp--preset--color--primary, #e63920);
    color: #fff;
    border-color: var(--wp--preset--color--primary, #e63920);
}

/* ─── Grey tag pills ─── */
.kcui-tag-pills-grey .wp-block-post-terms a {
    background: var(--wp--preset--color--surface, #f9fafb);
    color: var(--wp--preset--color--foreground, #111827);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.kcui-tag-pills-grey .wp-block-post-terms a:hover {
    background: #ffffff;
    color: var(--wp--preset--color--primary, #e63920);
    border-color: var(--wp--preset--color--primary, #e63920);
}
.kcui-tag-pills-grey .wp-block-post-terms__separator {
    display: none;
}

/* ═══════════════════════════════════════════════
   Single Knowledge Article (single-kcui_knowledge.html)
   ═══════════════════════════════════════════════ */

/* ─── Article wrapper ─── */
.kcui-knowledge-article {
    background: #ffffff;
    padding: 3rem 0 4rem;
}

/* ─── Header (category + read time row) ─── */
.kcui-knowledge-header {
    margin-bottom: 3rem;
}
.kcui-knowledge-header-row {
    margin-bottom: 1.5rem;
}
.kcui-knowledge-type-label {
    display: inline-block;
}
.kcui-knowledge-type-label .wp-block-post-terms a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.kcui-knowledge-header-row .kcui-knowledge-readtime {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.kcui-knowledge-header-row .kcui-knowledge-readtime::before {
    content: "|";
    color: var(--wp--preset--color--border, #e5e7eb);
    margin-right: 0.125rem;
}

.kcui-knowledge-header-row .tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 9999px;
    border: 1px solid rgba(230,57,32,0.1);
    background: rgba(230,57,32,0.05);
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wp--preset--color--primary, #e63920);
}

/* ─── Title ─── */
.kcui-knowledge-article .kcui-knowledge-title {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
    color: var(--wp--preset--color--foreground, #111827) !important;
}
@media (max-width: 768px) {
    .kcui-knowledge-article .kcui-knowledge-title { font-size: 1.75rem !important; }
}

/* ─── Lead / excerpt ─── */
.kcui-knowledge-article .kcui-knowledge-lead {
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--wp--preset--color--muted, #6b7280);
    border-left: 4px solid var(--wp--preset--color--border, #e5e7eb);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}
.kcui-knowledge-article .kcui-knowledge-lead .wp-block-post-excerpt__excerpt {
    margin: 0;
}

/* ─── Author block ─── */
.kcui-knowledge-author {
    padding: 1.5rem 0;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    margin-bottom: 3rem;
}

/* ─── Content styles ─── */
.kcui-knowledge-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #333333;
}
.kcui-knowledge-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.kcui-knowledge-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--wp--preset--color--foreground, #111827);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.kcui-knowledge-content p {
    margin-bottom: 1.25rem;
}
.kcui-knowledge-content a {
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: underline;
}
.kcui-knowledge-content a:hover {
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-knowledge-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.kcui-knowledge-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}
.kcui-knowledge-content li {
    margin-bottom: 0.375rem;
}
.kcui-knowledge-content blockquote {
    border-left: 4px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 1rem 1.5rem;
    background: var(--wp--preset--color--surface, #f3f4f6);
    font-style: italic;
    color: var(--wp--preset--color--muted, #6b7280);
    margin: 1.5rem 0;
}
.kcui-knowledge-content img,
.kcui-knowledge-content .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}
.kcui-knowledge-content .wp-block-image figcaption {
    font-size: 0.8125rem;
    color: var(--wp--preset--color--muted, #6b7280);
    text-align: center;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

/* ─── Knowledge action buttons ─── */
.kcui-knowledge-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}
.kcui-knowledge-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
    background: var(--wp--preset--color--surface, #f9fafb);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.kcui-knowledge-btn:hover {
    background: var(--wp--preset--color--white, #ffffff);
    border-color: var(--wp--preset--color--primary, #e63920);
}
.kcui-knowledge-btn-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.kcui-knowledge-btn-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ─── Tags section ─── */
.kcui-knowledge-tags-section {
    padding-top: 2rem;
}
.kcui-tags-heading {
    margin-bottom: 1rem !important;
}
.kcui-knowledge-tags .wp-block-post-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.kcui-knowledge-tags .wp-block-post-terms a,
.kcui-knowledge-tags a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--wp--preset--color--surface, #f3f4f6);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    color: var(--wp--preset--color--foreground, #111827);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.kcui-knowledge-tags .wp-block-post-terms a:hover,
.kcui-knowledge-tags a:hover {
    background: #ffffff;
    color: var(--wp--preset--color--primary, #e63920);
    border-color: var(--wp--preset--color--primary, #e63920);
}
.kcui-knowledge-tags .wp-block-post-terms__separator {
    display: none;
}

/* ─── Related section ─── */
.kcui-related-section {
    background: var(--wp--preset--color--surface, #f3f4f6);
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 4rem 0;
}
.kcui-related-section .max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}
.kcui-related-heading {
    font-size: 1.625rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    color: var(--wp--preset--color--foreground, #111827) !important;
}
.kcui-related-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .kcui-related-grid-inner { grid-template-columns: 1fr; }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .kcui-related-grid-inner { grid-template-columns: repeat(2, 1fr); }
}
.kcui-related-card {
    background: #ffffff;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.kcui-related-card-top {
    margin-bottom: 1rem;
}
.kcui-related-type .wp-block-post-terms a {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid #c7d2fe;
    background: #eef2ff;
    color: #4338ca;
    text-decoration: none;
}
.kcui-related-title {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin-bottom: 0.5rem !important;
    color: var(--wp--preset--color--foreground, #111827) !important;
}
.kcui-related-title a {
    color: var(--wp--preset--color--foreground, #111827) !important;
    text-decoration: none !important;
}
.kcui-related-title a:hover {
    color: var(--wp--preset--color--primary, #e63920) !important;
}
.kcui-related-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--wp--preset--color--muted, #6b7280);
    margin-bottom: 1rem;
    flex: 1;
}
.kcui-related-excerpt .wp-block-post-excerpt__excerpt {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kcui-related-card-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}

/* ─── Taxonomy archive shared ─── */
.kcui-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin: 0;
}
.kcui-section-header .event-count {
    font-weight: 400;
    color: var(--wp--preset--color--muted, #6b7280);
}
/* Pagination */
.kcui-kno-load-more-wrap .page-numbers {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}
.kcui-kno-load-more-wrap .page-numbers li {
    margin: 0;
}
.kcui-kno-load-more-wrap .page-numbers a,
.kcui-kno-load-more-wrap .page-numbers span.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background: var(--wp--preset--color--surface, #f3f4f6);
    color: var(--wp--preset--color--foreground, #111827);
    text-decoration: none;
    transition: background 0.2s;
}
.kcui-kno-load-more-wrap .page-numbers a:hover {
    background: #e5e7eb;
}
.kcui-kno-load-more-wrap .page-numbers span.current {
    background: var(--wp--preset--color--primary, #e63920);
    color: #fff;
}
.kcui-kno-load-more-wrap .page-numbers .prev,
.kcui-kno-load-more-wrap .page-numbers .next {
    white-space: nowrap;
}


/* ─── Provider Single Template ─── */
.kcui-provider-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 1rem;
}
.kcui-provider-tags .wp-block-post-terms a {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--wp--preset--color--surface, #f9fafb);
    color: var(--wp--preset--color--primary, #e63920);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    text-decoration: none;
    transition: background 0.15s;
}
.kcui-provider-tags .wp-block-post-terms a:hover {
    background: var(--wp--preset--color--primary, #e63920);
    color: #fff;
}
.kcui-verified-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid #16a34a;
    color: #16a34a;
    white-space: nowrap;
}

/* ─── Provider hero columns ─── */
.kcui-hero-columns {
    align-items: flex-start;
    gap: 2rem;
}
.kcui-hero-columns > .wp-block-column:first-child {
    flex: 1 1 0%;
}
.kcui-hero-columns > .wp-block-column:last-child {
    flex: 0 0 280px;
}
.kcui-hero-contact {
    background: #fff;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.25rem;
}
.kcui-hero-contact h3 {
    margin: 0 0 1rem;
    color: var(--wp--preset--color--muted, #6b7280);
    font-weight: 600;
}
.kcui-meta-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.kcui-meta-item a,
.kcui-meta-item span {
    color: var(--wp--preset--color--foreground, #111827);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    word-break: break-all;
}
.kcui-meta-item a:hover {
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: underline;
}
.kcui-meta-icon {
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
}

/* Grid styles for provider archive (already used elsewhere, ensure consistency) */
.grid-providers {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .grid-providers {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .grid-providers {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─── Provider Solutions Cards ─── */
.kcui-solutions {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-solutions-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin-bottom: 1.5rem;
}
.kcui-solutions-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .kcui-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.kcui-solution-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.kcui-solution-tag {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-block;
    background: rgba(230, 57, 32, 0.1);
    border: 1px solid var(--wp--preset--color--primary, #e63920);
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.4;
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-solution-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin: 0;
    padding-right: 5rem; /* room for tag */
}
.kcui-solution-content {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    line-height: 1.6;
}
.kcui-solution-content p {
    margin: 0;
}

/* ─── News archive ─── */
.kcui-archive-hero {
    background: var(--wp--preset--color--surface, #f9fafb);
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding: 4rem 0;
}
.kcui-archive-hero .max-w-7xl {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.kcui-archive-hero .kcui-archive-title {
    font-weight: 700;
    color: var(--wp--preset--color--foreground, #111827);
    margin: 0 0 0.75rem;
    letter-spacing: -0.025em;
}
.kcui-archive-hero .kcui-archive-desc {
    font-size: 1.125rem;
    color: var(--wp--preset--color--muted, #6b7280);
    max-width: 48rem;
    line-height: 1.6;
    margin: 0;
}
.kcui-archive-content {
    padding: 3rem 0;
}
.kcui-archive-content .max-w-7xl {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.kcui-news-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1024px) {
    .kcui-news-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .kcui-news-grid-inner {
        grid-template-columns: 1fr;
    }
}
.kcui-news-card {
    background: #fff;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.15s;
}
.kcui-news-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.kcui-news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 0.5rem;
}
.kcui-news-cat {
    font-size: 0;
}
.kcui-news-cat a {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(230, 57, 32, 0.1);
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: none;
}
.kcui-news-date {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
}
.kcui-news-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.75rem;
}
.kcui-news-title a {
    color: var(--wp--preset--color--foreground, #111827);
    text-decoration: none;
}
.kcui-news-title a:hover {
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-news-excerpt {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    line-height: 1.6;
    margin: 0 0 1rem;
}
.kcui-news-excerpt p {
    margin: 0;
}
.kcui-news-excerpt .wp-block-post-excerpt__more-text {
    margin: 0.75rem 0 0;
}
.kcui-news-excerpt .wp-block-post-excerpt__more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--wp--preset--color--primary, #e63920);
    text-decoration: none;
}
.kcui-news-excerpt .wp-block-post-excerpt__more-link:hover {
    text-decoration: underline;
}
.kcui-news-excerpt .wp-block-post-excerpt__more-link::after {
    content: '→';
}
.kcui-news-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-news-pagination .wp-block-query-pagination-previous,
.kcui-news-pagination .wp-block-query-pagination-next,
.kcui-news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--wp--preset--color--foreground, #111827);
    background: #fff;
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.kcui-news-pagination .wp-block-query-pagination-previous:hover,
.kcui-news-pagination .wp-block-query-pagination-next:hover,
.kcui-news-pagination .page-numbers:hover {
    background: var(--wp--preset--color--surface, #f9fafb);
}
.kcui-news-pagination .page-numbers.current {
    background: var(--wp--preset--color--primary, #e63920);
    color: #fff;
    border-color: var(--wp--preset--color--primary, #e63920);
}

/* ─── Single post tags ─── */
.kcui-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.kcui-post-tags a {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--wp--preset--color--surface, #f3f4f6);
    border: 1px solid var(--wp--preset--color--border, #e5e7eb);
    color: var(--wp--preset--color--foreground, #111827);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.kcui-post-tags a:hover {
    background: #ffffff;
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-post-tags .wp-block-post-terms__separator { display: none; }

/* ═══════════════════════════
   Contact Form
   ═══════════════════════════ */
.kcui-contact-info {
    margin-bottom: 2rem;
}
.kcui-contact-info h2,
.kcui-contact-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem !important;
}
.kcui-contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.kcui-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-block-start: 0 !important;
}
.kcui-contact-info-item > .wp-block-group {
    margin-block-start: 0 !important;
}
.kcui-contact-icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #e63920;
}
.kcui-contact-info-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.25rem !important;
}
.kcui-contact-info-item a,
.kcui-contact-info-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}
.kcui-contact-info-item a {
    color: var(--wp--preset--color--primary, #e63920);
}
.kcui-contact-info-item a:hover {
    text-decoration: underline;
}
.kcui-contact-steps {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}
.kcui-contact-steps h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem !important;
}
.kcui-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: #e63920;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
}
.kcui-contact-steps p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin-block-start: 0 !important;
}
.kcui-contact-form-column {
    border-radius: 0.5rem;
}
.kcui-contact-form-column h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1.5rem !important;
}
.kcui-contact-form-wrap {
    min-width: 0;
}
.kcui-contact-error {
    background: rgba(230, 57, 32, 0.08);
    border: 1px solid #e63920;
    color: #e63920;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.kcui-contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.kcui-hp-field {
    display: none;
}
.kcui-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 768px) {
    .kcui-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .kcui-form-row-2 {
        grid-template-columns: 1fr;
    }
}
.kcui-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.kcui-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}
.kcui-field input,
.kcui-field select,
.kcui-field textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    color: #111827;
    transition: all 0.15s ease;
    font-family: inherit;
}
.kcui-field input:focus,
.kcui-field select:focus,
.kcui-field textarea:focus {
    outline: none;
    border-color: var(--wp--preset--color--primary, #e63920);
    box-shadow: 0 0 0 2px rgba(230, 57, 32, 0.2);
}
.kcui-field-hint {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
}
.kcui-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #111827;
    cursor: pointer;
}
.kcui-checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    accent-color: var(--wp--preset--color--primary, #e63920);
}
.kcui-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0.375rem;
    color: #fff;
    background: var(--wp--preset--color--primary, #e63920);
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: inherit;
    width: 100%;
}
@media (min-width: 640px) {
    .kcui-contact-submit {
        width: auto;
    }
}
.kcui-contact-submit:hover {
    background: var(--wp--preset--color--primary-hover, #c92d1a);
}
.kcui-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.kcui-contact-success {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}
.kcui-contact-success-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}
.kcui-contact-success-inner svg {
    margin: 0 auto 1rem;
}
.kcui-contact-success-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #16a34a;
    margin: 0 0 0.5rem;
}
.kcui-contact-success-inner p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* ═══════════════════════════════════════════════
   Ocena pripravljenosti page (readiness assessment)
   ═══════════════════════════════════════════════ */
.page-ocena {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero */
.page-ocena .hero-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
}
.page-ocena .hero-blob {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.page-ocena .hero-blob div {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(249,66,58,0.05);
    filter: blur(64px);
}
.page-ocena .hero-section .max-w-7xl { position: relative; z-index: 10; }

/* Badge */
.page-ocena .badge-label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(249,66,58,0.1);
    margin-bottom: 1rem;
}

/* Steps section — completely rewritten to match reference */
.page-ocena-steps-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
}
.page-ocena-steps-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--wp--preset--color--border, #e5e7eb);
    padding-bottom: 1.5rem;
}
.page-ocena-steps-title h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
}
.page-ocena-steps-subtitle {
    max-width: 42rem;
}
.page-ocena-steps-subtitle p {
    color: var(--wp--preset--color--muted, #6b7280);
    font-size: 1rem;
    margin: 0;
    text-align: right;
    line-height: 1.5;
}
.page-ocena-step-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .page-ocena-step-cards {
        grid-template-columns: repeat(5, 1fr);
    }
}
.page-ocena-step-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}
.page-ocena-step-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.12);
}
.page-ocena-step-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--wp--preset--color--primary, #f9423a);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-bottom: 1rem;
    line-height: 1;
}
.page-ocena-step-card .wp-block-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--wp--preset--color--foreground, #111827);
}
.page-ocena-step-card .has-muted-color {
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
    line-height: 1.625;
    margin: 0;
    flex-grow: 1;
}
.page-ocena-steps-footer {
    margin-top: 2.5rem;
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted, #6b7280);
}

/* Remove old step-card, step-number, steps-connector, steps-grid, steps-wrapper, bg-surface-half */
/* Those classes are no longer used in the new markup */

/* Webinar */
.page-ocena .webinar-box {
    background: rgba(249,66,58,0.05);
    border: 1px solid rgba(249,66,58,0.15);
    border-radius: 16px;
    padding: 3rem;
}
@media (max-width: 768px) {
    .page-ocena .webinar-box { padding: 1.5rem; }
}
.page-ocena .webinar-box .webinar-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(249,66,58,0.1);
    color: var(--wp--preset--color--primary);
    margin-bottom: 1rem;
}
.page-ocena .webinar-details {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--wp--preset--color--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}
.page-ocena .webinar-details .label {
    font-size: 0.75rem;
    color: var(--wp--preset--color--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}
.page-ocena .webinar-details .value {
    font-weight: 600;
    color: var(--wp--preset--color--muted);
}
.page-ocena .webinar-details .value-bold {
    font-weight: 700;
    color: var(--wp--preset--color--foreground);
}
.page-ocena .check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.page-ocena .check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--wp--preset--color--muted);
    margin-bottom: 0.625rem;
}
.page-ocena .check-list li::before {
    content: "";
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    background: var(--wp--preset--color--primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
}
/* Notify button - wp:button version */
.page-ocena .btn-notify .wp-element-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.15s;
    width: 100%;
    text-align: center;
}
@media (min-width: 640px) {
    .page-ocena .btn-notify .wp-element-button { width: auto; }
}
.page-ocena .btn-notify .wp-element-button:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(-0.125rem);
}

/* Two-column cards */
.page-ocena .info-card {
    background: var(--wp--preset--color--surface);
    border: 1px solid var(--wp--preset--color--border);
    border-radius: 16px;
    padding: 2rem;
}
.page-ocena .info-card h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem;
}
.page-ocena .info-card p {
    color: var(--wp--preset--color--muted);
    line-height: 1.625;
}
.page-ocena .dot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.page-ocena .dot-list li {
    display: flex;
    align-items: center;
    color: var(--wp--preset--color--muted);
    margin-bottom: 0.5rem;
}
.page-ocena .dot-list li::before {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--wp--preset--color--primary);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* CTA */
.page-ocena .cta-banner {
    background: var(--wp--preset--color--primary) !important;
    color: white;
}
.page-ocena-cta-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .page-ocena-cta-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}
.page-ocena-cta-text h3 {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}
.page-ocena-cta-text p {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    margin: 0;
}
/* CTA button: scoped to the inner link to avoid WP button-in-button rendering */
.page-ocena-cta-btn .wp-element-button {
    font-weight: 700 !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
    transition: background 0.15s, box-shadow 0.15s !important;
    white-space: nowrap;
    padding: 0.75rem 1.5rem !important;
}
.page-ocena-cta-btn .wp-element-button:hover {
    background: var(--wp--preset--color--surface) !important;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1) !important;
}

/* ─── Provider notice banner ─── */
.kcui-provider-notice {
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
