/* ===== Заголовок ===== */
.wk-title {
    color: #f59e0b;
}

/* ===== Поиск ===== */
.wk-search-form {
    position: relative;
    width: 300px;
}

.wk-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 14px;
}

.wk-search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 14px;
    transition: all 0.2s;
}

.wk-search-input::placeholder {
    color: #475569;
}

.wk-search-input:focus {
    outline: none;
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08);
}

/* ===== Заголовки секций ===== */
.wk-section-heading {
    color: #f59e0b;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    margin-bottom: 16px;
}

/* ===== Плитки проектов ===== */
.wk-project-tile {
    display: block;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 16px;
    transition: all 0.25s;
    height: 100%;
}

.wk-project-tile:hover {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(245, 158, 11, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.wk-tile-icon {
    font-size: 32px;
    color: #f59e0b;
    margin-bottom: 12px;
}

.wk-tile-meta {
    color: #64748b;
    font-size: 12px;
}

/* ===== Список статей ===== */
.wk-article-list {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.wk-article-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.wk-article-row:last-child {
    border-bottom: none;
}

.wk-article-row:hover {
    background: rgba(245, 158, 11, 0.04);
}

/* ===== Бейдж "закреплено" ===== */
.wk-badge-pinned {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-radius: 6px;
    font-size: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* ===== Пустое состояние ===== */
.wk-empty {
    text-align: center;
    padding: 60px 20px;
    color: #475569;
}

.wk-empty i {
    font-size: 48px;
    opacity: 0.3;
    margin-bottom: 12px;
}

.wk-empty p {
    margin: 0;
}

/* ===== FAB ===== */
.wk-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    background: #f59e0b;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    transition: all 0.25s;
    z-index: 99999;
}

.wk-fab:hover {
    background: #d97706;
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.45);
}