/* ===========================
   Landing
   =========================== */

.hero-badge {
    display: inline-block;
    backdrop-filter: blur(8px);
}

.hero-h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
}

.home-higlight {
    color: #f5a524;
    text-shadow: 0 0 30px rgba(245, 165, 36, 0.5);
}

/*About*/
.about-image figure {
    position: relative;
}

.about-image figure::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 16px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(41, 92, 255, 0.12), rgba(14, 148, 255, 0.06));
    z-index: -1;
}

.stat-item {
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 20px 30px -10px rgba(28, 13, 90, 0.06);
    font-size: 0.95rem;
}


/***
Posts
*/
.posts-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.posts-section .kb-post-list-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 30px -10px rgba(28, 13, 90, 0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(28, 13, 90, 0.09);
}

/***
 Matrix Section
 */
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 14px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 30px -10px rgba(28, 13, 90, 0.06);
    border: 1px solid rgba(28, 13, 90, 0.04);
    font-weight: 500;
    color: var(--global-palette3);
}