.cke_inner {
    background: none !important;
}
.cke_chrome {
    border: none !important;
}
.cke_top {
    border: none !important;
}
.cke_1 .cke_bottom {
    background: none !important;
    border: none !important;
}
img.lazyload {opacity: 0; transition: opacity 0.6s ease-in-out; background:#f0f0f0;}
img.loaded{opacity: 1; transition: opacity 0.6s ease-in-out;}

/* Global reaction micro-interactions */
@keyframes tgPop {
    0% { transform: scale(1); }
    40% { transform: scale(1.12); }
    100% { transform: scale(1); }
}
.tg-pop {
    animation: tgPop .22s ease-out;
}

@keyframes tgPopCount {
    0% { transform: scale(1); }
    40% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.tg-pop-count {
    animation: tgPopCount .22s ease-out;
}

.tg-particle {
    position: fixed;
    transform: translate(-50%, -50%);
    font-size: 18px;
    z-index: 10000;
    pointer-events: none;
    animation: tgParticle .9s ease-out forwards;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .12));
}
@keyframes tgParticle {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }
    to {
        opacity: 0;
        transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1.3) rotate(var(--rot));
    }
}

/* KingdomChurch Icon UI Framework
 * Usage:
 * <button class="kc-icon-btn kc-icon-btn--md">
 *   <i class="kc-icon-glyph ph-fill ph-chat-circle-text"></i>
 *   <span class="kc-icon-badge">12</span>
 * </button>
 */
.kc-icon-btn,
.tg-vote-btn {
    --kc-icon-size: 36px;
    --kc-icon-font-size: 18px;
    --kc-icon-border: rgba(15, 23, 42, .08);
    --kc-icon-bg: rgba(241, 245, 249, .8);
    --kc-icon-fg: rgba(100, 116, 139, 1);
    --kc-icon-hover-bg: rgba(226, 232, 240, .6);
    --kc-icon-hover-fg: rgba(15, 23, 42, 1);
    --kc-icon-active-bg: rgba(251, 146, 60, .14);
    --kc-icon-active-fg: rgb(15, 23, 42);

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--kc-icon-size);
    height: var(--kc-icon-size);
    border-radius: 999px;
    border: 1px solid var(--kc-icon-border);
    background: var(--kc-icon-bg);
    color: var(--kc-icon-fg);
    font-size: var(--kc-icon-font-size);
    line-height: 1;
    text-decoration: none;
    transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}
.kc-icon-btn:hover,
.tg-vote-btn:hover {
    transform: translateY(-2px);
    background: var(--kc-icon-hover-bg);
    color: var(--kc-icon-hover-fg);
}
.kc-icon-btn:active,
.tg-vote-btn:active {
    transform: translateY(0) scale(.98);
}
.kc-icon-btn:disabled,
.kc-icon-btn[aria-disabled="true"],
.tg-vote-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}
.kc-icon-btn:disabled:hover,
.kc-icon-btn[aria-disabled="true"]:hover,
.tg-vote-btn:disabled:hover {
    transform: none;
}
.kc-icon-btn.is-active,
.kc-icon-btn[aria-pressed="true"],
.tg-vote-btn.is-active {
    background: var(--kc-icon-active-bg);
    color: var(--kc-icon-active-fg);
}
.kc-icon-btn--sm {
    --kc-icon-size: 32px;
    --kc-icon-font-size: 16px;
}
.kc-icon-btn--md {
    --kc-icon-size: 36px;
    --kc-icon-font-size: 18px;
}
.kc-icon-btn--lg {
    --kc-icon-size: 42px;
    --kc-icon-font-size: 20px;
}
.kc-icon-glyph {
    font-size: 1em;
    line-height: 1;
    pointer-events: none;
}
.kc-icon-link,
.tg-comment-btn {
    color: inherit;
    text-decoration: none;
}
.kc-icon-link:hover,
.kc-icon-link:active,
.tg-comment-btn:hover,
.tg-comment-btn:active {
    text-decoration: none;
}

.kc-icon-badge,
.tg-vote-count {
    position: absolute;
    right: -4px;
    top: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
    background: rgba(15, 23, 42, .08);
    color: rgba(15, 23, 42, .85);
}
.kc-icon-badge.is-hidden,
.tg-vote-count.is-hidden {
    display: none;
}

/* Prevent sticky header overlap on #comment anchor jump */
#comment {
    scroll-margin-top: 88px;
}

/* Footer language layer keyframes for Tailwind arbitrary animations */

@keyframes kcLangLayerFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes kcLangLayerPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
