.guides_header {
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.guides_header_content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.guides_header_actions {
    display: flex;
    gap: 12px;
}

.guides_create_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.18), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 10px;
    color: rgba(251, 191, 36, 1);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.12);
    position: relative;
    overflow: hidden;
}

.guides_create_btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.guides_create_btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.28), rgba(251, 191, 36, 0.18));
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.2);
}

.guides_create_btn:hover::before {
    opacity: 1;
}

.guides_create_btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.guides_create_btn:hover svg {
    transform: rotate(90deg);
}

.guides_icon {
    width: 28px;
    height: 28px;
    color: rgba(251, 191, 36, 0.8);
    flex-shrink: 0;
}

.guides_header_text {
    flex: 1;
}

.guides_main_title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.guides_main_subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 4px 0 0 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .guides_header {
        margin-bottom: 16px;
        padding-bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    
    .guides_header_content {
        gap: 12px;
    }
    
    .guides_icon {
        width: 26px;
        height: 26px;
    }
    
    .guides_main_title {
        font-size: 20px;
    }
    
    .guides_main_subtitle {
        font-size: 12px;
        margin-top: 3px;
    }
    
    .guides_header_actions {
        width: 100%;
    }
    
    .guides_create_btn {
        width: 100%;
        justify-content: center;
        padding: 11px 20px;
    }
}

.guides_description {
    margin-bottom: 20px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(251, 191, 36, 0.35);
    border-radius: 6px;
}

.guides_description p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
